Merge branch 'dev'
Showing
35 changed files
with
772 additions
and
29 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-12 16:33:18 | 4 | * @LastEditTime: 2023-07-21 13:43:52 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class='dblistDialog'> | 7 | <div class='dblistDialog'> |
... | @@ -11,7 +11,6 @@ | ... | @@ -11,7 +11,6 @@ |
11 | height="200"> | 11 | height="200"> |
12 | <el-table-column | 12 | <el-table-column |
13 | prop="ywh" | 13 | prop="ywh" |
14 | width="110" | ||
15 | label="业务号"> | 14 | label="业务号"> |
16 | </el-table-column> | 15 | </el-table-column> |
17 | <el-table-column | 16 | <el-table-column | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 10:32:29 | 4 | * @LastEditTime: 2023-07-21 13:45:48 |
5 | */ | 5 | */ |
6 | import { getPrintTemplateByCode } from "@/api/print"; | 6 | import { getPrintTemplateByCode } from "@/api/print"; |
7 | import { uploadUndo } from "@/api/clxx"; | 7 | import { uploadUndo } from "@/api/clxx"; |
... | @@ -308,8 +308,14 @@ export default { | ... | @@ -308,8 +308,14 @@ export default { |
308 | } else { | 308 | } else { |
309 | instance.confirmButtonLoading = false; | 309 | instance.confirmButtonLoading = false; |
310 | instance.confirmButtonText = "确定"; | 310 | instance.confirmButtonText = "确定"; |
311 | this.$message.error(res.message); | 311 | let msgArr = res.message.split(';'), |
312 | // ywPopupDialog("转出错误明细", "workflow/components/dialog/dblist", { result: res.result }, '30%', true) | 312 | listMsg = [] |
313 | msgArr.forEach(item => { | ||
314 | let parts = item.split(':') | ||
315 | listMsg.push({ ywh: parts[0], msg: parts[1] }) | ||
316 | }) | ||
317 | this.$msgbox.close() | ||
318 | ywPopupDialog("转出错误明细", "workflow/components/dialog/dblist", { result: listMsg }, '33%', true) | ||
313 | } | 319 | } |
314 | }); | 320 | }); |
315 | } else { | 321 | } else { | ... | ... |
... | @@ -100,7 +100,7 @@ | ... | @@ -100,7 +100,7 @@ |
100 | clxxIndex: "", | 100 | clxxIndex: "", |
101 | //材料信息选项卡对象 | 101 | //材料信息选项卡对象 |
102 | clxxTab: {}, | 102 | clxxTab: {}, |
103 | ableOperation:false, | 103 | ableOperation: false, |
104 | //页面监听时间 | 104 | //页面监听时间 |
105 | _beforeUnload_time: "" | 105 | _beforeUnload_time: "" |
106 | } | 106 | } |
... | @@ -160,7 +160,7 @@ | ... | @@ -160,7 +160,7 @@ |
160 | this.tabList = res.result; | 160 | this.tabList = res.result; |
161 | //默认加载第一个表单信息 | 161 | //默认加载第一个表单信息 |
162 | this.tabName = res.result[0].value; | 162 | this.tabName = res.result[0].value; |
163 | this.ableOperation=this.tabList[0].ableOperation | 163 | this.ableOperation = this.tabList[0].ableOperation |
164 | //批量操作无分屏按钮 | 164 | //批量操作无分屏按钮 |
165 | if (index != null) { | 165 | if (index != null) { |
166 | //处理分屏材料信息 | 166 | //处理分屏材料信息 | ... | ... |
... | @@ -168,6 +168,10 @@ | ... | @@ -168,6 +168,10 @@ |
168 | }, | 168 | }, |
169 | methods: { | 169 | methods: { |
170 | // 列表渲染接口 | 170 | // 列表渲染接口 |
171 | /** | ||
172 | * @description: 列表渲染接口 | ||
173 | * @author: renchao | ||
174 | */ | ||
171 | queryClick () { | 175 | queryClick () { |
172 | this.$startLoading(); | 176 | this.$startLoading(); |
173 | this.searchForm.ywh = this.queryForm.ywh; | 177 | this.searchForm.ywh = this.queryForm.ywh; |
... | @@ -191,11 +195,21 @@ | ... | @@ -191,11 +195,21 @@ |
191 | } | 195 | } |
192 | }); | 196 | }); |
193 | }, | 197 | }, |
198 | /** | ||
199 | * @description: handleSort | ||
200 | * @param {*} val | ||
201 | * @author: renchao | ||
202 | */ | ||
194 | handleSort (val) { | 203 | handleSort (val) { |
195 | this.queryForm.sortField = val.prop; | 204 | this.queryForm.sortField = val.prop; |
196 | this.queryForm.sortOrder = val.order == "ascending" ? "asc" : "desc"; | 205 | this.queryForm.sortOrder = val.order == "ascending" ? "asc" : "desc"; |
197 | this.queryClick(); | 206 | this.queryClick(); |
198 | }, | 207 | }, |
208 | /** | ||
209 | * @description: ywhClick | ||
210 | * @param {*} item | ||
211 | * @author: renchao | ||
212 | */ | ||
199 | ywhClick (item) { | 213 | ywhClick (item) { |
200 | //有任务权限 | 214 | //有任务权限 |
201 | if (item.sjlx == "3") { | 215 | if (item.sjlx == "3") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:02:30 | 4 | * @LastEditTime: 2023-07-21 11:17:58 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -104,6 +104,10 @@ | ... | @@ -104,6 +104,10 @@ |
104 | sendThis(this); | 104 | sendThis(this); |
105 | }, | 105 | }, |
106 | methods: { | 106 | methods: { |
107 | /** | ||
108 | * @description: queryClick | ||
109 | * @author: renchao | ||
110 | */ | ||
107 | queryClick () { | 111 | queryClick () { |
108 | this.$startLoading(); | 112 | this.$startLoading(); |
109 | selectCfdj({ ...this.queryForm, ...this.pageData }).then((res) => { | 113 | selectCfdj({ ...this.queryForm, ...this.pageData }).then((res) => { |
... | @@ -115,6 +119,10 @@ | ... | @@ -115,6 +119,10 @@ |
115 | } | 119 | } |
116 | }); | 120 | }); |
117 | }, | 121 | }, |
122 | /** | ||
123 | * @description: submitForm | ||
124 | * @author: renchao | ||
125 | */ | ||
118 | submitForm () { | 126 | submitForm () { |
119 | if (this.bdcdysz.length == 0) { | 127 | if (this.bdcdysz.length == 0) { |
120 | this.$message.error("请至少选择一条数据"); | 128 | this.$message.error("请至少选择一条数据"); |
... | @@ -165,6 +173,11 @@ | ... | @@ -165,6 +173,11 @@ |
165 | }); | 173 | }); |
166 | } | 174 | } |
167 | }, | 175 | }, |
176 | /** | ||
177 | * @description: handleSelectionChange | ||
178 | * @param {*} val | ||
179 | * @author: renchao | ||
180 | */ | ||
168 | handleSelectionChange (val) { | 181 | handleSelectionChange (val) { |
169 | if (this.sqywInfo.sqywdylx == "1") { | 182 | if (this.sqywInfo.sqywdylx == "1") { |
170 | if (val.length > 1) { | 183 | if (val.length > 1) { |
... | @@ -176,6 +189,12 @@ | ... | @@ -176,6 +189,12 @@ |
176 | this.bdcdysz = val; | 189 | this.bdcdysz = val; |
177 | } | 190 | } |
178 | }, | 191 | }, |
192 | /** | ||
193 | * @description: select | ||
194 | * @param {*} selection | ||
195 | * @param {*} row | ||
196 | * @author: renchao | ||
197 | */ | ||
179 | select (selection, row) { | 198 | select (selection, row) { |
180 | if (this.sqywInfo.sqywdylx == "1") { | 199 | if (this.sqywInfo.sqywdylx == "1") { |
181 | // 清除 所有勾选项 | 200 | // 清除 所有勾选项 |
... | @@ -186,6 +205,11 @@ | ... | @@ -186,6 +205,11 @@ |
186 | this.$refs.table.toggleRowSelection(row, true); | 205 | this.$refs.table.toggleRowSelection(row, true); |
187 | } | 206 | } |
188 | }, | 207 | }, |
208 | /** | ||
209 | * @description: handleRowClick | ||
210 | * @param {*} row | ||
211 | * @author: renchao | ||
212 | */ | ||
189 | handleRowClick (row) { | 213 | handleRowClick (row) { |
190 | // 如果状态是1,那就是单选 | 214 | // 如果状态是1,那就是单选 |
191 | if (this.sqywInfo.sqywdylx == "1") { | 215 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:02:43 | 4 | * @LastEditTime: 2023-07-21 13:46:02 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 抵押权利信息查询 --> | 7 | <!-- 抵押权利信息查询 --> |
... | @@ -90,6 +90,10 @@ | ... | @@ -90,6 +90,10 @@ |
90 | sendThis(this); | 90 | sendThis(this); |
91 | }, | 91 | }, |
92 | methods: { | 92 | methods: { |
93 | /** | ||
94 | * @description: queryClick | ||
95 | * @author: renchao | ||
96 | */ | ||
93 | queryClick () { | 97 | queryClick () { |
94 | this.$startLoading(); | 98 | this.$startLoading(); |
95 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 99 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -102,6 +106,10 @@ | ... | @@ -102,6 +106,10 @@ |
102 | } | 106 | } |
103 | }); | 107 | }); |
104 | }, | 108 | }, |
109 | /** | ||
110 | * @description: submitFormClick | ||
111 | * @author: renchao | ||
112 | */ | ||
105 | submitFormClick () { | 113 | submitFormClick () { |
106 | if (this.bdcdysz.length == 0) { | 114 | if (this.bdcdysz.length == 0) { |
107 | this.$message.error("请至少选择一条数据"); | 115 | this.$message.error("请至少选择一条数据"); |
... | @@ -130,6 +138,11 @@ | ... | @@ -130,6 +138,11 @@ |
130 | } | 138 | } |
131 | }) | 139 | }) |
132 | }, | 140 | }, |
141 | /** | ||
142 | * @description: handleSelectionChange | ||
143 | * @param {*} val | ||
144 | * @author: renchao | ||
145 | */ | ||
133 | handleSelectionChange (val) { | 146 | handleSelectionChange (val) { |
134 | if (this.sqywInfo.sqywdylx == "1") { | 147 | if (this.sqywInfo.sqywdylx == "1") { |
135 | if (val.length > 1) { | 148 | if (val.length > 1) { |
... | @@ -141,6 +154,12 @@ | ... | @@ -141,6 +154,12 @@ |
141 | this.bdcdysz = val; | 154 | this.bdcdysz = val; |
142 | } | 155 | } |
143 | }, | 156 | }, |
157 | /** | ||
158 | * @description: select | ||
159 | * @param {*} selection | ||
160 | * @param {*} row | ||
161 | * @author: renchao | ||
162 | */ | ||
144 | select (selection, row) { | 163 | select (selection, row) { |
145 | if (this.sqywInfo.sqywdylx == "1") { | 164 | if (this.sqywInfo.sqywdylx == "1") { |
146 | // 清除 所有勾选项 | 165 | // 清除 所有勾选项 |
... | @@ -151,6 +170,11 @@ | ... | @@ -151,6 +170,11 @@ |
151 | this.$refs.table.toggleRowSelection(row, true); | 170 | this.$refs.table.toggleRowSelection(row, true); |
152 | } | 171 | } |
153 | }, | 172 | }, |
173 | /** | ||
174 | * @description: handleRowClick | ||
175 | * @param {*} row | ||
176 | * @author: renchao | ||
177 | */ | ||
154 | handleRowClick (row) { | 178 | handleRowClick (row) { |
155 | // 如果状态是1,那就是单选 | 179 | // 如果状态是1,那就是单选 |
156 | if (this.sqywInfo.sqywdylx == "1") { | 180 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:02:53 | 4 | * @LastEditTime: 2023-07-21 13:46:08 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -177,6 +177,10 @@ | ... | @@ -177,6 +177,10 @@ |
177 | sendThis(this) | 177 | sendThis(this) |
178 | }, | 178 | }, |
179 | methods: { | 179 | methods: { |
180 | /** | ||
181 | * @description: queryClick | ||
182 | * @author: renchao | ||
183 | */ | ||
180 | queryClick () { | 184 | queryClick () { |
181 | this.$startLoading(); | 185 | this.$startLoading(); |
182 | if (!this.isJump) { | 186 | if (!this.isJump) { |
... | @@ -217,11 +221,19 @@ | ... | @@ -217,11 +221,19 @@ |
217 | }) | 221 | }) |
218 | } | 222 | } |
219 | }, | 223 | }, |
224 | /** | ||
225 | * @description: handleTabClick | ||
226 | * @author: renchao | ||
227 | */ | ||
220 | handleTabClick () { | 228 | handleTabClick () { |
221 | this.bdcdysz = [], | 229 | this.bdcdysz = [], |
222 | this.pageData.currentPage = 1; | 230 | this.pageData.currentPage = 1; |
223 | this.queryClick(); | 231 | this.queryClick(); |
224 | }, | 232 | }, |
233 | /** | ||
234 | * @description: submitForm | ||
235 | * @author: renchao | ||
236 | */ | ||
225 | submitForm () { | 237 | submitForm () { |
226 | if (this.bdcdysz.length == 0) { | 238 | if (this.bdcdysz.length == 0) { |
227 | this.$message.error("请至少选择一条数据"); | 239 | this.$message.error("请至少选择一条数据"); |
... | @@ -270,6 +282,11 @@ | ... | @@ -270,6 +282,11 @@ |
270 | }) | 282 | }) |
271 | } | 283 | } |
272 | }, | 284 | }, |
285 | /** | ||
286 | * @description: handleSelectionChange | ||
287 | * @param {*} val | ||
288 | * @author: renchao | ||
289 | */ | ||
273 | handleSelectionChange (val) { | 290 | handleSelectionChange (val) { |
274 | if (this.sqywInfo.sqywdylx == "1") { | 291 | if (this.sqywInfo.sqywdylx == "1") { |
275 | if (val.length > 1) { | 292 | if (val.length > 1) { |
... | @@ -294,6 +311,12 @@ | ... | @@ -294,6 +311,12 @@ |
294 | } | 311 | } |
295 | }) | 312 | }) |
296 | }, | 313 | }, |
314 | /** | ||
315 | * @description: select | ||
316 | * @param {*} selection | ||
317 | * @param {*} row | ||
318 | * @author: renchao | ||
319 | */ | ||
297 | select (selection, row) { | 320 | select (selection, row) { |
298 | if (this.sqywInfo.sqywdylx == "1") { | 321 | if (this.sqywInfo.sqywdylx == "1") { |
299 | // 清除 所有勾选项 | 322 | // 清除 所有勾选项 |
... | @@ -305,6 +328,11 @@ | ... | @@ -305,6 +328,11 @@ |
305 | } | 328 | } |
306 | 329 | ||
307 | }, | 330 | }, |
331 | /** | ||
332 | * @description: handleRowClick | ||
333 | * @param {*} row | ||
334 | * @author: renchao | ||
335 | */ | ||
308 | handleRowClick (row) { | 336 | handleRowClick (row) { |
309 | // 如果状态是1,那就是单选 | 337 | // 如果状态是1,那就是单选 |
310 | if (this.sqywInfo.sqywdylx == "1") { | 338 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
... | @@ -7,9 +7,22 @@ import Router from '@/router' | ... | @@ -7,9 +7,22 @@ import Router from '@/router' |
7 | export default { | 7 | export default { |
8 | methods: { | 8 | methods: { |
9 | //点击行选中或取消复选框 | 9 | //点击行选中或取消复选框 |
10 | /** | ||
11 | * @description: 点击行选中或取消复选框 | ||
12 | * @param {*} row | ||
13 | * @param {*} column | ||
14 | * @param {*} event | ||
15 | * @author: renchao | ||
16 | */ | ||
10 | handleRowClick (row, column, event) { | 17 | handleRowClick (row, column, event) { |
11 | this.$refs.table.toggleRowSelection(row) | 18 | this.$refs.table.toggleRowSelection(row) |
12 | }, | 19 | }, |
20 | /** | ||
21 | * @description: jump | ||
22 | * @param {*} data | ||
23 | * @param {*} type | ||
24 | * @author: renchao | ||
25 | */ | ||
13 | jump (data, type) { | 26 | jump (data, type) { |
14 | const { href } = Router.resolve( | 27 | const { href } = Router.resolve( |
15 | "/djbworkFrame?bsmSlsq=" + | 28 | "/djbworkFrame?bsmSlsq=" + |
... | @@ -20,6 +33,10 @@ export default { | ... | @@ -20,6 +33,10 @@ export default { |
20 | window.open(href, "_blank"); | 33 | window.open(href, "_blank"); |
21 | this.$popupCacel() | 34 | this.$popupCacel() |
22 | }, | 35 | }, |
36 | /** | ||
37 | * @description: queryClick | ||
38 | * @author: renchao | ||
39 | */ | ||
23 | queryClick () { | 40 | queryClick () { |
24 | this.pageData.currentPage = 1 | 41 | this.pageData.currentPage = 1 |
25 | // this.fetchData(); | 42 | // this.fetchData(); | ... | ... |
... | @@ -7,9 +7,22 @@ import Router from '@/router' | ... | @@ -7,9 +7,22 @@ import Router from '@/router' |
7 | export default { | 7 | export default { |
8 | methods: { | 8 | methods: { |
9 | //点击行选中或取消复选框 | 9 | //点击行选中或取消复选框 |
10 | /** | ||
11 | * @description: 点击行选中或取消复选框 | ||
12 | * @param {*} row | ||
13 | * @param {*} column | ||
14 | * @param {*} event | ||
15 | * @author: renchao | ||
16 | */ | ||
10 | handleRowClick (row, column, event) { | 17 | handleRowClick (row, column, event) { |
11 | this.$refs.table.toggleRowSelection(row) | 18 | this.$refs.table.toggleRowSelection(row) |
12 | }, | 19 | }, |
20 | /** | ||
21 | * @description: jump | ||
22 | * @param {*} data | ||
23 | * @param {*} type | ||
24 | * @author: renchao | ||
25 | */ | ||
13 | jump (data, type) { | 26 | jump (data, type) { |
14 | const { href } = Router.resolve( | 27 | const { href } = Router.resolve( |
15 | "/workFrame?bsmSlsq=" + | 28 | "/workFrame?bsmSlsq=" + |
... | @@ -20,6 +33,10 @@ export default { | ... | @@ -20,6 +33,10 @@ export default { |
20 | window.open(href, "_blank"); | 33 | window.open(href, "_blank"); |
21 | this.$popupCacel() | 34 | this.$popupCacel() |
22 | }, | 35 | }, |
36 | /** | ||
37 | * @description: queryClick | ||
38 | * @author: renchao | ||
39 | */ | ||
23 | queryClick () { | 40 | queryClick () { |
24 | this.pageData.currentPage = 1 | 41 | this.pageData.currentPage = 1 |
25 | // this.fetchData(); | 42 | // this.fetchData(); | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:03:00 | 4 | * @LastEditTime: 2023-07-21 13:46:18 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -79,6 +79,10 @@ | ... | @@ -79,6 +79,10 @@ |
79 | sendThis(this); | 79 | sendThis(this); |
80 | }, | 80 | }, |
81 | methods: { | 81 | methods: { |
82 | /** | ||
83 | * @description: queryClick | ||
84 | * @author: renchao | ||
85 | */ | ||
82 | queryClick () { | 86 | queryClick () { |
83 | this.$startLoading(); | 87 | this.$startLoading(); |
84 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 88 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -91,6 +95,10 @@ | ... | @@ -91,6 +95,10 @@ |
91 | } | 95 | } |
92 | }); | 96 | }); |
93 | }, | 97 | }, |
98 | /** | ||
99 | * @description: submitForm | ||
100 | * @author: renchao | ||
101 | */ | ||
94 | submitForm () { | 102 | submitForm () { |
95 | if (this.bdcdysz.length == 0) { | 103 | if (this.bdcdysz.length == 0) { |
96 | this.$message.error("请至少选择一条数据"); | 104 | this.$message.error("请至少选择一条数据"); |
... | @@ -119,6 +127,11 @@ | ... | @@ -119,6 +127,11 @@ |
119 | } | 127 | } |
120 | }) | 128 | }) |
121 | }, | 129 | }, |
130 | /** | ||
131 | * @description: handleSelectionChange | ||
132 | * @param {*} val | ||
133 | * @author: renchao | ||
134 | */ | ||
122 | handleSelectionChange (val) { | 135 | handleSelectionChange (val) { |
123 | if (this.sqywInfo.sqywdylx == "1") { | 136 | if (this.sqywInfo.sqywdylx == "1") { |
124 | if (val.length > 1) { | 137 | if (val.length > 1) { |
... | @@ -130,6 +143,12 @@ | ... | @@ -130,6 +143,12 @@ |
130 | this.bdcdysz = val; | 143 | this.bdcdysz = val; |
131 | } | 144 | } |
132 | }, | 145 | }, |
146 | /** | ||
147 | * @description: select | ||
148 | * @param {*} selection | ||
149 | * @param {*} row | ||
150 | * @author: renchao | ||
151 | */ | ||
133 | select (selection, row) { | 152 | select (selection, row) { |
134 | if (this.sqywInfo.sqywdylx == "1") { | 153 | if (this.sqywInfo.sqywdylx == "1") { |
135 | // 清除 所有勾选项 | 154 | // 清除 所有勾选项 |
... | @@ -140,6 +159,11 @@ | ... | @@ -140,6 +159,11 @@ |
140 | this.$refs.table.toggleRowSelection(row, true); | 159 | this.$refs.table.toggleRowSelection(row, true); |
141 | } | 160 | } |
142 | }, | 161 | }, |
162 | /** | ||
163 | * @description: handleRowClick | ||
164 | * @param {*} row | ||
165 | * @author: renchao | ||
166 | */ | ||
143 | handleRowClick (row) { | 167 | handleRowClick (row) { |
144 | // 如果状态是1,那就是单选 | 168 | // 如果状态是1,那就是单选 |
145 | if (this.sqywInfo.sqywdylx == "1") { | 169 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:03:20 | 4 | * @LastEditTime: 2023-07-21 13:46:30 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -76,6 +76,10 @@ | ... | @@ -76,6 +76,10 @@ |
76 | sendThis(this); | 76 | sendThis(this); |
77 | }, | 77 | }, |
78 | methods: { | 78 | methods: { |
79 | /** | ||
80 | * @description: queryClick | ||
81 | * @author: renchao | ||
82 | */ | ||
79 | queryClick () { | 83 | queryClick () { |
80 | this.$startLoading(); | 84 | this.$startLoading(); |
81 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 85 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -88,6 +92,10 @@ | ... | @@ -88,6 +92,10 @@ |
88 | } | 92 | } |
89 | }) | 93 | }) |
90 | }, | 94 | }, |
95 | /** | ||
96 | * @description: submitForm | ||
97 | * @author: renchao | ||
98 | */ | ||
91 | submitForm () { | 99 | submitForm () { |
92 | if (this.bdcdysz.length == 0) { | 100 | if (this.bdcdysz.length == 0) { |
93 | this.$message.error("请至少选择一条数据"); | 101 | this.$message.error("请至少选择一条数据"); |
... | @@ -116,6 +124,11 @@ | ... | @@ -116,6 +124,11 @@ |
116 | } | 124 | } |
117 | }) | 125 | }) |
118 | }, | 126 | }, |
127 | /** | ||
128 | * @description: handleSelectionChange | ||
129 | * @param {*} val | ||
130 | * @author: renchao | ||
131 | */ | ||
119 | handleSelectionChange (val) { | 132 | handleSelectionChange (val) { |
120 | if (this.sqywInfo.sqywdylx == "1") { | 133 | if (this.sqywInfo.sqywdylx == "1") { |
121 | if (val.length > 1) { | 134 | if (val.length > 1) { |
... | @@ -127,12 +140,23 @@ | ... | @@ -127,12 +140,23 @@ |
127 | this.bdcdysz = val; | 140 | this.bdcdysz = val; |
128 | } | 141 | } |
129 | }, | 142 | }, |
143 | /** | ||
144 | * @description: openBook | ||
145 | * @param {*} row | ||
146 | * @author: renchao | ||
147 | */ | ||
130 | openBook (row) { | 148 | openBook (row) { |
131 | var param = { bdcdyid: row.bdcdyid, qllx: row.qllx, bdcdyh: row.bdcdyh, bsmQlxx: row.bsmQlxx }; | 149 | var param = { bdcdyid: row.bdcdyid, qllx: row.qllx, bdcdyh: row.bdcdyh, bsmQlxx: row.bsmQlxx }; |
132 | this.$popup('登记簿详情', 'registerBook/djbFrame', { | 150 | this.$popup('登记簿详情', 'registerBook/djbFrame', { |
133 | formData: param | 151 | formData: param |
134 | }) | 152 | }) |
135 | }, | 153 | }, |
154 | /** | ||
155 | * @description: select | ||
156 | * @param {*} selection | ||
157 | * @param {*} row | ||
158 | * @author: renchao | ||
159 | */ | ||
136 | select (selection, row) { | 160 | select (selection, row) { |
137 | if (this.sqywInfo.sqywdylx == "1") { | 161 | if (this.sqywInfo.sqywdylx == "1") { |
138 | // 清除 所有勾选项 | 162 | // 清除 所有勾选项 |
... | @@ -143,6 +167,11 @@ | ... | @@ -143,6 +167,11 @@ |
143 | this.$refs.table.toggleRowSelection(row, true); | 167 | this.$refs.table.toggleRowSelection(row, true); |
144 | } | 168 | } |
145 | }, | 169 | }, |
170 | /** | ||
171 | * @description: handleRowClick | ||
172 | * @param {*} row | ||
173 | * @author: renchao | ||
174 | */ | ||
146 | handleRowClick (row) { | 175 | handleRowClick (row) { |
147 | // 如果状态是1,那就是单选 | 176 | // 如果状态是1,那就是单选 |
148 | if (this.sqywInfo.sqywdylx == "1") { | 177 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:03:26 | 4 | * @LastEditTime: 2023-07-21 13:46:36 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -104,6 +104,10 @@ | ... | @@ -104,6 +104,10 @@ |
104 | }, | 104 | }, |
105 | methods: { | 105 | methods: { |
106 | //默认加载表格信息 | 106 | //默认加载表格信息 |
107 | /** | ||
108 | * @description: 默认加载表格信息 | ||
109 | * @author: renchao | ||
110 | */ | ||
107 | queryClick () { | 111 | queryClick () { |
108 | this.$startLoading(); | 112 | this.$startLoading(); |
109 | this.queryForm.bsmSqyw = this.bsmSqyw; | 113 | this.queryForm.bsmSqyw = this.bsmSqyw; |
... | @@ -116,6 +120,10 @@ | ... | @@ -116,6 +120,10 @@ |
116 | } | 120 | } |
117 | }); | 121 | }); |
118 | }, | 122 | }, |
123 | /** | ||
124 | * @description: submitForm | ||
125 | * @author: renchao | ||
126 | */ | ||
119 | submitForm () { | 127 | submitForm () { |
120 | if (this.bdcdysz.length == 0) { | 128 | if (this.bdcdysz.length == 0) { |
121 | this.$alert("请至少选择一条数据"); | 129 | this.$alert("请至少选择一条数据"); |
... | @@ -144,6 +152,11 @@ | ... | @@ -144,6 +152,11 @@ |
144 | } | 152 | } |
145 | }) | 153 | }) |
146 | }, | 154 | }, |
155 | /** | ||
156 | * @description: handleSelectionChange | ||
157 | * @param {*} val | ||
158 | * @author: renchao | ||
159 | */ | ||
147 | handleSelectionChange (val) { | 160 | handleSelectionChange (val) { |
148 | if (this.sqywInfo.sqywdylx == "1") { | 161 | if (this.sqywInfo.sqywdylx == "1") { |
149 | if (val.length > 1) { | 162 | if (val.length > 1) { |
... | @@ -155,6 +168,12 @@ | ... | @@ -155,6 +168,12 @@ |
155 | this.bdcdysz = val; | 168 | this.bdcdysz = val; |
156 | } | 169 | } |
157 | }, | 170 | }, |
171 | /** | ||
172 | * @description: select | ||
173 | * @param {*} selection | ||
174 | * @param {*} row | ||
175 | * @author: renchao | ||
176 | */ | ||
158 | select (selection, row) { | 177 | select (selection, row) { |
159 | if (this.sqywInfo.sqywdylx == "1") { | 178 | if (this.sqywInfo.sqywdylx == "1") { |
160 | // 清除 所有勾选项 | 179 | // 清除 所有勾选项 |
... | @@ -165,6 +184,11 @@ | ... | @@ -165,6 +184,11 @@ |
165 | this.$refs.table.toggleRowSelection(row, true); | 184 | this.$refs.table.toggleRowSelection(row, true); |
166 | } | 185 | } |
167 | }, | 186 | }, |
187 | /** | ||
188 | * @description: handleRowClick | ||
189 | * @param {*} row | ||
190 | * @author: renchao | ||
191 | */ | ||
168 | handleRowClick (row) { | 192 | handleRowClick (row) { |
169 | // 如果状态是1,那就是单选 | 193 | // 如果状态是1,那就是单选 |
170 | if (this.sqywInfo.sqywdylx == "1") { | 194 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:03:33 | 4 | * @LastEditTime: 2023-07-21 13:46:42 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -104,6 +104,10 @@ | ... | @@ -104,6 +104,10 @@ |
104 | }, | 104 | }, |
105 | methods: { | 105 | methods: { |
106 | // 初始化数据 | 106 | // 初始化数据 |
107 | /** | ||
108 | * @description: 初始化数据 | ||
109 | * @author: renchao | ||
110 | */ | ||
107 | queryClick () { | 111 | queryClick () { |
108 | this.$startLoading() | 112 | this.$startLoading() |
109 | selectRepairQlxx({ ...this.queryForm, ...this.pageData }).then((res) => { | 113 | selectRepairQlxx({ ...this.queryForm, ...this.pageData }).then((res) => { |
... | @@ -125,6 +129,11 @@ | ... | @@ -125,6 +129,11 @@ |
125 | // bsm: '' | 129 | // bsm: '' |
126 | // }, '85%') | 130 | // }, '85%') |
127 | // }, | 131 | // }, |
132 | /** | ||
133 | * @description: ywhClick | ||
134 | * @param {*} item) | ||
135 | * @author: renchao | ||
136 | */ | ||
128 | ywhClick (item) { | 137 | ywhClick (item) { |
129 | const { href } = this.$router.resolve( | 138 | const { href } = this.$router.resolve( |
130 | "/djbworkFrame?bdcdyid=" + | 139 | "/djbworkFrame?bdcdyid=" + |
... | @@ -141,6 +150,10 @@ | ... | @@ -141,6 +150,10 @@ |
141 | window.open(href, `urlname${item.bdcdyid}`); | 150 | window.open(href, `urlname${item.bdcdyid}`); |
142 | 151 | ||
143 | }, | 152 | }, |
153 | /** | ||
154 | * @description: submitForm | ||
155 | * @author: renchao | ||
156 | */ | ||
144 | submitForm () { | 157 | submitForm () { |
145 | if (this.bdcdysz.length == 0) { | 158 | if (this.bdcdysz.length == 0) { |
146 | this.$message.error("请至少选择一条数据"); | 159 | this.$message.error("请至少选择一条数据"); |
... | @@ -171,6 +184,11 @@ | ... | @@ -171,6 +184,11 @@ |
171 | } | 184 | } |
172 | }) | 185 | }) |
173 | }, | 186 | }, |
187 | /** | ||
188 | * @description: handleSelectionChange | ||
189 | * @param {*} val | ||
190 | * @author: renchao | ||
191 | */ | ||
174 | handleSelectionChange (val) { | 192 | handleSelectionChange (val) { |
175 | if (this.sqywInfo.sqywdylx == "1") { | 193 | if (this.sqywInfo.sqywdylx == "1") { |
176 | if (val.length > 1) { | 194 | if (val.length > 1) { |
... | @@ -182,6 +200,11 @@ | ... | @@ -182,6 +200,11 @@ |
182 | this.bdcdysz = val; | 200 | this.bdcdysz = val; |
183 | } | 201 | } |
184 | }, | 202 | }, |
203 | /** | ||
204 | * @description: handleRowClick | ||
205 | * @param {*} row | ||
206 | * @author: renchao | ||
207 | */ | ||
185 | handleRowClick (row) { | 208 | handleRowClick (row) { |
186 | // 如果状态是1,那就是单选 | 209 | // 如果状态是1,那就是单选 |
187 | if (this.sqywInfo.sqywdylx == "1") { | 210 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:03:38 | 4 | * @LastEditTime: 2023-07-21 13:46:49 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -81,6 +81,10 @@ | ... | @@ -81,6 +81,10 @@ |
81 | sendThis(this); | 81 | sendThis(this); |
82 | }, | 82 | }, |
83 | methods: { | 83 | methods: { |
84 | /** | ||
85 | * @description: queryClick | ||
86 | * @author: renchao | ||
87 | */ | ||
84 | queryClick () { | 88 | queryClick () { |
85 | this.$startLoading(); | 89 | this.$startLoading(); |
86 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 90 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -93,6 +97,10 @@ | ... | @@ -93,6 +97,10 @@ |
93 | } | 97 | } |
94 | }); | 98 | }); |
95 | }, | 99 | }, |
100 | /** | ||
101 | * @description: submitForm | ||
102 | * @author: renchao | ||
103 | */ | ||
96 | submitForm () { | 104 | submitForm () { |
97 | if (this.bdcdysz.length == 0) { | 105 | if (this.bdcdysz.length == 0) { |
98 | this.$message.error("请至少选择一条数据"); | 106 | this.$message.error("请至少选择一条数据"); |
... | @@ -121,6 +129,11 @@ | ... | @@ -121,6 +129,11 @@ |
121 | } | 129 | } |
122 | }) | 130 | }) |
123 | }, | 131 | }, |
132 | /** | ||
133 | * @description: handleSelectionChange | ||
134 | * @param {*} val | ||
135 | * @author: renchao | ||
136 | */ | ||
124 | handleSelectionChange (val) { | 137 | handleSelectionChange (val) { |
125 | if (this.sqywInfo.sqywdylx == "1") { | 138 | if (this.sqywInfo.sqywdylx == "1") { |
126 | if (val.length > 1) { | 139 | if (val.length > 1) { |
... | @@ -132,6 +145,12 @@ | ... | @@ -132,6 +145,12 @@ |
132 | this.bdcdysz = val; | 145 | this.bdcdysz = val; |
133 | } | 146 | } |
134 | }, | 147 | }, |
148 | /** | ||
149 | * @description: select | ||
150 | * @param {*} selection | ||
151 | * @param {*} row | ||
152 | * @author: renchao | ||
153 | */ | ||
135 | select (selection, row) { | 154 | select (selection, row) { |
136 | if (this.sqywInfo.sqywdylx == "1") { | 155 | if (this.sqywInfo.sqywdylx == "1") { |
137 | // 清除 所有勾选项 | 156 | // 清除 所有勾选项 |
... | @@ -142,6 +161,11 @@ | ... | @@ -142,6 +161,11 @@ |
142 | this.$refs.table.toggleRowSelection(row, true); | 161 | this.$refs.table.toggleRowSelection(row, true); |
143 | } | 162 | } |
144 | }, | 163 | }, |
164 | /** | ||
165 | * @description: handleRowClick | ||
166 | * @param {*} row | ||
167 | * @author: renchao | ||
168 | */ | ||
145 | handleRowClick (row) { | 169 | handleRowClick (row) { |
146 | // 如果状态是1,那就是单选 | 170 | // 如果状态是1,那就是单选 |
147 | if (this.sqywInfo.sqywdylx == "1") { | 171 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:03:42 | 4 | * @LastEditTime: 2023-07-21 13:46:57 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -80,6 +80,10 @@ | ... | @@ -80,6 +80,10 @@ |
80 | sendThis(this); | 80 | sendThis(this); |
81 | }, | 81 | }, |
82 | methods: { | 82 | methods: { |
83 | /** | ||
84 | * @description: queryClick | ||
85 | * @author: renchao | ||
86 | */ | ||
83 | queryClick () { | 87 | queryClick () { |
84 | this.$startLoading(); | 88 | this.$startLoading(); |
85 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 89 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -92,6 +96,10 @@ | ... | @@ -92,6 +96,10 @@ |
92 | } | 96 | } |
93 | }); | 97 | }); |
94 | }, | 98 | }, |
99 | /** | ||
100 | * @description: submitForm | ||
101 | * @author: renchao | ||
102 | */ | ||
95 | submitForm () { | 103 | submitForm () { |
96 | if (this.bdcdysz.length == 0) { | 104 | if (this.bdcdysz.length == 0) { |
97 | this.$message.error("请至少选择一条数据"); | 105 | this.$message.error("请至少选择一条数据"); |
... | @@ -120,6 +128,11 @@ | ... | @@ -120,6 +128,11 @@ |
120 | } | 128 | } |
121 | }) | 129 | }) |
122 | }, | 130 | }, |
131 | /** | ||
132 | * @description: handleSelectionChange | ||
133 | * @param {*} val | ||
134 | * @author: renchao | ||
135 | */ | ||
123 | handleSelectionChange (val) { | 136 | handleSelectionChange (val) { |
124 | if (this.sqywInfo.sqywdylx == "1") { | 137 | if (this.sqywInfo.sqywdylx == "1") { |
125 | if (val.length > 1) { | 138 | if (val.length > 1) { |
... | @@ -131,6 +144,12 @@ | ... | @@ -131,6 +144,12 @@ |
131 | this.bdcdysz = val; | 144 | this.bdcdysz = val; |
132 | } | 145 | } |
133 | }, | 146 | }, |
147 | /** | ||
148 | * @description: select | ||
149 | * @param {*} selection | ||
150 | * @param {*} row | ||
151 | * @author: renchao | ||
152 | */ | ||
134 | select (selection, row) { | 153 | select (selection, row) { |
135 | if (this.sqywInfo.sqywdylx == "1") { | 154 | if (this.sqywInfo.sqywdylx == "1") { |
136 | // 清除 所有勾选项 | 155 | // 清除 所有勾选项 |
... | @@ -141,6 +160,11 @@ | ... | @@ -141,6 +160,11 @@ |
141 | this.$refs.table.toggleRowSelection(row, true); | 160 | this.$refs.table.toggleRowSelection(row, true); |
142 | } | 161 | } |
143 | }, | 162 | }, |
163 | /** | ||
164 | * @description: handleRowClick | ||
165 | * @param {*} row | ||
166 | * @author: renchao | ||
167 | */ | ||
144 | handleRowClick (row) { | 168 | handleRowClick (row) { |
145 | // 如果状态是1,那就是单选 | 169 | // 如果状态是1,那就是单选 |
146 | if (this.sqywInfo.sqywdylx == "1") { | 170 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:02:21 | 4 | * @LastEditTime: 2023-07-21 13:47:08 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -89,6 +89,10 @@ | ... | @@ -89,6 +89,10 @@ |
89 | sendThis(this); | 89 | sendThis(this); |
90 | }, | 90 | }, |
91 | methods: { | 91 | methods: { |
92 | /** | ||
93 | * @description: queryClick | ||
94 | * @author: renchao | ||
95 | */ | ||
92 | queryClick () { | 96 | queryClick () { |
93 | this.$startLoading(); | 97 | this.$startLoading(); |
94 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 98 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -101,6 +105,10 @@ | ... | @@ -101,6 +105,10 @@ |
101 | } | 105 | } |
102 | }); | 106 | }); |
103 | }, | 107 | }, |
108 | /** | ||
109 | * @description: submitForm | ||
110 | * @author: renchao | ||
111 | */ | ||
104 | submitForm () { | 112 | submitForm () { |
105 | if (this.bdcdysz.length == 0) { | 113 | if (this.bdcdysz.length == 0) { |
106 | this.$message.error("请至少选择一条数据"); | 114 | this.$message.error("请至少选择一条数据"); |
... | @@ -129,6 +137,11 @@ | ... | @@ -129,6 +137,11 @@ |
129 | } | 137 | } |
130 | }) | 138 | }) |
131 | }, | 139 | }, |
140 | /** | ||
141 | * @description: handleSelectionChange | ||
142 | * @param {*} val | ||
143 | * @author: renchao | ||
144 | */ | ||
132 | handleSelectionChange (val) { | 145 | handleSelectionChange (val) { |
133 | if (this.sqywInfo.sqywdylx == "1") { | 146 | if (this.sqywInfo.sqywdylx == "1") { |
134 | if (val.length > 1) { | 147 | if (val.length > 1) { |
... | @@ -140,6 +153,11 @@ | ... | @@ -140,6 +153,11 @@ |
140 | this.bdcdysz = val; | 153 | this.bdcdysz = val; |
141 | } | 154 | } |
142 | }, | 155 | }, |
156 | /** | ||
157 | * @description: openBook | ||
158 | * @param {*} row | ||
159 | * @author: renchao | ||
160 | */ | ||
143 | openBook (row) { | 161 | openBook (row) { |
144 | var param = { | 162 | var param = { |
145 | bdcdyid: row.bdcdyid, | 163 | bdcdyid: row.bdcdyid, |
... | @@ -151,6 +169,12 @@ | ... | @@ -151,6 +169,12 @@ |
151 | formData: param | 169 | formData: param |
152 | }) | 170 | }) |
153 | }, | 171 | }, |
172 | /** | ||
173 | * @description: select | ||
174 | * @param {*} selection | ||
175 | * @param {*} row | ||
176 | * @author: renchao | ||
177 | */ | ||
154 | select (selection, row) { | 178 | select (selection, row) { |
155 | if (this.sqywInfo.sqywdylx == "1") { | 179 | if (this.sqywInfo.sqywdylx == "1") { |
156 | // 清除 所有勾选项 | 180 | // 清除 所有勾选项 |
... | @@ -161,6 +185,11 @@ | ... | @@ -161,6 +185,11 @@ |
161 | this.$refs.table.toggleRowSelection(row, true); | 185 | this.$refs.table.toggleRowSelection(row, true); |
162 | } | 186 | } |
163 | }, | 187 | }, |
188 | /** | ||
189 | * @description: handleRowClick | ||
190 | * @param {*} row | ||
191 | * @author: renchao | ||
192 | */ | ||
164 | handleRowClick (row) { | 193 | handleRowClick (row) { |
165 | // 如果状态是1,那就是单选 | 194 | // 如果状态是1,那就是单选 |
166 | if (this.sqywInfo.sqywdylx == "1") { | 195 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
... | @@ -191,6 +191,10 @@ | ... | @@ -191,6 +191,10 @@ |
191 | }, | 191 | }, |
192 | methods: { | 192 | methods: { |
193 | // 单选事件 | 193 | // 单选事件 |
194 | /** | ||
195 | * @description: 单选事件 | ||
196 | * @author: renchao | ||
197 | */ | ||
194 | close () { | 198 | close () { |
195 | this.tableData.data.forEach(item => { | 199 | this.tableData.data.forEach(item => { |
196 | if (this.radioVal == item.bhqkbsm) { | 200 | if (this.radioVal == item.bhqkbsm) { |
... | @@ -211,6 +215,10 @@ | ... | @@ -211,6 +215,10 @@ |
211 | } | 215 | } |
212 | }) | 216 | }) |
213 | }, | 217 | }, |
218 | /** | ||
219 | * @description: queryClick | ||
220 | * @author: renchao | ||
221 | */ | ||
214 | queryClick () { | 222 | queryClick () { |
215 | this.$startLoading(); | 223 | this.$startLoading(); |
216 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 224 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -221,13 +229,10 @@ | ... | @@ -221,13 +229,10 @@ |
221 | } | 229 | } |
222 | }); | 230 | }); |
223 | }, | 231 | }, |
224 | handleRowClick (val) { | 232 | /** |
225 | // this.radioVal = val.bhqkbsm | 233 | * @description: submitForm |
226 | // let obj = val | 234 | * @author: renchao |
227 | // obj.bglx = '1'; | 235 | */ |
228 | // this.bdcdysz[0] = obj | ||
229 | // this.close() | ||
230 | }, | ||
231 | submitForm () { | 236 | submitForm () { |
232 | startBusinessFlow({ | 237 | startBusinessFlow({ |
233 | bsmSqyw: this.sqywInfo.parentid, | 238 | bsmSqyw: this.sqywInfo.parentid, |
... | @@ -252,6 +257,11 @@ | ... | @@ -252,6 +257,11 @@ |
252 | } | 257 | } |
253 | }) | 258 | }) |
254 | }, | 259 | }, |
260 | /** | ||
261 | * @description: openBook | ||
262 | * @param {*} row | ||
263 | * @author: renchao | ||
264 | */ | ||
255 | openBook (row) { | 265 | openBook (row) { |
256 | var param = { | 266 | var param = { |
257 | bdcdyid: row.bdcdyid, | 267 | bdcdyid: row.bdcdyid, |
... | @@ -263,6 +273,12 @@ | ... | @@ -263,6 +273,12 @@ |
263 | formData: param | 273 | formData: param |
264 | }) | 274 | }) |
265 | }, | 275 | }, |
276 | /** | ||
277 | * @description: select | ||
278 | * @param {*} selection | ||
279 | * @param {*} row | ||
280 | * @author: renchao | ||
281 | */ | ||
266 | select (selection, row) { | 282 | select (selection, row) { |
267 | if (this.sqywInfo.sqywdylx == "1") { | 283 | if (this.sqywInfo.sqywdylx == "1") { |
268 | // 清除 所有勾选项 | 284 | // 清除 所有勾选项 |
... | @@ -273,6 +289,11 @@ | ... | @@ -273,6 +289,11 @@ |
273 | this.$refs.table.toggleRowSelection(row, true); | 289 | this.$refs.table.toggleRowSelection(row, true); |
274 | } | 290 | } |
275 | }, | 291 | }, |
292 | /** | ||
293 | * @description: handleRowClick | ||
294 | * @param {*} row | ||
295 | * @author: renchao | ||
296 | */ | ||
276 | handleRowClick (row) { | 297 | handleRowClick (row) { |
277 | // 如果状态是1,那就是单选 | 298 | // 如果状态是1,那就是单选 |
278 | if (this.sqywInfo.sqywdylx == "1") { | 299 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:04:27 | 4 | * @LastEditTime: 2023-07-21 13:47:23 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -85,6 +85,10 @@ | ... | @@ -85,6 +85,10 @@ |
85 | sendThis(this); | 85 | sendThis(this); |
86 | }, | 86 | }, |
87 | methods: { | 87 | methods: { |
88 | /** | ||
89 | * @description: queryClick | ||
90 | * @author: renchao | ||
91 | */ | ||
88 | queryClick () { | 92 | queryClick () { |
89 | this.$startLoading(); | 93 | this.$startLoading(); |
90 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 94 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -98,6 +102,10 @@ | ... | @@ -98,6 +102,10 @@ |
98 | }); | 102 | }); |
99 | }, | 103 | }, |
100 | 104 | ||
105 | /** | ||
106 | * @description: submitForm | ||
107 | * @author: renchao | ||
108 | */ | ||
101 | submitForm () { | 109 | submitForm () { |
102 | if (this.bdcdysz.length == 0) { | 110 | if (this.bdcdysz.length == 0) { |
103 | this.$alert("请至少选择一条数据"); | 111 | this.$alert("请至少选择一条数据"); |
... | @@ -126,7 +134,15 @@ | ... | @@ -126,7 +134,15 @@ |
126 | } | 134 | } |
127 | }) | 135 | }) |
128 | }, | 136 | }, |
137 | /** | ||
138 | * @description: handleSelectionChange | ||
139 | * @param {*} val | ||
140 | * @author: renchao | ||
141 | */ | ||
129 | handleSelectionChange (val) { | 142 | handleSelectionChange (val) { |
143 | val.forEach((item, index) => { | ||
144 | item.bsm = item.zdbsm; | ||
145 | }); | ||
130 | if (this.sqywInfo.sqywdylx == "1") { | 146 | if (this.sqywInfo.sqywdylx == "1") { |
131 | if (val.length > 1) { | 147 | if (val.length > 1) { |
132 | this.bdcdysz = [...val[val.length - 1]]; | 148 | this.bdcdysz = [...val[val.length - 1]]; |
... | @@ -137,6 +153,12 @@ | ... | @@ -137,6 +153,12 @@ |
137 | this.bdcdysz = val; | 153 | this.bdcdysz = val; |
138 | } | 154 | } |
139 | }, | 155 | }, |
156 | /** | ||
157 | * @description: select | ||
158 | * @param {*} selection | ||
159 | * @param {*} row | ||
160 | * @author: renchao | ||
161 | */ | ||
140 | select (selection, row) { | 162 | select (selection, row) { |
141 | if (this.sqywInfo.sqywdylx == "1") { | 163 | if (this.sqywInfo.sqywdylx == "1") { |
142 | // 清除 所有勾选项 | 164 | // 清除 所有勾选项 |
... | @@ -148,6 +170,11 @@ | ... | @@ -148,6 +170,11 @@ |
148 | } | 170 | } |
149 | }, | 171 | }, |
150 | 172 | ||
173 | /** | ||
174 | * @description: handleRowClick | ||
175 | * @param {*} row | ||
176 | * @author: renchao | ||
177 | */ | ||
151 | handleRowClick (row) { | 178 | handleRowClick (row) { |
152 | // 如果状态是1,那就是单选 | 179 | // 如果状态是1,那就是单选 |
153 | if (this.sqywInfo.sqywdylx == "1") { | 180 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:04:37 | 4 | * @LastEditTime: 2023-07-21 13:47:35 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -89,6 +89,10 @@ | ... | @@ -89,6 +89,10 @@ |
89 | sendThis(this); | 89 | sendThis(this); |
90 | }, | 90 | }, |
91 | methods: { | 91 | methods: { |
92 | /** | ||
93 | * @description: queryClick | ||
94 | * @author: renchao | ||
95 | */ | ||
92 | queryClick () { | 96 | queryClick () { |
93 | this.$startLoading(); | 97 | this.$startLoading(); |
94 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 98 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -101,6 +105,10 @@ | ... | @@ -101,6 +105,10 @@ |
101 | } | 105 | } |
102 | }); | 106 | }); |
103 | }, | 107 | }, |
108 | /** | ||
109 | * @description: submitForm | ||
110 | * @author: renchao | ||
111 | */ | ||
104 | submitForm () { | 112 | submitForm () { |
105 | if (this.bdcdysz.length == 0) { | 113 | if (this.bdcdysz.length == 0) { |
106 | this.$message.error("请至少选择一条数据"); | 114 | this.$message.error("请至少选择一条数据"); |
... | @@ -129,6 +137,11 @@ | ... | @@ -129,6 +137,11 @@ |
129 | } | 137 | } |
130 | }) | 138 | }) |
131 | }, | 139 | }, |
140 | /** | ||
141 | * @description: handleSelectionChange | ||
142 | * @param {*} val | ||
143 | * @author: renchao | ||
144 | */ | ||
132 | handleSelectionChange (val) { | 145 | handleSelectionChange (val) { |
133 | if (this.sqywInfo.sqywdylx == "1") { | 146 | if (this.sqywInfo.sqywdylx == "1") { |
134 | if (val.length > 1) { | 147 | if (val.length > 1) { |
... | @@ -140,6 +153,11 @@ | ... | @@ -140,6 +153,11 @@ |
140 | this.bdcdysz = val; | 153 | this.bdcdysz = val; |
141 | } | 154 | } |
142 | }, | 155 | }, |
156 | /** | ||
157 | * @description: openBook | ||
158 | * @param {*} row | ||
159 | * @author: renchao | ||
160 | */ | ||
143 | openBook (row) { | 161 | openBook (row) { |
144 | var param = { | 162 | var param = { |
145 | bdcdyid: row.bdcdyid, | 163 | bdcdyid: row.bdcdyid, |
... | @@ -151,6 +169,12 @@ | ... | @@ -151,6 +169,12 @@ |
151 | formData: param | 169 | formData: param |
152 | }) | 170 | }) |
153 | }, | 171 | }, |
172 | /** | ||
173 | * @description: select | ||
174 | * @param {*} selection | ||
175 | * @param {*} row | ||
176 | * @author: renchao | ||
177 | */ | ||
154 | select (selection, row) { | 178 | select (selection, row) { |
155 | if (this.sqywInfo.sqywdylx == "1") { | 179 | if (this.sqywInfo.sqywdylx == "1") { |
156 | // 清除 所有勾选项 | 180 | // 清除 所有勾选项 |
... | @@ -161,6 +185,11 @@ | ... | @@ -161,6 +185,11 @@ |
161 | this.$refs.table.toggleRowSelection(row, true); | 185 | this.$refs.table.toggleRowSelection(row, true); |
162 | } | 186 | } |
163 | }, | 187 | }, |
188 | /** | ||
189 | * @description: handleRowClick | ||
190 | * @param {*} row | ||
191 | * @author: renchao | ||
192 | */ | ||
164 | handleRowClick (row) { | 193 | handleRowClick (row) { |
165 | // 如果状态是1,那就是单选 | 194 | // 如果状态是1,那就是单选 |
166 | if (this.sqywInfo.sqywdylx == "1") { | 195 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:04:50 | 4 | * @LastEditTime: 2023-07-21 13:47:50 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -81,6 +81,10 @@ | ... | @@ -81,6 +81,10 @@ |
81 | sendThis(this); | 81 | sendThis(this); |
82 | }, | 82 | }, |
83 | methods: { | 83 | methods: { |
84 | /** | ||
85 | * @description: queryClick | ||
86 | * @author: renchao | ||
87 | */ | ||
84 | queryClick () { | 88 | queryClick () { |
85 | this.$startLoading(); | 89 | this.$startLoading(); |
86 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 90 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -93,6 +97,10 @@ | ... | @@ -93,6 +97,10 @@ |
93 | } | 97 | } |
94 | }); | 98 | }); |
95 | }, | 99 | }, |
100 | /** | ||
101 | * @description: submitForm | ||
102 | * @author: renchao | ||
103 | */ | ||
96 | submitForm () { | 104 | submitForm () { |
97 | if (this.bdcdysz.length == 0) { | 105 | if (this.bdcdysz.length == 0) { |
98 | this.$message.error("请至少选择一条数据"); | 106 | this.$message.error("请至少选择一条数据"); |
... | @@ -121,6 +129,11 @@ | ... | @@ -121,6 +129,11 @@ |
121 | } | 129 | } |
122 | }) | 130 | }) |
123 | }, | 131 | }, |
132 | /** | ||
133 | * @description: handleSelectionChange | ||
134 | * @param {*} val | ||
135 | * @author: renchao | ||
136 | */ | ||
124 | handleSelectionChange (val) { | 137 | handleSelectionChange (val) { |
125 | if (this.sqywInfo.sqywdylx == "1") { | 138 | if (this.sqywInfo.sqywdylx == "1") { |
126 | if (val.length > 1) { | 139 | if (val.length > 1) { |
... | @@ -132,6 +145,12 @@ | ... | @@ -132,6 +145,12 @@ |
132 | this.bdcdysz = val; | 145 | this.bdcdysz = val; |
133 | } | 146 | } |
134 | }, | 147 | }, |
148 | /** | ||
149 | * @description: select | ||
150 | * @param {*} selection | ||
151 | * @param {*} row | ||
152 | * @author: renchao | ||
153 | */ | ||
135 | select (selection, row) { | 154 | select (selection, row) { |
136 | if (this.sqywInfo.sqywdylx == "1") { | 155 | if (this.sqywInfo.sqywdylx == "1") { |
137 | // 清除 所有勾选项 | 156 | // 清除 所有勾选项 |
... | @@ -142,6 +161,11 @@ | ... | @@ -142,6 +161,11 @@ |
142 | this.$refs.table.toggleRowSelection(row, true); | 161 | this.$refs.table.toggleRowSelection(row, true); |
143 | } | 162 | } |
144 | }, | 163 | }, |
164 | /** | ||
165 | * @description: handleRowClick | ||
166 | * @param {*} row | ||
167 | * @author: renchao | ||
168 | */ | ||
145 | handleRowClick (row) { | 169 | handleRowClick (row) { |
146 | // 如果状态是1,那就是单选 | 170 | // 如果状态是1,那就是单选 |
147 | if (this.sqywInfo.sqywdylx == "1") { | 171 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:05:07 | 4 | * @LastEditTime: 2023-07-21 13:48:00 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -81,6 +81,10 @@ | ... | @@ -81,6 +81,10 @@ |
81 | sendThis(this); | 81 | sendThis(this); |
82 | }, | 82 | }, |
83 | methods: { | 83 | methods: { |
84 | /** | ||
85 | * @description: queryClick | ||
86 | * @author: renchao | ||
87 | */ | ||
84 | queryClick () { | 88 | queryClick () { |
85 | this.$startLoading(); | 89 | this.$startLoading(); |
86 | this.queryForm.sqywbm = this.sqywInfo.djywbm; | 90 | this.queryForm.sqywbm = this.sqywInfo.djywbm; |
... | @@ -93,6 +97,10 @@ | ... | @@ -93,6 +97,10 @@ |
93 | } | 97 | } |
94 | }); | 98 | }); |
95 | }, | 99 | }, |
100 | /** | ||
101 | * @description: submitForm | ||
102 | * @author: renchao | ||
103 | */ | ||
96 | submitForm () { | 104 | submitForm () { |
97 | if (this.bdcdysz.length == 0) { | 105 | if (this.bdcdysz.length == 0) { |
98 | this.$message.error("请至少选择一条数据"); | 106 | this.$message.error("请至少选择一条数据"); |
... | @@ -121,6 +129,11 @@ | ... | @@ -121,6 +129,11 @@ |
121 | } | 129 | } |
122 | }) | 130 | }) |
123 | }, | 131 | }, |
132 | /** | ||
133 | * @description: handleSelectionChange | ||
134 | * @param {*} val | ||
135 | * @author: renchao | ||
136 | */ | ||
124 | handleSelectionChange (val) { | 137 | handleSelectionChange (val) { |
125 | if (this.sqywInfo.sqywdylx == "1") { | 138 | if (this.sqywInfo.sqywdylx == "1") { |
126 | if (val.length > 1) { | 139 | if (val.length > 1) { |
... | @@ -132,6 +145,12 @@ | ... | @@ -132,6 +145,12 @@ |
132 | this.bdcdysz = val; | 145 | this.bdcdysz = val; |
133 | } | 146 | } |
134 | }, | 147 | }, |
148 | /** | ||
149 | * @description: select | ||
150 | * @param {*} selection | ||
151 | * @param {*} row | ||
152 | * @author: renchao | ||
153 | */ | ||
135 | select (selection, row) { | 154 | select (selection, row) { |
136 | if (this.sqywInfo.sqywdylx == "1") { | 155 | if (this.sqywInfo.sqywdylx == "1") { |
137 | // 清除 所有勾选项 | 156 | // 清除 所有勾选项 |
... | @@ -142,6 +161,11 @@ | ... | @@ -142,6 +161,11 @@ |
142 | this.$refs.table.toggleRowSelection(row, true); | 161 | this.$refs.table.toggleRowSelection(row, true); |
143 | } | 162 | } |
144 | }, | 163 | }, |
164 | /** | ||
165 | * @description: handleRowClick | ||
166 | * @param {*} row | ||
167 | * @author: renchao | ||
168 | */ | ||
145 | handleRowClick (row) { | 169 | handleRowClick (row) { |
146 | // 如果状态是1,那就是单选 | 170 | // 如果状态是1,那就是单选 |
147 | if (this.sqywInfo.sqywdylx == "1") { | 171 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:05:14 | 4 | * @LastEditTime: 2023-07-21 13:48:09 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -82,6 +82,10 @@ | ... | @@ -82,6 +82,10 @@ |
82 | sendThis(this); | 82 | sendThis(this); |
83 | }, | 83 | }, |
84 | methods: { | 84 | methods: { |
85 | /** | ||
86 | * @description: queryClick | ||
87 | * @author: renchao | ||
88 | */ | ||
85 | queryClick () { | 89 | queryClick () { |
86 | this.$startLoading(); | 90 | this.$startLoading(); |
87 | this.queryForm.zrzbsm = this.sqywInfo.zrzbsm; | 91 | this.queryForm.zrzbsm = this.sqywInfo.zrzbsm; |
... | @@ -94,6 +98,10 @@ | ... | @@ -94,6 +98,10 @@ |
94 | } | 98 | } |
95 | }); | 99 | }); |
96 | }, | 100 | }, |
101 | /** | ||
102 | * @description: submitForm | ||
103 | * @author: renchao | ||
104 | */ | ||
97 | submitForm () { | 105 | submitForm () { |
98 | if (this.bdcdysz.length == 0) { | 106 | if (this.bdcdysz.length == 0) { |
99 | this.$message.error("请至少选择一条数据"); | 107 | this.$message.error("请至少选择一条数据"); |
... | @@ -122,6 +130,11 @@ | ... | @@ -122,6 +130,11 @@ |
122 | } | 130 | } |
123 | }) | 131 | }) |
124 | }, | 132 | }, |
133 | /** | ||
134 | * @description: handleSelectionChange | ||
135 | * @param {*} val | ||
136 | * @author: renchao | ||
137 | */ | ||
125 | handleSelectionChange (val) { | 138 | handleSelectionChange (val) { |
126 | if (this.sqywInfo.sqywdylx == "1") { | 139 | if (this.sqywInfo.sqywdylx == "1") { |
127 | if (val.length > 1) { | 140 | if (val.length > 1) { |
... | @@ -133,6 +146,12 @@ | ... | @@ -133,6 +146,12 @@ |
133 | this.bdcdysz = val; | 146 | this.bdcdysz = val; |
134 | } | 147 | } |
135 | }, | 148 | }, |
149 | /** | ||
150 | * @description: select | ||
151 | * @param {*} selection | ||
152 | * @param {*} row | ||
153 | * @author: renchao | ||
154 | */ | ||
136 | select (selection, row) { | 155 | select (selection, row) { |
137 | if (this.sqywInfo.sqywdylx == "1") { | 156 | if (this.sqywInfo.sqywdylx == "1") { |
138 | // 清除 所有勾选项 | 157 | // 清除 所有勾选项 |
... | @@ -143,6 +162,11 @@ | ... | @@ -143,6 +162,11 @@ |
143 | this.$refs.table.toggleRowSelection(row, true); | 162 | this.$refs.table.toggleRowSelection(row, true); |
144 | } | 163 | } |
145 | }, | 164 | }, |
165 | /** | ||
166 | * @description: handleRowClick | ||
167 | * @param {*} row | ||
168 | * @author: renchao | ||
169 | */ | ||
146 | handleRowClick (row) { | 170 | handleRowClick (row) { |
147 | // 如果状态是1,那就是单选 | 171 | // 如果状态是1,那就是单选 |
148 | if (this.sqywInfo.sqywdylx == "1") { | 172 | if (this.sqywInfo.sqywdylx == "1") { | ... | ... |
... | @@ -123,6 +123,10 @@ | ... | @@ -123,6 +123,10 @@ |
123 | this.getDataList(); | 123 | this.getDataList(); |
124 | }, | 124 | }, |
125 | methods: { | 125 | methods: { |
126 | /** | ||
127 | * @description: getDataList | ||
128 | * @author: renchao | ||
129 | */ | ||
126 | getDataList () { | 130 | getDataList () { |
127 | //获取收藏信息集合 | 131 | //获取收藏信息集合 |
128 | getCollectBiz().then(res => { | 132 | getCollectBiz().then(res => { |
... | @@ -137,6 +141,11 @@ | ... | @@ -137,6 +141,11 @@ |
137 | }) | 141 | }) |
138 | }, | 142 | }, |
139 | //申请业务类型菜单事件 | 143 | //申请业务类型菜单事件 |
144 | /** | ||
145 | * @description: 申请业务类型菜单事件 | ||
146 | * @param {*} item | ||
147 | * @author: renchao | ||
148 | */ | ||
140 | sqywlxClick (item) { | 149 | sqywlxClick (item) { |
141 | console.log("item", item); | 150 | console.log("item", item); |
142 | this.btnDisabled = true; | 151 | this.btnDisabled = true; |
... | @@ -157,6 +166,11 @@ | ... | @@ -157,6 +166,11 @@ |
157 | } | 166 | } |
158 | }, | 167 | }, |
159 | //权利类型菜单事件 | 168 | //权利类型菜单事件 |
169 | /** | ||
170 | * @description: 权利类型菜单事件 | ||
171 | * @param {*} index | ||
172 | * @author: renchao | ||
173 | */ | ||
160 | qllxClick (index) { | 174 | qllxClick (index) { |
161 | console.log("业务", index); | 175 | console.log("业务", index); |
162 | this.btnDisabled = true; | 176 | this.btnDisabled = true; |
... | @@ -170,6 +184,12 @@ | ... | @@ -170,6 +184,12 @@ |
170 | this.getNextNode(this.sqywQllxList[index].bsmSqyw); | 184 | this.getNextNode(this.sqywQllxList[index].bsmSqyw); |
171 | }, | 185 | }, |
172 | //选择申请业务事件 | 186 | //选择申请业务事件 |
187 | /** | ||
188 | * @description: 选择申请业务事件 | ||
189 | * @param {*} data | ||
190 | * @param {*} index | ||
191 | * @author: renchao | ||
192 | */ | ||
173 | selectSqywClick (data, index) { | 193 | selectSqywClick (data, index) { |
174 | data.forEach(item => { | 194 | data.forEach(item => { |
175 | item.selected = false; | 195 | item.selected = false; |
... | @@ -184,6 +204,11 @@ | ... | @@ -184,6 +204,11 @@ |
184 | } | 204 | } |
185 | }, | 205 | }, |
186 | //获取下个节点类型数据 | 206 | //获取下个节点类型数据 |
207 | /** | ||
208 | * @description: 获取下个节点类型数据 | ||
209 | * @param {*} bsmSqyw | ||
210 | * @author: renchao | ||
211 | */ | ||
187 | getNextNode (bsmSqyw) { | 212 | getNextNode (bsmSqyw) { |
188 | getNextNode(bsmSqyw).then(res => { | 213 | getNextNode(bsmSqyw).then(res => { |
189 | if (res.result.djqx) { | 214 | if (res.result.djqx) { |
... | @@ -202,6 +227,10 @@ | ... | @@ -202,6 +227,10 @@ |
202 | }, | 227 | }, |
203 | 228 | ||
204 | //获取下个节点类型数据 | 229 | //获取下个节点类型数据 |
230 | /** | ||
231 | * @description: 获取下个节点类型数据 | ||
232 | * @author: renchao | ||
233 | */ | ||
205 | getRepairBiz () { | 234 | getRepairBiz () { |
206 | getRepairBiz().then(res => { | 235 | getRepairBiz().then(res => { |
207 | if (res) { | 236 | if (res) { |
... | @@ -211,16 +240,32 @@ | ... | @@ -211,16 +240,32 @@ |
211 | }) | 240 | }) |
212 | }, | 241 | }, |
213 | //双击事件 | 242 | //双击事件 |
243 | /** | ||
244 | * @description: 双击事件 | ||
245 | * @param {*} data | ||
246 | * @param {*} index | ||
247 | * @param {*} item | ||
248 | * @author: renchao | ||
249 | */ | ||
214 | dblclick (data, index, item) { | 250 | dblclick (data, index, item) { |
215 | localStorage.setItem('ywbl', JSON.stringify(item)); | 251 | localStorage.setItem('ywbl', JSON.stringify(item)); |
216 | this.selectSqywClick(data, index); | 252 | this.selectSqywClick(data, index); |
217 | this.dialogClick(); | 253 | this.dialogClick(); |
218 | }, | 254 | }, |
219 | //打开弹框内容 | 255 | //打开弹框内容 |
256 | /** | ||
257 | * @description: 打开弹框内容 | ||
258 | * @author: renchao | ||
259 | */ | ||
220 | dialogClick () { | 260 | dialogClick () { |
221 | this.openDialog(); | 261 | this.openDialog(); |
222 | }, | 262 | }, |
223 | //收藏操作 | 263 | //收藏操作 |
264 | /** | ||
265 | * @description: 收藏操作 | ||
266 | * @param {*} item | ||
267 | * @author: renchao | ||
268 | */ | ||
224 | handleCollection (item) { | 269 | handleCollection (item) { |
225 | let that = this | 270 | let that = this |
226 | if (item.userCollect == '2') { | 271 | if (item.userCollect == '2') { |
... | @@ -253,6 +298,11 @@ | ... | @@ -253,6 +298,11 @@ |
253 | }) | 298 | }) |
254 | } | 299 | } |
255 | }, | 300 | }, |
301 | /** | ||
302 | * @description: handleSelect | ||
303 | * @param {*} item | ||
304 | * @author: renchao | ||
305 | */ | ||
256 | handleSelect (item) { | 306 | handleSelect (item) { |
257 | this.busList.forEach(item => { | 307 | this.busList.forEach(item => { |
258 | item.cselect = false | 308 | item.cselect = false |
... | @@ -260,6 +310,11 @@ | ... | @@ -260,6 +310,11 @@ |
260 | item.cselect = !item.cselect | 310 | item.cselect = !item.cselect |
261 | }, | 311 | }, |
262 | // 登记类型 | 312 | // 登记类型 |
313 | /** | ||
314 | * @description: 登记类型 | ||
315 | * @param {*} item | ||
316 | * @author: renchao | ||
317 | */ | ||
263 | handleDjlxSelect (item) { | 318 | handleDjlxSelect (item) { |
264 | this.djlxList.forEach(item => { | 319 | this.djlxList.forEach(item => { |
265 | item.cselect = false | 320 | item.cselect = false |
... | @@ -276,6 +331,11 @@ | ... | @@ -276,6 +331,11 @@ |
276 | } | 331 | } |
277 | this.djqxList = [] | 332 | this.djqxList = [] |
278 | }, | 333 | }, |
334 | /** | ||
335 | * @description: handleDjqxItem | ||
336 | * @param {*} item | ||
337 | * @author: renchao | ||
338 | */ | ||
279 | handleDjqxItem (item) { | 339 | handleDjqxItem (item) { |
280 | this.djlxList.forEach(item => { | 340 | this.djlxList.forEach(item => { |
281 | item.cselect = false | 341 | item.cselect = false |
... | @@ -288,20 +348,39 @@ | ... | @@ -288,20 +348,39 @@ |
288 | this.btnDisabled = true | 348 | this.btnDisabled = true |
289 | } | 349 | } |
290 | }, | 350 | }, |
351 | /** | ||
352 | * @description: handleSelectItem | ||
353 | * @param {*} item | ||
354 | * @param {*} list | ||
355 | * @author: renchao | ||
356 | */ | ||
291 | handleSelectItem (item, list) { | 357 | handleSelectItem (item, list) { |
292 | this.handleSelectYw(item, list) | 358 | this.handleSelectYw(item, list) |
293 | this.openDialog() | 359 | this.openDialog() |
294 | }, | 360 | }, |
295 | // 选择不动产信息 | 361 | // 选择不动产信息 |
362 | /** | ||
363 | * @description: 选择不动产信息 | ||
364 | * @author: renchao | ||
365 | */ | ||
296 | bthSelectClick () { | 366 | bthSelectClick () { |
297 | this.openDialog() | 367 | this.openDialog() |
298 | }, | 368 | }, |
369 | /** | ||
370 | * @description: openDialog | ||
371 | * @author: renchao | ||
372 | */ | ||
299 | openDialog () { | 373 | openDialog () { |
300 | console.log("this.selectParam", this.selectParam); | 374 | console.log("this.selectParam", this.selectParam); |
301 | let title = "申请业务:" + this.selectParam?.djywmc ? this.selectParam?.djywmc : ''; | 375 | let title = "申请业务:" + this.selectParam?.djywmc ? this.selectParam?.djywmc : ''; |
302 | 376 | ||
303 | this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': this.selectParam }, "85%") | 377 | this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': this.selectParam }, "85%") |
304 | }, | 378 | }, |
379 | /** | ||
380 | * @description: loadView | ||
381 | * @param {*} view | ||
382 | * @author: renchao | ||
383 | */ | ||
305 | loadView (view) { | 384 | loadView (view) { |
306 | return r => require.ensure([], () => r(require(`./components/${view}/${view}.vue`))) | 385 | return r => require.ensure([], () => r(require(`./components/${view}/${view}.vue`))) |
307 | } | 386 | } | ... | ... |
... | @@ -32,11 +32,20 @@ | ... | @@ -32,11 +32,20 @@ |
32 | } | 32 | } |
33 | }, | 33 | }, |
34 | methods: { | 34 | methods: { |
35 | /** | ||
36 | * @description: loadView | ||
37 | * @param {*} view | ||
38 | * @author: renchao | ||
39 | */ | ||
35 | loadView (view) { | 40 | loadView (view) { |
36 | console.log(view, 'view'); | 41 | console.log(view, 'view'); |
37 | return (r) => | 42 | return (r) => |
38 | require.ensure([], () => r(require(`./components/${view}.vue`))); | 43 | require.ensure([], () => r(require(`./components/${view}.vue`))); |
39 | }, | 44 | }, |
45 | /** | ||
46 | * @description: updateDialog | ||
47 | * @author: renchao | ||
48 | */ | ||
40 | updateDialog () { | 49 | updateDialog () { |
41 | this.$popupCacel() | 50 | this.$popupCacel() |
42 | this.$emit("updateDialog", true) | 51 | this.$emit("updateDialog", true) | ... | ... |
... | @@ -145,6 +145,10 @@ | ... | @@ -145,6 +145,10 @@ |
145 | }, | 145 | }, |
146 | methods: { | 146 | methods: { |
147 | // 初始化数据 | 147 | // 初始化数据 |
148 | /** | ||
149 | * @description: 初始化数据 | ||
150 | * @author: renchao | ||
151 | */ | ||
148 | queryClick () { | 152 | queryClick () { |
149 | this.$startLoading() | 153 | this.$startLoading() |
150 | getDjbBysearch({ ...this.queryForm, ...this.pageData }).then((res) => { | 154 | getDjbBysearch({ ...this.queryForm, ...this.pageData }).then((res) => { |
... | @@ -156,14 +160,34 @@ | ... | @@ -156,14 +160,34 @@ |
156 | } | 160 | } |
157 | }); | 161 | }); |
158 | }, | 162 | }, |
163 | /** | ||
164 | * @description: handleSort | ||
165 | * @param {*} name | ||
166 | * @param {*} sort | ||
167 | * @author: renchao | ||
168 | */ | ||
159 | handleSort (name, sort) { | 169 | handleSort (name, sort) { |
160 | console.log(name, sort); | 170 | console.log(name, sort); |
161 | }, | 171 | }, |
162 | // 高级查询 | 172 | // 高级查询 |
173 | /** | ||
174 | * @description: 高级查询 | ||
175 | * @author: renchao | ||
176 | */ | ||
163 | moreQueryClick () { }, | 177 | moreQueryClick () { }, |
178 | /** | ||
179 | * @description: openDialog | ||
180 | * @param {*} scroll | ||
181 | * @author: renchao | ||
182 | */ | ||
164 | openDialog (scroll) { | 183 | openDialog (scroll) { |
165 | this.$popupDialog('登记簿详情', 'registerBook/djbFrame', scroll, '85%'); | 184 | this.$popupDialog('登记簿详情', 'registerBook/djbFrame', scroll, '85%'); |
166 | }, | 185 | }, |
186 | /** | ||
187 | * @description: handleLpbClick | ||
188 | * @param {*} item | ||
189 | * @author: renchao | ||
190 | */ | ||
167 | handleLpbClick (item) { | 191 | handleLpbClick (item) { |
168 | this.$popupDialog('楼盘表', 'lpb/index', { | 192 | this.$popupDialog('楼盘表', 'lpb/index', { |
169 | bsm: '' | 193 | bsm: '' | ... | ... |
... | @@ -112,6 +112,10 @@ | ... | @@ -112,6 +112,10 @@ |
112 | }, | 112 | }, |
113 | methods: { | 113 | methods: { |
114 | // 初始化数据 | 114 | // 初始化数据 |
115 | /** | ||
116 | * @description: 初始化数据 | ||
117 | * @author: renchao | ||
118 | */ | ||
115 | queryClick () { | 119 | queryClick () { |
116 | this.$startLoading() | 120 | this.$startLoading() |
117 | getJdcxBysearch({ ...this.queryForm, ...this.pageData }).then(res => { | 121 | getJdcxBysearch({ ...this.queryForm, ...this.pageData }).then(res => { |
... | @@ -123,10 +127,26 @@ | ... | @@ -123,10 +127,26 @@ |
123 | } | 127 | } |
124 | }) | 128 | }) |
125 | }, | 129 | }, |
130 | /** | ||
131 | * @description: handleSort | ||
132 | * @param {*} name | ||
133 | * @param {*} sort | ||
134 | * @author: renchao | ||
135 | */ | ||
126 | handleSort (name, sort) { | 136 | handleSort (name, sort) { |
127 | console.log(name, sort); | 137 | console.log(name, sort); |
128 | }, | 138 | }, |
139 | // 高级查询 | ||
140 | /** | ||
141 | * @description: 高级查询 | ||
142 | * @author: renchao | ||
143 | */ | ||
129 | moreQueryClick () { }, | 144 | moreQueryClick () { }, |
145 | /** | ||
146 | * @description: openDialog | ||
147 | * @param {*} item | ||
148 | * @author: renchao | ||
149 | */ | ||
130 | openDialog (item) { | 150 | openDialog (item) { |
131 | const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness + '&viewtype=3') | 151 | const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness + '&viewtype=3') |
132 | window.open(href, `urlname${item.bsmSlsq}`) | 152 | window.open(href, `urlname${item.bsmSlsq}`) | ... | ... |
... | @@ -80,6 +80,10 @@ | ... | @@ -80,6 +80,10 @@ |
80 | }, | 80 | }, |
81 | methods: { | 81 | methods: { |
82 | // 初始化数据 | 82 | // 初始化数据 |
83 | /** | ||
84 | * @description: 初始化数据 | ||
85 | * @author: renchao | ||
86 | */ | ||
83 | queryClick () { | 87 | queryClick () { |
84 | this.$startLoading(); | 88 | this.$startLoading(); |
85 | getLpZrz({ ...this.queryForm, ...this.pageData }).then((res) => { | 89 | getLpZrz({ ...this.queryForm, ...this.pageData }).then((res) => { |
... | @@ -90,11 +94,27 @@ | ... | @@ -90,11 +94,27 @@ |
90 | } | 94 | } |
91 | }); | 95 | }); |
92 | }, | 96 | }, |
97 | /** | ||
98 | * @description: handleSort | ||
99 | * @param {*} name | ||
100 | * @param {*} sort | ||
101 | * @author: renchao | ||
102 | */ | ||
93 | handleSort (name, sort) { | 103 | handleSort (name, sort) { |
94 | console.log(name, sort); | 104 | console.log(name, sort); |
95 | }, | 105 | }, |
106 | // 高级查询 | ||
107 | /** | ||
108 | * @description: 高级查询 | ||
109 | * @author: renchao | ||
110 | */ | ||
96 | moreQueryClick () { }, | 111 | moreQueryClick () { }, |
97 | //打开楼盘表 | 112 | //打开楼盘表 |
113 | /** | ||
114 | * @description: 打开楼盘表 | ||
115 | * @param {*} scope | ||
116 | * @author: renchao | ||
117 | */ | ||
98 | openlpbClick (scope) { | 118 | openlpbClick (scope) { |
99 | this.$popup('楼盘表', 'lpb/index', { | 119 | this.$popup('楼盘表', 'lpb/index', { |
100 | width: '90%', | 120 | width: '90%', | ... | ... |
... | @@ -81,6 +81,10 @@ | ... | @@ -81,6 +81,10 @@ |
81 | }, | 81 | }, |
82 | methods: { | 82 | methods: { |
83 | // 查询 | 83 | // 查询 |
84 | /** | ||
85 | * @description: 查询 | ||
86 | * @author: renchao | ||
87 | */ | ||
84 | queryClick () { | 88 | queryClick () { |
85 | this.$startLoading() | 89 | this.$startLoading() |
86 | getBdcqzReceiveList({ ...this.queryForm, ...this.pageData }).then(res => { | 90 | getBdcqzReceiveList({ ...this.queryForm, ...this.pageData }).then(res => { |
... | @@ -92,6 +96,11 @@ | ... | @@ -92,6 +96,11 @@ |
92 | } | 96 | } |
93 | }) | 97 | }) |
94 | }, | 98 | }, |
99 | /** | ||
100 | * @description: openDialog | ||
101 | * @param {*} item | ||
102 | * @author: renchao | ||
103 | */ | ||
95 | openDialog (item) { | 104 | openDialog (item) { |
96 | this.$startLoading() | 105 | this.$startLoading() |
97 | bdcqzPreview(item).then(res => { | 106 | bdcqzPreview(item).then(res => { |
... | @@ -101,6 +110,10 @@ | ... | @@ -101,6 +110,10 @@ |
101 | this.$popupDialog("证书内容", "zhcx/zslqcx/components/zslr", { 'previewImage': window.URL.createObjectURL(blob) }) | 110 | this.$popupDialog("证书内容", "zhcx/zslqcx/components/zslr", { 'previewImage': window.URL.createObjectURL(blob) }) |
102 | }) | 111 | }) |
103 | }, | 112 | }, |
113 | /** | ||
114 | * @description: handleClose | ||
115 | * @author: renchao | ||
116 | */ | ||
104 | handleClose () { | 117 | handleClose () { |
105 | this.dialogVisible = false; | 118 | this.dialogVisible = false; |
106 | } | 119 | } | ... | ... |
... | @@ -71,6 +71,10 @@ | ... | @@ -71,6 +71,10 @@ |
71 | }, | 71 | }, |
72 | methods: { | 72 | methods: { |
73 | // 查询 | 73 | // 查询 |
74 | /** | ||
75 | * @description: 查询 | ||
76 | * @author: renchao | ||
77 | */ | ||
74 | queryClick () { | 78 | queryClick () { |
75 | this.$startLoading() | 79 | this.$startLoading() |
76 | getZjgcdyList({ ...this.queryForm, ...this.pageData }).then(res => { | 80 | getZjgcdyList({ ...this.queryForm, ...this.pageData }).then(res => { |
... | @@ -82,6 +86,10 @@ | ... | @@ -82,6 +86,10 @@ |
82 | } | 86 | } |
83 | }) | 87 | }) |
84 | }, | 88 | }, |
89 | /** | ||
90 | * @description: moreQueryClick | ||
91 | * @author: renchao | ||
92 | */ | ||
85 | moreQueryClick () { } | 93 | moreQueryClick () { } |
86 | } | 94 | } |
87 | } | 95 | } | ... | ... |
... | @@ -127,6 +127,11 @@ export default { | ... | @@ -127,6 +127,11 @@ export default { |
127 | this.getDetail(this.formData.bsmZswj) | 127 | this.getDetail(this.formData.bsmZswj) |
128 | }, | 128 | }, |
129 | methods: { | 129 | methods: { |
130 | /** | ||
131 | * @description: getDetail | ||
132 | * @param {*} bsmZswj | ||
133 | * @author: renchao | ||
134 | */ | ||
130 | getDetail (bsmZswj) { | 135 | getDetail (bsmZswj) { |
131 | getZssyqkInfo({ "bsmZswj": bsmZswj }).then(res => { | 136 | getZssyqkInfo({ "bsmZswj": bsmZswj }).then(res => { |
132 | if (res.code == 200) { | 137 | if (res.code == 200) { | ... | ... |
... | @@ -136,6 +136,10 @@ export default { | ... | @@ -136,6 +136,10 @@ export default { |
136 | }, | 136 | }, |
137 | methods: { | 137 | methods: { |
138 | //表单提交 | 138 | //表单提交 |
139 | /** | ||
140 | * @description: 表单提交 | ||
141 | * @author: renchao | ||
142 | */ | ||
139 | submitForm () { | 143 | submitForm () { |
140 | zsff(this.ruleForm).then(res => { | 144 | zsff(this.ruleForm).then(res => { |
141 | if (res.code == 200) { | 145 | if (res.code == 200) { |
... | @@ -150,6 +154,10 @@ export default { | ... | @@ -150,6 +154,10 @@ export default { |
150 | }) | 154 | }) |
151 | }, | 155 | }, |
152 | //序列号获取 | 156 | //序列号获取 |
157 | /** | ||
158 | * @description: 序列号获取 | ||
159 | * @author: renchao | ||
160 | */ | ||
153 | ywhSerial () { | 161 | ywhSerial () { |
154 | getSysSerialSingle(this.ywhQueryForm).then(res => { | 162 | getSysSerialSingle(this.ywhQueryForm).then(res => { |
155 | if (res.code == 200) { | 163 | if (res.code == 200) { |
... | @@ -159,6 +167,11 @@ export default { | ... | @@ -159,6 +167,11 @@ export default { |
159 | }) | 167 | }) |
160 | }, | 168 | }, |
161 | //获取详情信息 | 169 | //获取详情信息 |
170 | /** | ||
171 | * @description: 获取详情信息 | ||
172 | * @param {*} bsmBatch | ||
173 | * @author: renchao | ||
174 | */ | ||
162 | getDetailInfo (bsmBatch) { | 175 | getDetailInfo (bsmBatch) { |
163 | getZsglInfo({ "bsmBatch": bsmBatch }).then(res => { | 176 | getZsglInfo({ "bsmBatch": bsmBatch }).then(res => { |
164 | if (res.code == 200) { | 177 | if (res.code == 200) { |
... | @@ -174,6 +187,10 @@ export default { | ... | @@ -174,6 +187,10 @@ export default { |
174 | }) | 187 | }) |
175 | }, | 188 | }, |
176 | //初始化开始序列号 | 189 | //初始化开始序列号 |
190 | /** | ||
191 | * @description: 初始化开始序列号 | ||
192 | * @author: renchao | ||
193 | */ | ||
177 | initStartNo () { | 194 | initStartNo () { |
178 | getZsStartNo().then(res => { | 195 | getZsStartNo().then(res => { |
179 | if (res.code == 200) { | 196 | if (res.code == 200) { |
... | @@ -183,6 +200,11 @@ export default { | ... | @@ -183,6 +200,11 @@ export default { |
183 | }) | 200 | }) |
184 | }, | 201 | }, |
185 | //印刷序列号处理 | 202 | //印刷序列号处理 |
203 | /** | ||
204 | * @description: 印刷序列号处理 | ||
205 | * @param {*} item | ||
206 | * @author: renchao | ||
207 | */ | ||
186 | ysxlhDeal (item) { | 208 | ysxlhDeal (item) { |
187 | if (item.bs) { | 209 | if (item.bs) { |
188 | //存在本数 | 210 | //存在本数 |
... | @@ -203,6 +225,13 @@ export default { | ... | @@ -203,6 +225,13 @@ export default { |
203 | } | 225 | } |
204 | }, | 226 | }, |
205 | //更新表单数据 | 227 | //更新表单数据 |
228 | /** | ||
229 | * @description: 更新表单数据 | ||
230 | * @param {*} endno | ||
231 | * @param {*} bookNumber | ||
232 | * @param {*} item | ||
233 | * @author: renchao | ||
234 | */ | ||
206 | updateRuleForm (endno, bookNumber, item) { | 235 | updateRuleForm (endno, bookNumber, item) { |
207 | if (item.zslx == 'zs') { | 236 | if (item.zslx == 'zs') { |
208 | this.ruleForm.zsstarno = item.ksysxlh; | 237 | this.ruleForm.zsstarno = item.ksysxlh; |
... | @@ -214,6 +243,10 @@ export default { | ... | @@ -214,6 +243,10 @@ export default { |
214 | this.ruleForm.zmnum = bookNumber; | 243 | this.ruleForm.zmnum = bookNumber; |
215 | } | 244 | } |
216 | }, | 245 | }, |
246 | /** | ||
247 | * @description: resetTableFields | ||
248 | * @author: renchao | ||
249 | */ | ||
217 | resetTableFields () { | 250 | resetTableFields () { |
218 | this.tableForm = [ | 251 | this.tableForm = [ |
219 | { | 252 | { |
... | @@ -232,6 +265,10 @@ export default { | ... | @@ -232,6 +265,10 @@ export default { |
232 | } | 265 | } |
233 | ] | 266 | ] |
234 | }, | 267 | }, |
268 | /** | ||
269 | * @description: closeDialog | ||
270 | * @author: renchao | ||
271 | */ | ||
235 | closeDialog () { | 272 | closeDialog () { |
236 | this.$popupCacel() | 273 | this.$popupCacel() |
237 | this.$refs['ruleForm'].resetFields(); | 274 | this.$refs['ruleForm'].resetFields(); | ... | ... |
... | @@ -90,11 +90,20 @@ export default { | ... | @@ -90,11 +90,20 @@ export default { |
90 | }, | 90 | }, |
91 | methods: { | 91 | methods: { |
92 | // 查看弹框 | 92 | // 查看弹框 |
93 | /** | ||
94 | * @description: 查看弹框 | ||
95 | * @param {*} bsmBatch | ||
96 | * @author: renchao | ||
97 | */ | ||
93 | openDialog (bsmBatch) { | 98 | openDialog (bsmBatch) { |
94 | this.$popupDialog("证书分发", "zsgl/zsff/components/addDialog", { | 99 | this.$popupDialog("证书分发", "zsgl/zsff/components/addDialog", { |
95 | bsmBatch: bsmBatch | 100 | bsmBatch: bsmBatch |
96 | }, "50%") | 101 | }, "50%") |
97 | }, | 102 | }, |
103 | /** | ||
104 | * @description: queryClick | ||
105 | * @author: renchao | ||
106 | */ | ||
98 | queryClick () { | 107 | queryClick () { |
99 | getZsglffList({ ...this.ruleForm, ...this.pageData }).then(res => { | 108 | getZsglffList({ ...this.ruleForm, ...this.pageData }).then(res => { |
100 | if (res.code === 200) { | 109 | if (res.code === 200) { |
... | @@ -105,6 +114,11 @@ export default { | ... | @@ -105,6 +114,11 @@ export default { |
105 | }) | 114 | }) |
106 | }, | 115 | }, |
107 | //确定证书分发 | 116 | //确定证书分发 |
117 | /** | ||
118 | * @description: 确定证书分发 | ||
119 | * @param {*} item | ||
120 | * @author: renchao | ||
121 | */ | ||
108 | confrimVerify (item) { | 122 | confrimVerify (item) { |
109 | this.$confirm('是否确定分发', '提示', { | 123 | this.$confirm('是否确定分发', '提示', { |
110 | confirmButtonText: '确定', | 124 | confirmButtonText: '确定', |
... | @@ -127,6 +141,11 @@ export default { | ... | @@ -127,6 +141,11 @@ export default { |
127 | }); | 141 | }); |
128 | }, | 142 | }, |
129 | //删除证书分发数据 | 143 | //删除证书分发数据 |
144 | /** | ||
145 | * @description: 删除证书分发数据 | ||
146 | * @param {*} item | ||
147 | * @author: renchao | ||
148 | */ | ||
130 | delZsff (item) { | 149 | delZsff (item) { |
131 | this.$confirm('确定要删除吗, 是否继续?', '提示', { | 150 | this.$confirm('确定要删除吗, 是否继续?', '提示', { |
132 | confirmButtonText: '确定', | 151 | confirmButtonText: '确定', | ... | ... |
... | @@ -142,6 +142,10 @@ export default { | ... | @@ -142,6 +142,10 @@ export default { |
142 | }, | 142 | }, |
143 | methods: { | 143 | methods: { |
144 | //表单提交 | 144 | //表单提交 |
145 | /** | ||
146 | * @description: 表单提交 | ||
147 | * @author: renchao | ||
148 | */ | ||
145 | submitForm () { | 149 | submitForm () { |
146 | this.tableForm.forEach((item, index) => { | 150 | this.tableForm.forEach((item, index) => { |
147 | if (item.bs < 0) { | 151 | if (item.bs < 0) { |
... | @@ -161,6 +165,10 @@ export default { | ... | @@ -161,6 +165,10 @@ export default { |
161 | }) | 165 | }) |
162 | }, | 166 | }, |
163 | //序列号获取 | 167 | //序列号获取 |
168 | /** | ||
169 | * @description: 序列号获取 | ||
170 | * @author: renchao | ||
171 | */ | ||
164 | ywhSerial () { | 172 | ywhSerial () { |
165 | getSysSerialSingle(this.ywhQueryForm).then(res => { | 173 | getSysSerialSingle(this.ywhQueryForm).then(res => { |
166 | if (res.code == 200) { | 174 | if (res.code == 200) { |
... | @@ -170,6 +178,11 @@ export default { | ... | @@ -170,6 +178,11 @@ export default { |
170 | }) | 178 | }) |
171 | }, | 179 | }, |
172 | //获取详情信息 | 180 | //获取详情信息 |
181 | /** | ||
182 | * @description: 获取详情信息 | ||
183 | * @param {*} bsmBatch | ||
184 | * @author: renchao | ||
185 | */ | ||
173 | getDetailInfo (bsmBatch) { | 186 | getDetailInfo (bsmBatch) { |
174 | getZsglInfo({ "bsmBatch": bsmBatch }).then(res => { | 187 | getZsglInfo({ "bsmBatch": bsmBatch }).then(res => { |
175 | if (res.code == 200) { | 188 | if (res.code == 200) { |
... | @@ -185,6 +198,11 @@ export default { | ... | @@ -185,6 +198,11 @@ export default { |
185 | }) | 198 | }) |
186 | }, | 199 | }, |
187 | //印刷序列号处理 | 200 | //印刷序列号处理 |
201 | /** | ||
202 | * @description: 印刷序列号处理 | ||
203 | * @param {*} item | ||
204 | * @author: renchao | ||
205 | */ | ||
188 | ysxlhDeal (item) { | 206 | ysxlhDeal (item) { |
189 | if (item.ksysxlh && item.jsysxlh) { | 207 | if (item.ksysxlh && item.jsysxlh) { |
190 | if (item.ksysxlh.length == item.jsysxlh.length) { | 208 | if (item.ksysxlh.length == item.jsysxlh.length) { |
... | @@ -222,6 +240,10 @@ export default { | ... | @@ -222,6 +240,10 @@ export default { |
222 | } | 240 | } |
223 | } | 241 | } |
224 | }, | 242 | }, |
243 | /** | ||
244 | * @description: resetTableFields | ||
245 | * @author: renchao | ||
246 | */ | ||
225 | resetTableFields () { | 247 | resetTableFields () { |
226 | this.tableForm = [ | 248 | this.tableForm = [ |
227 | { | 249 | { |
... | @@ -240,6 +262,10 @@ export default { | ... | @@ -240,6 +262,10 @@ export default { |
240 | } | 262 | } |
241 | ] | 263 | ] |
242 | }, | 264 | }, |
265 | /** | ||
266 | * @description: closeDialog | ||
267 | * @author: renchao | ||
268 | */ | ||
243 | closeDialog () { | 269 | closeDialog () { |
244 | this.$popupCacel() | 270 | this.$popupCacel() |
245 | this.$refs['ruleForm'].resetFields(); | 271 | this.$refs['ruleForm'].resetFields(); | ... | ... |
... | @@ -87,11 +87,20 @@ export default { | ... | @@ -87,11 +87,20 @@ export default { |
87 | }, | 87 | }, |
88 | methods: { | 88 | methods: { |
89 | // 查看弹框 | 89 | // 查看弹框 |
90 | /** | ||
91 | * @description: 查看弹框 | ||
92 | * @param {*} bsmBatch | ||
93 | * @author: renchao | ||
94 | */ | ||
90 | openDialog (bsmBatch) { | 95 | openDialog (bsmBatch) { |
91 | this.$popupDialog("证书入库", "zsgl/zsrk/components/addDialog", { | 96 | this.$popupDialog("证书入库", "zsgl/zsrk/components/addDialog", { |
92 | bsmBatch: bsmBatch | 97 | bsmBatch: bsmBatch |
93 | }, "50%") | 98 | }, "50%") |
94 | }, | 99 | }, |
100 | /** | ||
101 | * @description: queryClick | ||
102 | * @author: renchao | ||
103 | */ | ||
95 | queryClick () { | 104 | queryClick () { |
96 | getZsglrkList({ ...this.ruleForm, ...this.pageData }).then(res => { | 105 | getZsglrkList({ ...this.ruleForm, ...this.pageData }).then(res => { |
97 | if (res.code === 200) { | 106 | if (res.code === 200) { |
... | @@ -102,6 +111,11 @@ export default { | ... | @@ -102,6 +111,11 @@ export default { |
102 | }) | 111 | }) |
103 | }, | 112 | }, |
104 | //删除证书入库数据 | 113 | //删除证书入库数据 |
114 | /** | ||
115 | * @description: 删除证书入库数据 | ||
116 | * @param {*} item | ||
117 | * @author: renchao | ||
118 | */ | ||
105 | delZsrk (item) { | 119 | delZsrk (item) { |
106 | this.$confirm('确定要删除吗, 是否继续?', '提示', { | 120 | this.$confirm('确定要删除吗, 是否继续?', '提示', { |
107 | confirmButtonText: '确定', | 121 | confirmButtonText: '确定', |
... | @@ -125,6 +139,11 @@ export default { | ... | @@ -125,6 +139,11 @@ export default { |
125 | }); | 139 | }); |
126 | }, | 140 | }, |
127 | //审核证书入库数据 | 141 | //审核证书入库数据 |
142 | /** | ||
143 | * @description: 审核证书入库数据 | ||
144 | * @param {*} item | ||
145 | * @author: renchao | ||
146 | */ | ||
128 | confrimVerify (item) { | 147 | confrimVerify (item) { |
129 | this.$confirm('审核是否通过', '提示', { | 148 | this.$confirm('审核是否通过', '提示', { |
130 | confirmButtonText: '确定', | 149 | confirmButtonText: '确定', | ... | ... |
... | @@ -76,6 +76,10 @@ export default { | ... | @@ -76,6 +76,10 @@ export default { |
76 | }; | 76 | }; |
77 | }, | 77 | }, |
78 | methods: { | 78 | methods: { |
79 | /** | ||
80 | * @description: queryClick | ||
81 | * @author: renchao | ||
82 | */ | ||
79 | queryClick () { | 83 | queryClick () { |
80 | getZssyqkList({ ...this.ruleForm, ...this.pageData }).then(res => { | 84 | getZssyqkList({ ...this.ruleForm, ...this.pageData }).then(res => { |
81 | if (res.code === 200) { | 85 | if (res.code === 200) { |
... | @@ -86,6 +90,11 @@ export default { | ... | @@ -86,6 +90,11 @@ export default { |
86 | }) | 90 | }) |
87 | }, | 91 | }, |
88 | // 查看证书使用情况 | 92 | // 查看证书使用情况 |
93 | /** | ||
94 | * @description: 查看证书使用情况 | ||
95 | * @param {*} item | ||
96 | * @author: renchao | ||
97 | */ | ||
89 | openDialog (item) { | 98 | openDialog (item) { |
90 | this.$popupDialog("证书使用情况", "zsgl/components/viewDialog", { | 99 | this.$popupDialog("证书使用情况", "zsgl/components/viewDialog", { |
91 | bsmZswj: item.bsmZswj | 100 | bsmZswj: item.bsmZswj | ... | ... |
-
Please register or sign in to post a comment