style:权利人信息
Showing
7 changed files
with
107 additions
and
81 deletions
1 | /* | 1 | /* |
2 | * @Description: 企业银行接口 | 2 | * @Description: 企业银行接口 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-13 17:08:10 | 4 | * @LastEditTime: 2023-09-20 14:49:22 |
5 | */ | 5 | */ |
6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
... | @@ -109,3 +109,19 @@ export function editCompanyMaterialList (data, bsmCompany) { | ... | @@ -109,3 +109,19 @@ export function editCompanyMaterialList (data, bsmCompany) { |
109 | data | 109 | data |
110 | }) | 110 | }) |
111 | } | 111 | } |
112 | |||
113 | /** | ||
114 | * @description: 是否覆盖才材料信息 | ||
115 | * @author: renchao | ||
116 | */ | ||
117 | export function replace (bsmCompany, bsmSldy, bsmSlsq) { | ||
118 | return request({ | ||
119 | url: SERVER.SERVERAPI + '/rest/sys/company/replace', | ||
120 | method: 'get', | ||
121 | params: { | ||
122 | bsmCompany: bsmCompany, | ||
123 | bsmSldy: bsmSldy, | ||
124 | bsmSlsq: bsmSlsq | ||
125 | } | ||
126 | }) | ||
127 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Author: yangwei | 2 | * @Author: yangwei |
3 | * @Date: 2023-02-28 15:47:12 | 3 | * @Date: 2023-02-28 15:47:12 |
4 | * @LastEditors: yangwei | 4 | * @LastEditors: Please set LastEditors |
5 | * @LastEditTime: 2023-09-15 14:52:50 | 5 | * @LastEditTime: 2023-09-20 15:17:07 |
6 | * @FilePath: \bdcdj-web\src\views\lpb\lpbContent\ch.vue | 6 | * @FilePath: \bdcdj-web\src\views\lpb\lpbContent\ch.vue |
7 | * @Description: | 7 | * @Description: |
8 | * | 8 | * |
... | @@ -16,16 +16,14 @@ | ... | @@ -16,16 +16,14 @@ |
16 | border="1" | 16 | border="1" |
17 | cellspacing="0" | 17 | cellspacing="0" |
18 | cellpadding="0" | 18 | cellpadding="0" |
19 | v-show="ch.length" | 19 | v-show="ch.length"> |
20 | > | ||
21 | <tr v-for="(cs, csIndex) in ch" :key="csIndex"> | 20 | <tr v-for="(cs, csIndex) in ch" :key="csIndex"> |
22 | <!-- 显示层数 --> | 21 | <!-- 显示层数 --> |
23 | <td | 22 | <td |
24 | class="floor" | 23 | class="floor" |
25 | ref="cBsm" | 24 | ref="cBsm" |
26 | @contextmenu.prevent="openMenu($event, cs, 'c')" | 25 | @contextmenu.prevent="openMenu($event, cs, 'c')" |
27 | @click="handleClickC($event, cs)" | 26 | @click="handleClickC($event, cs)"> |
28 | > | ||
29 | {{ cs.sjc }}层 | 27 | {{ cs.sjc }}层 |
30 | </td> | 28 | </td> |
31 | <!-- 显示户 --> | 29 | <!-- 显示户 --> |
... | @@ -41,18 +39,11 @@ | ... | @@ -41,18 +39,11 @@ |
41 | :class="hs.select ? 'tdSelect' : ''" | 39 | :class="hs.select ? 'tdSelect' : ''" |
42 | @click="handleClickH($event.target, hs.bsm, hs)" | 40 | @click="handleClickH($event.target, hs.bsm, hs)" |
43 | @dblclick="dbclick(hs.bsm)" | 41 | @dblclick="dbclick(hs.bsm)" |
44 | @contextmenu.prevent="openMenu($event, hs, 'h')" | 42 | @contextmenu.prevent="openMenu($event, hs, 'h')"> |
45 | > | ||
46 | {{ hs.shbw }} | 43 | {{ hs.shbw }} |
47 | <span @click.stop="" class="hqszt lin" v-show="hs.qszt == '0'" | 44 | <span @click.stop="" class="hqszt lin" v-show="hs.qszt == '0'">临</span> |
48 | >临</span | 45 | <span @click.stop="" class="hqszt zheng" v-show="hs.qszt == '1'">正</span> |
49 | > | 46 | <span @click.stop="" class="hqszt xian" v-show="hs.qszt == '2'">现</span> |
50 | <span @click.stop="" class="hqszt zheng" v-show="hs.qszt == '1'" | ||
51 | >正</span | ||
52 | > | ||
53 | <span @click.stop="" class="hqszt xian" v-show="hs.qszt == '2'" | ||
54 | >现</span | ||
55 | > | ||
56 | <ul @click.stop="hDyztClick($event, hs.bsm, hs)" class="dyzt"> | 47 | <ul @click.stop="hDyztClick($event, hs.bsm, hs)" class="dyzt"> |
57 | <li style="background-color: #6edee1" v-show="hs.qqzt == '1'"> | 48 | <li style="background-color: #6edee1" v-show="hs.qqzt == '1'"> |
58 | 确 | 49 | 确 |
... | @@ -80,14 +71,14 @@ | ... | @@ -80,14 +71,14 @@ |
80 | </template> | 71 | </template> |
81 | 72 | ||
82 | <script> | 73 | <script> |
83 | export default { | 74 | export default { |
84 | name: "BdcdjWebCh", | 75 | name: "BdcdjWebCh", |
85 | inject: { | 76 | inject: { |
86 | openMenu:{value:'openMenu',default:null}, | 77 | openMenu: { value: 'openMenu', default: null }, |
87 | selectAll:{value:'selectAll',default:null}, | 78 | selectAll: { value: 'selectAll', default: null }, |
88 | changeChoosedObj:{value:'changeChoosedObj',default:null}, | 79 | changeChoosedObj: { value: 'changeChoosedObj', default: null }, |
89 | clearChangeChoosedObj:{value:'clearChangeChoosedObj',default:null}, | 80 | clearChangeChoosedObj: { value: 'clearChangeChoosedObj', default: null }, |
90 | getBsmList:{value:'getBsmList',default:null} | 81 | getBsmList: { value: 'getBsmList', default: null } |
91 | }, | 82 | }, |
92 | props: { | 83 | props: { |
93 | ch: { | 84 | ch: { |
... | @@ -96,12 +87,12 @@ export default { | ... | @@ -96,12 +87,12 @@ export default { |
96 | return []; | 87 | return []; |
97 | }, | 88 | }, |
98 | }, | 89 | }, |
99 | onlyShow:{ | 90 | onlyShow: { |
100 | type: Boolean, | 91 | type: Boolean, |
101 | default: true, | 92 | default: true, |
102 | } | 93 | } |
103 | }, | 94 | }, |
104 | data() { | 95 | data () { |
105 | return { | 96 | return { |
106 | //选中户bsm合集 | 97 | //选中户bsm合集 |
107 | hbsmList: [], | 98 | hbsmList: [], |
... | @@ -110,17 +101,16 @@ export default { | ... | @@ -110,17 +101,16 @@ export default { |
110 | //区分单双击事件的定时器 | 101 | //区分单双击事件的定时器 |
111 | time: null, | 102 | time: null, |
112 | // 边框颜色 | 103 | // 边框颜色 |
113 | borderColor:'rgb(230, 230, 230)', | 104 | borderColor: 'rgb(230, 230, 230)', |
114 | // 申请单元列表数据 | 105 | // 申请单元列表数据 |
115 | unitIdList:[], | 106 | unitIdList: [], |
116 | // 组件标识 | 107 | // 组件标识 |
117 | compFlag:Math.random() | 108 | compFlag: Math.random() |
118 | }; | 109 | }; |
119 | }, | 110 | }, |
120 | mounted() { | 111 | mounted () { |
121 | // 根据申请单元列表数据处理选中户 | 112 | // 根据申请单元列表数据处理选中户 |
122 | console.log("window.unitData",window.unitData); | 113 | if (window.unitData && window.unitData.length) { |
123 | if(window.unitData && window.unitData.length){ | ||
124 | window.unitData.forEach(e => { | 114 | window.unitData.forEach(e => { |
125 | this.unitIdList.push(e.bdcdyid) | 115 | this.unitIdList.push(e.bdcdyid) |
126 | }) | 116 | }) |
... | @@ -143,7 +133,7 @@ export default { | ... | @@ -143,7 +133,7 @@ export default { |
143 | * @param {*} item | 133 | * @param {*} item |
144 | * @author: renchao | 134 | * @author: renchao |
145 | */ | 135 | */ |
146 | handleClickC(e, item) { | 136 | handleClickC (e, item) { |
147 | if (!this.onlyShow) { | 137 | if (!this.onlyShow) { |
148 | // 判断点击的层是否选中 | 138 | // 判断点击的层是否选中 |
149 | if (e.target.className.indexOf("tdSelect") == -1) { | 139 | if (e.target.className.indexOf("tdSelect") == -1) { |
... | @@ -173,7 +163,7 @@ export default { | ... | @@ -173,7 +163,7 @@ export default { |
173 | * @param {*} hs | 163 | * @param {*} hs |
174 | * @author: renchao | 164 | * @author: renchao |
175 | */ | 165 | */ |
176 | handleClickH(e, bsm, hs) { | 166 | handleClickH (e, bsm, hs) { |
177 | if (!this.onlyShow) { | 167 | if (!this.onlyShow) { |
178 | let self = this; | 168 | let self = this; |
179 | // 开启延时器,200ms的间隔区分单击和双击,解决双击时执行两次单击事件 | 169 | // 开启延时器,200ms的间隔区分单击和双击,解决双击时执行两次单击事件 |
... | @@ -205,7 +195,7 @@ export default { | ... | @@ -205,7 +195,7 @@ export default { |
205 | * @param {*} hs | 195 | * @param {*} hs |
206 | * @author: renchao | 196 | * @author: renchao |
207 | */ | 197 | */ |
208 | hDyztClick(e, bsm, hs) { | 198 | hDyztClick (e, bsm, hs) { |
209 | if (!this.onlyShow) { | 199 | if (!this.onlyShow) { |
210 | this.handleClickH(e.target.parentNode, bsm, hs); | 200 | this.handleClickH(e.target.parentNode, bsm, hs); |
211 | } | 201 | } |
... | @@ -216,7 +206,7 @@ export default { | ... | @@ -216,7 +206,7 @@ export default { |
216 | * @param {*} bsm | 206 | * @param {*} bsm |
217 | * @author: renchao | 207 | * @author: renchao |
218 | */ | 208 | */ |
219 | dbclick(bsm) { | 209 | dbclick (bsm) { |
220 | // clearTimeout(this.time); | 210 | // clearTimeout(this.time); |
221 | }, | 211 | }, |
222 | //幢单元全选/反选 | 212 | //幢单元全选/反选 |
... | @@ -226,7 +216,7 @@ export default { | ... | @@ -226,7 +216,7 @@ export default { |
226 | * @param {*} flag | 216 | * @param {*} flag |
227 | * @author: renchao | 217 | * @author: renchao |
228 | */ | 218 | */ |
229 | zdySelectAll(val,flag) { | 219 | zdySelectAll (val, flag) { |
230 | // 手动点击全部取消选中 | 220 | // 手动点击全部取消选中 |
231 | !flag && this.clearChangeChoosedObj() | 221 | !flag && this.clearChangeChoosedObj() |
232 | this.ch.forEach((c) => { | 222 | this.ch.forEach((c) => { |
... | @@ -249,55 +239,55 @@ export default { | ... | @@ -249,55 +239,55 @@ export default { |
249 | }); | 239 | }); |
250 | }, | 240 | }, |
251 | //清除选中 | 241 | //清除选中 |
252 | clearChoosed(){ | 242 | clearChoosed () { |
253 | //清除选中户 | 243 | //清除选中户 |
254 | this.zdySelectAll(false) | 244 | this.zdySelectAll(false) |
255 | //清除选中层 | 245 | //清除选中层 |
256 | this.cbsmList = []; | 246 | this.cbsmList = []; |
257 | this.$refs.cBsm && this.$refs.cBsm.forEach((item)=>{ | 247 | this.$refs.cBsm && this.$refs.cBsm.forEach((item) => { |
258 | item.className = 'floor' | 248 | item.className = 'floor' |
259 | }) | 249 | }) |
260 | }, | 250 | }, |
261 | }, | 251 | }, |
262 | watch: { | 252 | watch: { |
263 | selectAll: { | 253 | selectAll: { |
264 | handler(val) { | 254 | handler (val) { |
265 | this.zdySelectAll(val.selectAll); | 255 | this.zdySelectAll(val.selectAll); |
266 | val.cancelChoosed && this.clearChoosed() | 256 | val.cancelChoosed && this.clearChoosed() |
267 | }, | 257 | }, |
268 | immediate: true, | 258 | immediate: true, |
269 | deep: true, | 259 | deep: true, |
270 | }, | 260 | }, |
271 | hbsmList(val){ | 261 | hbsmList (val) { |
272 | let list = [] | 262 | let list = [] |
273 | val.length && val.forEach((i)=>{ | 263 | val.length && val.forEach((i) => { |
274 | this.ch.forEach((c) => { | 264 | this.ch.forEach((c) => { |
275 | c.hs.forEach((h) => { | 265 | c.hs.forEach((h) => { |
276 | if (i == h.bsm) { | 266 | if (i == h.bsm) { |
277 | list.push( | 267 | list.push( |
278 | { | 268 | { |
279 | bdcdyh:h.bdcdyh, | 269 | bdcdyh: h.bdcdyh, |
280 | bsm:h.bsm, | 270 | bsm: h.bsm, |
281 | dyhbsm:h.dyhbsm, | 271 | dyhbsm: h.dyhbsm, |
282 | bdcdyid:h.dyhbsm, | 272 | bdcdyid: h.dyhbsm, |
283 | bdcdylx:'7', | 273 | bdcdylx: '7', |
284 | flag:this.compFlag | 274 | flag: this.compFlag |
285 | } | 275 | } |
286 | ) | 276 | ) |
287 | } | 277 | } |
288 | }); | 278 | }); |
289 | }); | 279 | }); |
290 | }) | 280 | }) |
291 | this.getBsmList(list,this.compFlag) | 281 | this.getBsmList(list, this.compFlag) |
292 | }, | 282 | }, |
293 | changeChoosedObj: { | 283 | changeChoosedObj: { |
294 | handler(val) { | 284 | handler (val) { |
295 | this.borderColor = 'rgb(230, 230, 230)'; | 285 | this.borderColor = 'rgb(230, 230, 230)'; |
296 | if (val.bsms.length) { | 286 | if (val.bsms.length) { |
297 | //清除选中户 | 287 | //清除选中户 |
298 | this.zdySelectAll(false,true) | 288 | this.zdySelectAll(false, true) |
299 | this.$refs.hBsm.forEach((item) => { | 289 | this.$refs.hBsm.forEach((item) => { |
300 | val.bsms.forEach((i,ind) => { | 290 | val.bsms.forEach((i, ind) => { |
301 | if (item.dataset.bsm == i) { | 291 | if (item.dataset.bsm == i) { |
302 | if (ind == 0) { | 292 | if (ind == 0) { |
303 | //定位到第一个户所在位置 | 293 | //定位到第一个户所在位置 |
... | @@ -316,11 +306,11 @@ export default { | ... | @@ -316,11 +306,11 @@ export default { |
316 | deep: true, | 306 | deep: true, |
317 | } | 307 | } |
318 | }, | 308 | }, |
319 | }; | 309 | }; |
320 | </script> | 310 | </script> |
321 | 311 | ||
322 | <style lang="scss" scoped> | 312 | <style lang="scss" scoped> |
323 | .ch-wrap { | 313 | .ch-wrap { |
324 | display: flex; | 314 | display: flex; |
325 | flex-direction: column-reverse; | 315 | flex-direction: column-reverse; |
326 | .chTable { | 316 | .chTable { |
... | @@ -392,8 +382,8 @@ export default { | ... | @@ -392,8 +382,8 @@ export default { |
392 | } | 382 | } |
393 | } | 383 | } |
394 | .tdSelect { | 384 | .tdSelect { |
395 | border: 1px solid ; | 385 | border: 1px solid; |
396 | border-color: #5A78DE !important; | 386 | border-color: #5a78de !important; |
397 | background-image: url("./images/tdSelect.png"); | 387 | background-image: url("./images/tdSelect.png"); |
398 | background-repeat: no-repeat; | 388 | background-repeat: no-repeat; |
399 | background-position: right top; | 389 | background-position: right top; |
... | @@ -405,5 +395,5 @@ export default { | ... | @@ -405,5 +395,5 @@ export default { |
405 | } | 395 | } |
406 | } | 396 | } |
407 | } | 397 | } |
408 | } | 398 | } |
409 | </style> | 399 | </style> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-20 10:06:22 | 4 | * @LastEditTime: 2023-09-20 16:07:43 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <dialogBox | 7 | <dialogBox |
... | @@ -286,13 +286,12 @@ | ... | @@ -286,13 +286,12 @@ |
286 | </el-table-column> | 286 | </el-table-column> |
287 | <el-table-column label="操作" width="50"> | 287 | <el-table-column label="操作" width="50"> |
288 | <template slot-scope="scope"> | 288 | <template slot-scope="scope"> |
289 | <el-button type="text" @click="handlesQYSelect(scope.row)">使用</el-button> | 289 | <el-button type="text" @click="handleSelect(scope.row)">使用</el-button> |
290 | </template> | 290 | </template> |
291 | </el-table-column> | 291 | </el-table-column> |
292 | </el-table> | 292 | </el-table> |
293 | <el-pagination background layout="prev, pager, next,total" :total="tableDataQy.total" | 293 | <el-pagination background layout="prev, pager, next,total" :total="tableDataQy.total" |
294 | @current-change="handleQYCurrentChange"></el-pagination> | 294 | @current-change="handleQYCurrentChange"></el-pagination> |
295 | |||
296 | </div> | 295 | </div> |
297 | 296 | ||
298 | <div v-if="activeName==3" class="padding10"> | 297 | <div v-if="activeName==3" class="padding10"> |
... | @@ -327,7 +326,7 @@ | ... | @@ -327,7 +326,7 @@ |
327 | </el-table-column> | 326 | </el-table-column> |
328 | <el-table-column label="操作" width="50"> | 327 | <el-table-column label="操作" width="50"> |
329 | <template slot-scope="scope"> | 328 | <template slot-scope="scope"> |
330 | <el-button type="text" @click="handlesYHSelect(scope.row)">使用</el-button> | 329 | <el-button type="text" @click="handleSelect(scope.row)">使用</el-button> |
331 | </template> | 330 | </template> |
332 | </el-table-column> | 331 | </el-table-column> |
333 | </el-table> | 332 | </el-table> |
... | @@ -341,6 +340,7 @@ | ... | @@ -341,6 +340,7 @@ |
341 | import { mapGetters } from "vuex"; | 340 | import { mapGetters } from "vuex"; |
342 | import store from '@/store/index.js' | 341 | import store from '@/store/index.js' |
343 | import { getUuid } from "@/utils/operation.js" | 342 | import { getUuid } from "@/utils/operation.js" |
343 | import { replace } from "@/api/company.js" | ||
344 | import { getIdCardInfo } from '@/utils/operation.js' | 344 | import { getIdCardInfo } from '@/utils/operation.js' |
345 | import { queryQyByPage, queryYhByPage, addQy } from "@/api/xxba.js"; | 345 | import { queryQyByPage, queryYhByPage, addQy } from "@/api/xxba.js"; |
346 | import { dataYh, dataQy, sendThis } from "../../javascript/addQlrData"; | 346 | import { dataYh, dataQy, sendThis } from "../../javascript/addQlrData"; |
... | @@ -535,9 +535,31 @@ | ... | @@ -535,9 +535,31 @@ |
535 | * @param {*} val | 535 | * @param {*} val |
536 | * @author: renchao | 536 | * @author: renchao |
537 | */ | 537 | */ |
538 | handlesQYSelect (val) { | 538 | handleSelect (val) { |
539 | this.$emit("updateDetail", _.cloneDeep(val)); | 539 | let that = this |
540 | this.$emit("input", false); | 540 | let bsmSldy = window.currentSelect.bsmSldy ? window.currentSelect.bsmSldy : '' |
541 | this.$confirm('是否同步材料信息?', '提示', { | ||
542 | confirmButtonText: '确定', | ||
543 | cancelButtonText: '取消', | ||
544 | }).then(() => { | ||
545 | replace(val.bsmCompany, this.$route.query.bsmSlsq, bsmSldy).then(res => { | ||
546 | that.$emit("updateDetail", _.cloneDeep(val)); | ||
547 | that.$emit("input", false); | ||
548 | if (res.code == 200) { | ||
549 | that.$message({ | ||
550 | type: 'success', | ||
551 | message: '同步成功!' | ||
552 | }) | ||
553 | } else { | ||
554 | this.$message.error(res.message); | ||
555 | } | ||
556 | }) | ||
557 | }).catch(() => { | ||
558 | this.$message({ | ||
559 | type: 'info', | ||
560 | message: '已取消' | ||
561 | }) | ||
562 | }) | ||
541 | }, | 563 | }, |
542 | /** | 564 | /** |
543 | * @description: 银行信息搜索 | 565 | * @description: 银行信息搜索 |
... | @@ -570,15 +592,6 @@ | ... | @@ -570,15 +592,6 @@ |
570 | this.handleSearchQY() | 592 | this.handleSearchQY() |
571 | }, | 593 | }, |
572 | /** | 594 | /** |
573 | * @description: handlesYHSelect | ||
574 | * @param {*} val | ||
575 | * @author: renchao | ||
576 | */ | ||
577 | handlesYHSelect (val) { | ||
578 | this.$emit("updateDetail", _.cloneDeep(val)); | ||
579 | this.$emit("input", false); | ||
580 | }, | ||
581 | /** | ||
582 | * @description: 身份证打卡器 | 595 | * @description: 身份证打卡器 |
583 | * @author: renchao | 596 | * @author: renchao |
584 | */ | 597 | */ |
... | @@ -610,7 +623,9 @@ | ... | @@ -610,7 +623,9 @@ |
610 | */ | 623 | */ |
611 | closeDialog () { | 624 | closeDialog () { |
612 | this.$emit("input", false); | 625 | this.$emit("input", false); |
626 | this.$nextTick(() => { | ||
613 | this.$refs["ruleForm"].resetFields(); | 627 | this.$refs["ruleForm"].resetFields(); |
628 | }) | ||
614 | }, | 629 | }, |
615 | /** | 630 | /** |
616 | * @description: submitForm | 631 | * @description: submitForm | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: workFrame左侧菜单列表-普通 | 2 | * @Description: workFrame左侧菜单列表-普通 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-19 16:13:24 | 4 | * @LastEditTime: 2023-09-20 15:46:25 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
... | @@ -209,6 +209,7 @@ | ... | @@ -209,6 +209,7 @@ |
209 | * @author: renchao | 209 | * @author: renchao |
210 | */ | 210 | */ |
211 | batchUnitClick () { | 211 | batchUnitClick () { |
212 | window.currentSelect = {} | ||
212 | this.currentSelectProps.batchOperation = true; | 213 | this.currentSelectProps.batchOperation = true; |
213 | this.activeIndex = "-1"; | 214 | this.activeIndex = "-1"; |
214 | this.$parent.stepForm(0); | 215 | this.$parent.stepForm(0); |
... | @@ -230,6 +231,7 @@ | ... | @@ -230,6 +231,7 @@ |
230 | * @author: renchao | 231 | * @author: renchao |
231 | */ | 232 | */ |
232 | unitClick (index) { | 233 | unitClick (index) { |
234 | window.currentSelect = this.unitData[index] | ||
233 | if (this.unitData.length == 0) return | 235 | if (this.unitData.length == 0) return |
234 | this.currentSelectProps = this.unitData[index]; | 236 | this.currentSelectProps = this.unitData[index]; |
235 | this.currentSelectProps.batchOperation = false; | 237 | this.currentSelectProps.batchOperation = false; | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: workFrame左侧菜单列表-分割 | 2 | * @Description: workFrame左侧菜单列表-分割 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-19 16:15:15 | 4 | * @LastEditTime: 2023-09-20 15:33:05 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
... | @@ -218,6 +218,7 @@ | ... | @@ -218,6 +218,7 @@ |
218 | * @author: renchao | 218 | * @author: renchao |
219 | */ | 219 | */ |
220 | unitClick (index) { | 220 | unitClick (index) { |
221 | window.currentSelect = this.unitData[index] | ||
221 | this.activeHIndex = '-1' | 222 | this.activeHIndex = '-1' |
222 | this.currentSelectProps = this.aroundUnitData[index]; | 223 | this.currentSelectProps = this.aroundUnitData[index]; |
223 | this.currentSelectProps.issave = '1' | 224 | this.currentSelectProps.issave = '1' |
... | @@ -234,6 +235,7 @@ | ... | @@ -234,6 +235,7 @@ |
234 | * @author: renchao | 235 | * @author: renchao |
235 | */ | 236 | */ |
236 | handleAfterunitClick (index) { | 237 | handleAfterunitClick (index) { |
238 | window.currentSelect = this.unitData[index] | ||
237 | this.activeIndex = '-1' | 239 | this.activeIndex = '-1' |
238 | this.currentSelectProps = this.afterUnitData[index]; | 240 | this.currentSelectProps = this.afterUnitData[index]; |
239 | this.currentSelectProps.batchOperation = false; | 241 | this.currentSelectProps.batchOperation = false; | ... | ... |
... | @@ -204,7 +204,6 @@ | ... | @@ -204,7 +204,6 @@ |
204 | </el-radio-group> | 204 | </el-radio-group> |
205 | </el-form-item> | 205 | </el-form-item> |
206 | </el-col> | 206 | </el-col> |
207 | |||
208 | <el-col :span="5" v-show="ruleForm.sldyList[0].gyfs != '0'"> | 207 | <el-col :span="5" v-show="ruleForm.sldyList[0].gyfs != '0'"> |
209 | <el-form-item label="是否分别持证:"> | 208 | <el-form-item label="是否分别持证:"> |
210 | <el-radio-group | 209 | <el-radio-group |
... | @@ -373,7 +372,7 @@ | ... | @@ -373,7 +372,7 @@ |
373 | if (this.ruleForm.qlrList.length > 1) { | 372 | if (this.ruleForm.qlrList.length > 1) { |
374 | this.$message({ | 373 | this.$message({ |
375 | showClose: true, | 374 | showClose: true, |
376 | message: "共有方式:单独所有,权利人只能是一个人", | 375 | message: "共有方式:单独所有,抵押权人只能是一个人", |
377 | type: "error", | 376 | type: "error", |
378 | }); | 377 | }); |
379 | return false; | 378 | return false; |
... | @@ -384,7 +383,7 @@ | ... | @@ -384,7 +383,7 @@ |
384 | this.$message({ | 383 | this.$message({ |
385 | showClose: true, | 384 | showClose: true, |
386 | message: | 385 | message: |
387 | "共有方式:共同所有,按份所有,其他所有,权利人必须是两个以上", | 386 | "共有方式:共同所有,按份所有,其他所有,抵押权人必须是两个以上", |
388 | type: "error", | 387 | type: "error", |
389 | }); | 388 | }); |
390 | return false; | 389 | return false; |
... | @@ -439,7 +438,7 @@ | ... | @@ -439,7 +438,7 @@ |
439 | this.czr = ""; | 438 | this.czr = ""; |
440 | }, | 439 | }, |
441 | /** | 440 | /** |
442 | * @description: 更新权利人信息 | 441 | * @description: 更新抵押权人信息 |
443 | * @param {*} val | 442 | * @param {*} val |
444 | * @author: renchao | 443 | * @author: renchao |
445 | */ | 444 | */ | ... | ... |
... | @@ -143,10 +143,11 @@ | ... | @@ -143,10 +143,11 @@ |
143 | <el-row :gutter="10"> | 143 | <el-row :gutter="10"> |
144 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1"> | 144 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1"> |
145 | <el-form-item label="被担保主债权数额:"> | 145 | <el-form-item label="被担保主债权数额:"> |
146 | <div style="display:flex"> | ||
146 | <el-input | 147 | <el-input |
147 | v-model="ruleForm.diyaq.bdbzzqse" | 148 | v-model="ruleForm.diyaq.bdbzzqse" |
148 | :disabled="!viewEdit"></el-input> | 149 | :disabled="!viewEdit"></el-input> |
149 | <el-select v-model="ruleForm.diyaq.jedw" :disabled="!viewEdit"> | 150 | <el-select style="width: 68px" v-model="ruleForm.diyaq.jedw" :disabled="!viewEdit"> |
150 | <el-option | 151 | <el-option |
151 | v-for="item in dictData['A57']" | 152 | v-for="item in dictData['A57']" |
152 | :key="item.dcode" | 153 | :key="item.dcode" |
... | @@ -154,6 +155,7 @@ | ... | @@ -154,6 +155,7 @@ |
154 | :value="item.dcode"> | 155 | :value="item.dcode"> |
155 | </el-option> | 156 | </el-option> |
156 | </el-select> | 157 | </el-select> |
158 | </div> | ||
157 | </el-form-item> | 159 | </el-form-item> |
158 | </el-col> | 160 | </el-col> |
159 | 161 | ||
... | @@ -229,7 +231,7 @@ | ... | @@ -229,7 +231,7 @@ |
229 | <div class="triangle"></div> | 231 | <div class="triangle"></div> |
230 | </div> | 232 | </div> |
231 | <el-row :gutter="10"> | 233 | <el-row :gutter="10"> |
232 | <el-col :span="14"> | 234 | <el-col :span="12"> |
233 | <el-form-item label="共有方式:"> | 235 | <el-form-item label="共有方式:"> |
234 | <el-radio-group | 236 | <el-radio-group |
235 | :disabled="!viewEdit" | 237 | :disabled="!viewEdit" | ... | ... |
-
Please register or sign in to post a comment