style:权利人信息
Showing
15 changed files
with
102 additions
and
102 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: workFrame左侧菜单列表-普通 | 2 | * @Description: workFrame左侧菜单列表-普通 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 16:02:05 | 4 | * @LastEditTime: 2023-09-26 13:38:19 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
| ... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
| 21 | <div>补录信息</div> | 21 | <div>补录信息</div> |
| 22 | </el-menu-item> | 22 | </el-menu-item> |
| 23 | </el-menu> | 23 | </el-menu> |
| 24 | <el-menu :default-active="activeIndex" @select="unitClick"> | 24 | <el-menu v-model="activeIndex" :default-active="activeIndex" @select="unitClick"> |
| 25 | <el-menu-item | 25 | <el-menu-item |
| 26 | v-for="(item, index) in supplementarylist" | 26 | v-for="(item, index) in supplementarylist" |
| 27 | :index="index.toString()" | 27 | :index="index.toString()" |
| ... | @@ -76,7 +76,6 @@ | ... | @@ -76,7 +76,6 @@ |
| 76 | qllx: this.$route.query.qllx, | 76 | qllx: this.$route.query.qllx, |
| 77 | // 默认选中 | 77 | // 默认选中 |
| 78 | activeIndex: "0", | 78 | activeIndex: "0", |
| 79 | clickindex: "", | ||
| 80 | // 折叠 | 79 | // 折叠 |
| 81 | isShowdrawer: true, | 80 | isShowdrawer: true, |
| 82 | delel: true, | 81 | delel: true, |
| ... | @@ -127,7 +126,7 @@ | ... | @@ -127,7 +126,7 @@ |
| 127 | this.currentSelectProps = res.result[0]; | 126 | this.currentSelectProps = res.result[0]; |
| 128 | this.$emit("getCurrentSelectProps", this.currentSelectProps); | 127 | this.$emit("getCurrentSelectProps", this.currentSelectProps); |
| 129 | } | 128 | } |
| 130 | }); | 129 | }) |
| 131 | } | 130 | } |
| 132 | }, | 131 | }, |
| 133 | /** | 132 | /** |
| ... | @@ -143,11 +142,11 @@ | ... | @@ -143,11 +142,11 @@ |
| 143 | if (item.bsmRepair == row.bsmRepair) { | 142 | if (item.bsmRepair == row.bsmRepair) { |
| 144 | this.activeIndex = index.toString() | 143 | this.activeIndex = index.toString() |
| 145 | // 补录成功后定位到该条记录 | 144 | // 补录成功后定位到该条记录 |
| 146 | this.unitClick(index) | 145 | this.unitClick(this.activeIndex) |
| 147 | } | 146 | } |
| 148 | }) | 147 | }) |
| 149 | if (row == "change") { | 148 | if (row == "change") { |
| 150 | this.unitClick(this.clickindex) | 149 | this.unitClick(0) |
| 151 | } | 150 | } |
| 152 | } else { | 151 | } else { |
| 153 | if (this.supplementarylist.length) { | 152 | if (this.supplementarylist.length) { |
| ... | @@ -177,7 +176,8 @@ | ... | @@ -177,7 +176,8 @@ |
| 177 | * @author: renchao | 176 | * @author: renchao |
| 178 | */ | 177 | */ |
| 179 | unitClick (index) { | 178 | unitClick (index) { |
| 180 | this.clickindex = index | 179 | this.activeIndex = index.toString(); |
| 180 | sessionStorage.setItem('keyPath', this.activeIndex); | ||
| 181 | this.currentSelectProps = this.supplementarylist[index]; | 181 | this.currentSelectProps = this.supplementarylist[index]; |
| 182 | window.currentSelect = this.supplementarylist[index] | 182 | window.currentSelect = this.supplementarylist[index] |
| 183 | this.$emit("getCurrentSelectProps", this.currentSelectProps); | 183 | this.$emit("getCurrentSelectProps", this.currentSelectProps); |
| ... | @@ -187,7 +187,10 @@ | ... | @@ -187,7 +187,10 @@ |
| 187 | * @author: renchao | 187 | * @author: renchao |
| 188 | */ | 188 | */ |
| 189 | djbClick () { | 189 | djbClick () { |
| 190 | this.loadBdcdylist(); | 190 | this.loadBdcdylist() |
| 191 | window.currentSelect = {} | ||
| 192 | this.activeIndex = "-1"; | ||
| 193 | sessionStorage.setItem('keyPath', -1); | ||
| 191 | }, | 194 | }, |
| 192 | /** | 195 | /** |
| 193 | * @description: 删除补录记录 | 196 | * @description: 删除补录记录 | ... | ... |
| ... | @@ -20,7 +20,7 @@ export default { | ... | @@ -20,7 +20,7 @@ export default { |
| 20 | return false; | 20 | return false; |
| 21 | }, | 21 | }, |
| 22 | }, | 22 | }, |
| 23 | data() { | 23 | data () { |
| 24 | return { | 24 | return { |
| 25 | ssqlxxshow: true, | 25 | ssqlxxshow: true, |
| 26 | //表单是否可操作 | 26 | //表单是否可操作 |
| ... | @@ -78,10 +78,10 @@ export default { | ... | @@ -78,10 +78,10 @@ export default { |
| 78 | 78 | ||
| 79 | }; | 79 | }; |
| 80 | }, | 80 | }, |
| 81 | created() { | 81 | created () { |
| 82 | this.loadData(); | 82 | this.loadData(); |
| 83 | }, | 83 | }, |
| 84 | mounted() { | 84 | mounted () { |
| 85 | this.ableOperation = this.$parent.ableOperation; | 85 | this.ableOperation = this.$parent.ableOperation; |
| 86 | }, | 86 | }, |
| 87 | methods: { | 87 | methods: { |
| ... | @@ -90,7 +90,7 @@ export default { | ... | @@ -90,7 +90,7 @@ export default { |
| 90 | * @param {*} val | 90 | * @param {*} val |
| 91 | * @author: renchao | 91 | * @author: renchao |
| 92 | */ | 92 | */ |
| 93 | ztQlxxchange(val) { | 93 | ztQlxxchange (val) { |
| 94 | this.ruleForm.ztQlxx = val; | 94 | this.ruleForm.ztQlxx = val; |
| 95 | }, | 95 | }, |
| 96 | /** | 96 | /** |
| ... | @@ -98,13 +98,13 @@ export default { | ... | @@ -98,13 +98,13 @@ export default { |
| 98 | * @param {*} val | 98 | * @param {*} val |
| 99 | * @author: renchao | 99 | * @author: renchao |
| 100 | */ | 100 | */ |
| 101 | ssQlxxchange(val) { | 101 | ssQlxxchange (val) { |
| 102 | this.ruleForm.ssQlxx = val; | 102 | this.ruleForm.ssQlxx = val; |
| 103 | this.ruleForm.qlxx.ssywh = val.ywh; | 103 | this.ruleForm.qlxx.ssywh = val.ywh; |
| 104 | this.ssQlxxchangediolog(val); | 104 | this.ssQlxxchangediolog(val); |
| 105 | }, | 105 | }, |
| 106 | // 弹框事件 | 106 | // 弹框事件 |
| 107 | ssQlxxchangediolog(val) { | 107 | ssQlxxchangediolog (val) { |
| 108 | this.$confirm("是否将上手权利信息同步到表单", "提示", { | 108 | this.$confirm("是否将上手权利信息同步到表单", "提示", { |
| 109 | iconClass: "el-icon-question", //自定义图标样式 | 109 | iconClass: "el-icon-question", //自定义图标样式 |
| 110 | confirmButtonText: "确认", //确认按钮文字更换 | 110 | confirmButtonText: "确认", //确认按钮文字更换 |
| ... | @@ -166,7 +166,7 @@ export default { | ... | @@ -166,7 +166,7 @@ export default { |
| 166 | * @param {*} val | 166 | * @param {*} val |
| 167 | * @author: renchao | 167 | * @author: renchao |
| 168 | */ | 168 | */ |
| 169 | djlxchange(val) { | 169 | djlxchange (val) { |
| 170 | if (val == null || val == 100) { | 170 | if (val == null || val == 100) { |
| 171 | this.ssqlxxshow = false; | 171 | this.ssqlxxshow = false; |
| 172 | } else { | 172 | } else { |
| ... | @@ -177,30 +177,30 @@ export default { | ... | @@ -177,30 +177,30 @@ export default { |
| 177 | * @description: loadData | 177 | * @description: loadData |
| 178 | * @author: renchao | 178 | * @author: renchao |
| 179 | */ | 179 | */ |
| 180 | loadData() { | 180 | loadData () { |
| 181 | this.$startLoading(); | 181 | this.loading = true |
| 182 | this.propsParam.isEdit = this.$parent.isEdit; | 182 | this.propsParam.isEdit = this.$parent.isEdit; |
| 183 | init(this.propsParam).then((res) => { | 183 | init(this.propsParam).then((res) => { |
| 184 | this.loading = false | ||
| 184 | if (res.code == 200) { | 185 | if (res.code == 200) { |
| 185 | this.ruleForm = res.result; | 186 | this.ruleForm = res.result; |
| 186 | if(this.ruleForm.diyaq){ | 187 | if (this.ruleForm.diyaq) { |
| 187 | this.ruleForm.diyaq.dyfs="1" | 188 | this.ruleForm.diyaq.dyfs = "1" |
| 188 | } | 189 | } |
| 189 | if(this.ruleForm.ygdj){ | 190 | if (this.ruleForm.ygdj) { |
| 190 | this.ruleForm.ygdj.jedw="1" | 191 | this.ruleForm.ygdj.jedw = "1" |
| 191 | this.ruleForm.ygdj.mjdw="1" | 192 | this.ruleForm.ygdj.mjdw = "1" |
| 192 | if(this.ruleForm.ygdj.sfczjzhxz==null){ | 193 | if (this.ruleForm.ygdj.sfczjzhxz == null) { |
| 193 | this.ruleForm.ygdj.sfczjzhxz="1" | 194 | this.ruleForm.ygdj.sfczjzhxz = "1" |
| 194 | } | 195 | } |
| 195 | } | 196 | } |
| 196 | if(this.ruleForm.diyaq){ | 197 | if (this.ruleForm.diyaq) { |
| 197 | this.ruleForm.diyaq.mjdw="1" | 198 | this.ruleForm.diyaq.mjdw = "1" |
| 198 | } | 199 | } |
| 199 | let djlx = this.ruleForm.qlxx.djlx; | 200 | let djlx = this.ruleForm.qlxx.djlx; |
| 200 | if (djlx == null || djlx == 100) { | 201 | if (djlx == null || djlx == 100) { |
| 201 | this.ssqlxxshow = false; | 202 | this.ssqlxxshow = false; |
| 202 | } | 203 | } |
| 203 | this.$endLoading(); | ||
| 204 | this.isShow = true; | 204 | this.isShow = true; |
| 205 | //获取主体信息 | 205 | //获取主体信息 |
| 206 | getSsQlxx({ | 206 | getSsQlxx({ |
| ... | @@ -222,7 +222,9 @@ export default { | ... | @@ -222,7 +222,9 @@ export default { |
| 222 | } | 222 | } |
| 223 | }); | 223 | }); |
| 224 | } | 224 | } |
| 225 | }); | 225 | }).catch(() => { |
| 226 | this.loading = false | ||
| 227 | }) | ||
| 226 | }, | 228 | }, |
| 227 | // 更新土地用途信息 | 229 | // 更新土地用途信息 |
| 228 | /** | 230 | /** |
| ... | @@ -230,7 +232,7 @@ export default { | ... | @@ -230,7 +232,7 @@ export default { |
| 230 | * @param {*} val | 232 | * @param {*} val |
| 231 | * @author: renchao | 233 | * @author: renchao |
| 232 | */ | 234 | */ |
| 233 | upDateTdytxxList(val) { | 235 | upDateTdytxxList (val) { |
| 234 | this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); | 236 | this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); |
| 235 | this.key++; | 237 | this.key++; |
| 236 | }, | 238 | }, |
| ... | @@ -239,7 +241,7 @@ export default { | ... | @@ -239,7 +241,7 @@ export default { |
| 239 | * @param {*} val | 241 | * @param {*} val |
| 240 | * @author: renchao | 242 | * @author: renchao |
| 241 | */ | 243 | */ |
| 242 | upDateQlrxxList(val) { | 244 | upDateQlrxxList (val) { |
| 243 | this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val)); | 245 | this.ruleForm.qlrData && (this.ruleForm.qlrData = _.cloneDeep(val)); |
| 244 | this.czrOptions = this.ruleForm.qlrData; | 246 | this.czrOptions = this.ruleForm.qlrData; |
| 245 | this.key++; | 247 | this.key++; |
| ... | @@ -250,7 +252,7 @@ export default { | ... | @@ -250,7 +252,7 @@ export default { |
| 250 | * @param {*} val | 252 | * @param {*} val |
| 251 | * @author: renchao | 253 | * @author: renchao |
| 252 | */ | 254 | */ |
| 253 | upDateYwrxxList(val) { | 255 | upDateYwrxxList (val) { |
| 254 | this.ruleForm.ywrData && (this.ruleForm.ywrData = _.cloneDeep(val)); | 256 | this.ruleForm.ywrData && (this.ruleForm.ywrData = _.cloneDeep(val)); |
| 255 | this.key++; | 257 | this.key++; |
| 256 | }, | 258 | }, |
| ... | @@ -258,7 +260,7 @@ export default { | ... | @@ -258,7 +260,7 @@ export default { |
| 258 | * @description: onSubmit | 260 | * @description: onSubmit |
| 259 | * @author: renchao | 261 | * @author: renchao |
| 260 | */ | 262 | */ |
| 261 | onSubmit() { | 263 | onSubmit () { |
| 262 | this.$refs.ruleForm.validate((valid) => { | 264 | this.$refs.ruleForm.validate((valid) => { |
| 263 | if (valid) { | 265 | if (valid) { |
| 264 | if (this.ruleForm.qlrData.length == 0) { | 266 | if (this.ruleForm.qlrData.length == 0) { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-30 15:52:11 | 4 | * @LastEditTime: 2023-09-26 13:25:47 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -10,6 +10,7 @@ | ... | @@ -10,6 +10,7 @@ |
| 10 | :model="ruleForm" | 10 | :model="ruleForm" |
| 11 | :rules="rules" | 11 | :rules="rules" |
| 12 | :class="{ readonly: editDisabled }" | 12 | :class="{ readonly: editDisabled }" |
| 13 | v-Loading="loading" | ||
| 13 | ref="ruleForm" | 14 | ref="ruleForm" |
| 14 | :label-position="flag ? 'top' : ''" | 15 | :label-position="flag ? 'top' : ''" |
| 15 | :inline="flag" | 16 | :inline="flag" |
| ... | @@ -491,6 +492,7 @@ | ... | @@ -491,6 +492,7 @@ |
| 491 | 492 | ||
| 492 | data () { | 493 | data () { |
| 493 | return { | 494 | return { |
| 495 | loading: false, | ||
| 494 | mjdw: "1", | 496 | mjdw: "1", |
| 495 | //表单是否可操作 | 497 | //表单是否可操作 |
| 496 | rules: { | 498 | rules: { |
| ... | @@ -525,8 +527,8 @@ | ... | @@ -525,8 +527,8 @@ |
| 525 | ywhrules: [{ required: true, message: "业务号", trigger: "change" }], | 527 | ywhrules: [{ required: true, message: "业务号", trigger: "change" }], |
| 526 | } | 528 | } |
| 527 | } | 529 | } |
| 528 | }, | 530 | } |
| 529 | }; | 531 | } |
| 530 | </script> | 532 | </script> |
| 531 | <style scoped lang="scss"> | 533 | <style scoped lang="scss"> |
| 532 | @import "~@/styles/public.scss"; | 534 | @import "~@/styles/public.scss"; | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-15 09:33:54 | 4 | * @LastEditTime: 2023-09-26 13:26:40 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -10,7 +10,7 @@ | ... | @@ -10,7 +10,7 @@ |
| 10 | :model="ruleForm" | 10 | :model="ruleForm" |
| 11 | :rules="rules" | 11 | :rules="rules" |
| 12 | :class="{ readonly: editDisabled }" | 12 | :class="{ readonly: editDisabled }" |
| 13 | class="loadingtext" | 13 | v-Loading="loading" |
| 14 | ref="ruleForm" | 14 | ref="ruleForm" |
| 15 | :label-position="flag ? 'top' : ''" | 15 | :label-position="flag ? 'top' : ''" |
| 16 | :inline="flag" | 16 | :inline="flag" |
| ... | @@ -433,7 +433,8 @@ | ... | @@ -433,7 +433,8 @@ |
| 433 | components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable }, | 433 | components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable }, |
| 434 | data () { | 434 | data () { |
| 435 | return { | 435 | return { |
| 436 | //传递参数\ | 436 | loading: false, |
| 437 | //传递参数 | ||
| 437 | rules: { | 438 | rules: { |
| 438 | ssQlxxrules: [ | 439 | ssQlxxrules: [ |
| 439 | { required: true, message: "上手权利信息", trigger: "blur" }, | 440 | { required: true, message: "上手权利信息", trigger: "blur" }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-11 16:37:36 | 4 | * @LastEditTime: 2023-09-26 13:34:22 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -10,7 +10,7 @@ | ... | @@ -10,7 +10,7 @@ |
| 10 | :model="ruleForm" | 10 | :model="ruleForm" |
| 11 | :rules="rules" | 11 | :rules="rules" |
| 12 | :class="{ readonly: editDisabled }" | 12 | :class="{ readonly: editDisabled }" |
| 13 | class="loadingtext" | 13 | v-Loading="loading" |
| 14 | ref="ruleForm" | 14 | ref="ruleForm" |
| 15 | :label-position="flag ? 'top' : ''" | 15 | :label-position="flag ? 'top' : ''" |
| 16 | :inline="flag" | 16 | :inline="flag" |
| ... | @@ -441,6 +441,7 @@ | ... | @@ -441,6 +441,7 @@ |
| 441 | components: { qlrCommonTable, tdytTable, selectTable }, | 441 | components: { qlrCommonTable, tdytTable, selectTable }, |
| 442 | data () { | 442 | data () { |
| 443 | return { | 443 | return { |
| 444 | loading: false, | ||
| 444 | mjdw: "1", | 445 | mjdw: "1", |
| 445 | // 键名转换,方法默认是label和children进行树状渲染 | 446 | // 键名转换,方法默认是label和children进行树状渲染 |
| 446 | normalizer (node) { | 447 | normalizer (node) { |
| ... | @@ -573,9 +574,10 @@ | ... | @@ -573,9 +574,10 @@ |
| 573 | * @author: renchao | 574 | * @author: renchao |
| 574 | */ | 575 | */ |
| 575 | loadData () { | 576 | loadData () { |
| 576 | this.$startLoading(); | 577 | this.loading = true |
| 577 | this.propsParam.isEdit = this.$parent.isEdit; | 578 | this.propsParam.isEdit = this.$parent.isEdit; |
| 578 | init(this.propsParam).then((res) => { | 579 | init(this.propsParam).then((res) => { |
| 580 | this.loading = false | ||
| 579 | if (res.code == 200) { | 581 | if (res.code == 200) { |
| 580 | this.ruleForm = res.result; | 582 | this.ruleForm = res.result; |
| 581 | let djlx = this.ruleForm.qlxx.djlx; | 583 | let djlx = this.ruleForm.qlxx.djlx; |
| ... | @@ -583,7 +585,6 @@ | ... | @@ -583,7 +585,6 @@ |
| 583 | this.ssqlxxshow = false; | 585 | this.ssqlxxshow = false; |
| 584 | } | 586 | } |
| 585 | this.ruleForm.fdcq2.jedw = "1"; | 587 | this.ruleForm.fdcq2.jedw = "1"; |
| 586 | this.$endLoading(); | ||
| 587 | this.isShow = true; | 588 | this.isShow = true; |
| 588 | //获取主体信息 | 589 | //获取主体信息 |
| 589 | getSsQlxx({ | 590 | getSsQlxx({ |
| ... | @@ -596,7 +597,9 @@ | ... | @@ -596,7 +597,9 @@ |
| 596 | } | 597 | } |
| 597 | }); | 598 | }); |
| 598 | } | 599 | } |
| 599 | }); | 600 | }).catch(() => { |
| 601 | this.loading = false | ||
| 602 | }) | ||
| 600 | }, | 603 | }, |
| 601 | /** | 604 | /** |
| 602 | * @description: 更新土地用途信息 | 605 | * @description: 更新土地用途信息 | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-22 16:27:45 | 4 | * @LastEditTime: 2023-09-26 13:33:31 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -185,15 +185,6 @@ | ... | @@ -185,15 +185,6 @@ |
| 185 | <el-input v-model="ruleForm.qlxx.bdcqzh"></el-input> | 185 | <el-input v-model="ruleForm.qlxx.bdcqzh"></el-input> |
| 186 | </el-form-item> | 186 | </el-form-item> |
| 187 | </el-col> | 187 | </el-col> |
| 188 | <!-- <el-col :span="8"> | ||
| 189 | <el-form-item | ||
| 190 | label="区县代码:" | ||
| 191 | prop="qlxx.qxdm" | ||
| 192 | :rules="rules.qxdmrules" | ||
| 193 | > | ||
| 194 | <el-input v-model="ruleForm.qlxx.qxdm"></el-input> | ||
| 195 | </el-form-item> | ||
| 196 | </el-col> --> | ||
| 197 | <el-col :span="8"> | 188 | <el-col :span="8"> |
| 198 | <el-form-item | 189 | <el-form-item |
| 199 | label="登记机构:" | 190 | label="登记机构:" |
| ... | @@ -298,6 +289,7 @@ | ... | @@ -298,6 +289,7 @@ |
| 298 | }, | 289 | }, |
| 299 | data () { | 290 | data () { |
| 300 | return { | 291 | return { |
| 292 | loading: false, | ||
| 301 | mjdw: "1", | 293 | mjdw: "1", |
| 302 | ssqlxxshow: true, | 294 | ssqlxxshow: true, |
| 303 | props: { | 295 | props: { |
| ... | @@ -398,7 +390,6 @@ | ... | @@ -398,7 +390,6 @@ |
| 398 | this.ruleForm.qlxx.ssywh = val.ywh; | 390 | this.ruleForm.qlxx.ssywh = val.ywh; |
| 399 | this.ssQlxxchangediolog(val); | 391 | this.ssQlxxchangediolog(val); |
| 400 | }, | 392 | }, |
| 401 | // 弹框事件 | ||
| 402 | /** | 393 | /** |
| 403 | * @description: 弹框事件 | 394 | * @description: 弹框事件 |
| 404 | * @param {*} val | 395 | * @param {*} val |
| ... | @@ -471,7 +462,6 @@ | ... | @@ -471,7 +462,6 @@ |
| 471 | this.ssqlxxshow = true; | 462 | this.ssqlxxshow = true; |
| 472 | } | 463 | } |
| 473 | }, | 464 | }, |
| 474 | // 字典 | ||
| 475 | /** | 465 | /** |
| 476 | * @description: 字典 | 466 | * @description: 字典 |
| 477 | * @param {*} val | 467 | * @param {*} val |
| ... | @@ -485,16 +475,16 @@ | ... | @@ -485,16 +475,16 @@ |
| 485 | * @author: renchao | 475 | * @author: renchao |
| 486 | */ | 476 | */ |
| 487 | loadData () { | 477 | loadData () { |
| 488 | this.$startLoading(); | 478 | this.loading = true |
| 489 | this.propsParam.isEdit = this.$parent.isEdit; | 479 | this.propsParam.isEdit = this.$parent.isEdit; |
| 490 | init(this.propsParam).then((res) => { | 480 | init(this.propsParam).then((res) => { |
| 481 | this.loading = false | ||
| 491 | if (res.code == 200) { | 482 | if (res.code == 200) { |
| 492 | this.ruleForm = res.result; | 483 | this.ruleForm = res.result; |
| 493 | let djlx = this.ruleForm.qlxx.djlx; | 484 | let djlx = this.ruleForm.qlxx.djlx; |
| 494 | if (djlx == null || djlx == 100) { | 485 | if (djlx == null || djlx == 100) { |
| 495 | this.ssqlxxshow = false; | 486 | this.ssqlxxshow = false; |
| 496 | } | 487 | } |
| 497 | this.$endLoading(); | ||
| 498 | if (this.ruleForm.tdytqxList.length > 0) { | 488 | if (this.ruleForm.tdytqxList.length > 0) { |
| 499 | this.tdxz = this.ruleForm.tdytqxList[0].qlxzbm; | 489 | this.tdxz = this.ruleForm.tdytqxList[0].qlxzbm; |
| 500 | } else { | 490 | } else { |
| ... | @@ -512,7 +502,9 @@ | ... | @@ -512,7 +502,9 @@ |
| 512 | } | 502 | } |
| 513 | }); | 503 | }); |
| 514 | } | 504 | } |
| 515 | }); | 505 | }).catch(() => { |
| 506 | this.loading = false | ||
| 507 | }) | ||
| 516 | }, | 508 | }, |
| 517 | /** | 509 | /** |
| 518 | * @description: 更新土地用途信息 | 510 | * @description: 更新土地用途信息 | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-22 16:27:45 | 4 | * @LastEditTime: 2023-09-26 13:27:29 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -10,7 +10,7 @@ | ... | @@ -10,7 +10,7 @@ |
| 10 | :model="ruleForm" | 10 | :model="ruleForm" |
| 11 | :rules="rules" | 11 | :rules="rules" |
| 12 | :class="{ readonly: editDisabled }" | 12 | :class="{ readonly: editDisabled }" |
| 13 | class="loadingtext" | 13 | v-Loading="loading" |
| 14 | ref="ruleForm" | 14 | ref="ruleForm" |
| 15 | :label-position="flag ? 'top' : ''" | 15 | :label-position="flag ? 'top' : ''" |
| 16 | :show-message="false" | 16 | :show-message="false" |
| ... | @@ -388,6 +388,7 @@ | ... | @@ -388,6 +388,7 @@ |
| 388 | }, | 388 | }, |
| 389 | data () { | 389 | data () { |
| 390 | return { | 390 | return { |
| 391 | loading: false, | ||
| 391 | mjdw: "1", | 392 | mjdw: "1", |
| 392 | ssqlxxshow: true, | 393 | ssqlxxshow: true, |
| 393 | props: { | 394 | props: { |
| ... | @@ -577,16 +578,17 @@ | ... | @@ -577,16 +578,17 @@ |
| 577 | * @author: renchao | 578 | * @author: renchao |
| 578 | */ | 579 | */ |
| 579 | loadData () { | 580 | loadData () { |
| 580 | this.$startLoading(); | 581 | this.loading = true |
| 581 | this.propsParam.isEdit = this.$parent.isEdit; | 582 | this.propsParam.isEdit = this.$parent.isEdit; |
| 582 | init(this.propsParam).then((res) => { | 583 | init(this.propsParam).then((res) => { |
| 584 | this.loading = false | ||
| 583 | if (res.code == 200) { | 585 | if (res.code == 200) { |
| 584 | this.ruleForm = res.result; | 586 | this.ruleForm = res.result; |
| 585 | let djlx = this.ruleForm.qlxx.djlx; | 587 | let djlx = this.ruleForm.qlxx.djlx; |
| 586 | if (djlx == null || djlx == 100) { | 588 | if (djlx == null || djlx == 100) { |
| 587 | this.ssqlxxshow = false; | 589 | this.ssqlxxshow = false; |
| 588 | } | 590 | } |
| 589 | this.$endLoading(); | 591 | |
| 590 | if (this.ruleForm.tdytqxList.length > 0) { | 592 | if (this.ruleForm.tdytqxList.length > 0) { |
| 591 | this.tdxz = this.ruleForm.tdytqxList[0].qlxzbm; | 593 | this.tdxz = this.ruleForm.tdytqxList[0].qlxzbm; |
| 592 | } else { | 594 | } else { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-11 16:38:51 | 4 | * @LastEditTime: 2023-09-26 13:28:27 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
| 11 | :rules="rules" | 11 | :rules="rules" |
| 12 | ref="ruleForm" | 12 | ref="ruleForm" |
| 13 | :class="{ readonly: editDisabled }" | 13 | :class="{ readonly: editDisabled }" |
| 14 | class="loadingtext" | 14 | v-Loading="loading" |
| 15 | :show-message="false" | 15 | :show-message="false" |
| 16 | :label-position="flag ? 'top' : ''" | 16 | :label-position="flag ? 'top' : ''" |
| 17 | :inline="flag" | 17 | :inline="flag" |
| ... | @@ -409,6 +409,7 @@ | ... | @@ -409,6 +409,7 @@ |
| 409 | }, | 409 | }, |
| 410 | data () { | 410 | data () { |
| 411 | return { | 411 | return { |
| 412 | loading: false, | ||
| 412 | ssqlxxshow: true, | 413 | ssqlxxshow: true, |
| 413 | props: { | 414 | props: { |
| 414 | label: "bdcqzh", | 415 | label: "bdcqzh", |
| ... | @@ -595,9 +596,10 @@ | ... | @@ -595,9 +596,10 @@ |
| 595 | * @author: renchao | 596 | * @author: renchao |
| 596 | */ | 597 | */ |
| 597 | loadData () { | 598 | loadData () { |
| 598 | this.$startLoading(); | 599 | this.loading = true |
| 599 | this.propsParam.isEdit = this.$parent.isEdit; | 600 | this.propsParam.isEdit = this.$parent.isEdit; |
| 600 | init(this.propsParam).then((res) => { | 601 | init(this.propsParam).then((res) => { |
| 602 | this.loading = false | ||
| 601 | if (res.code == 200) { | 603 | if (res.code == 200) { |
| 602 | this.ruleForm = res.result; | 604 | this.ruleForm = res.result; |
| 603 | this.ruleForm.tdsyq.mjdw = "1" | 605 | this.ruleForm.tdsyq.mjdw = "1" |
| ... | @@ -606,7 +608,6 @@ | ... | @@ -606,7 +608,6 @@ |
| 606 | if (djlx == null || djlx == 100) { | 608 | if (djlx == null || djlx == 100) { |
| 607 | this.ssqlxxshow = false; | 609 | this.ssqlxxshow = false; |
| 608 | } | 610 | } |
| 609 | this.$endLoading(); | ||
| 610 | this.isShow = true; | 611 | this.isShow = true; |
| 611 | //获取主体信息 | 612 | //获取主体信息 |
| 612 | getSsQlxx({ | 613 | getSsQlxx({ | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-25 09:50:48 | 4 | * @LastEditTime: 2023-09-26 13:31:57 |
| 5 | :show-message="false" | 5 | :show-message="false" |
| 6 | --> | 6 | --> |
| 7 | <template> | 7 | <template> |
| ... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
| 11 | :model="ruleForm" | 11 | :model="ruleForm" |
| 12 | :rules="rules" | 12 | :rules="rules" |
| 13 | :class="{ readonly: editDisabled }" | 13 | :class="{ readonly: editDisabled }" |
| 14 | class="loadingtext" | 14 | v-Loading="loading" |
| 15 | ref="ruleForm" | 15 | ref="ruleForm" |
| 16 | :label-position="flag ? 'top' : ''" | 16 | :label-position="flag ? 'top' : ''" |
| 17 | :show-message="false" | 17 | :show-message="false" |
| ... | @@ -491,7 +491,8 @@ | ... | @@ -491,7 +491,8 @@ |
| 491 | components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable }, | 491 | components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable }, |
| 492 | data () { | 492 | data () { |
| 493 | return { | 493 | return { |
| 494 | //传递参数\ | 494 | loading: false, |
| 495 | //传递参数 | ||
| 495 | rules: { | 496 | rules: { |
| 496 | ztQlxxrules: [ | 497 | ztQlxxrules: [ |
| 497 | { required: true, message: "抵押不动产信息", trigger: "blur" }, | 498 | { required: true, message: "抵押不动产信息", trigger: "blur" }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-22 16:28:03 | 4 | * @LastEditTime: 2023-09-26 13:31:31 |
| 5 | :show-message="false" | 5 | :show-message="false" |
| 6 | --> | 6 | --> |
| 7 | <template> | 7 | <template> |
| ... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
| 11 | :model="ruleForm" | 11 | :model="ruleForm" |
| 12 | :rules="rules" | 12 | :rules="rules" |
| 13 | :class="{ readonly: editDisabled }" | 13 | :class="{ readonly: editDisabled }" |
| 14 | class="loadingtext" | 14 | v-Loading="loading" |
| 15 | ref="ruleForm" | 15 | ref="ruleForm" |
| 16 | :label-position="flag ? 'top' : ''" | 16 | :label-position="flag ? 'top' : ''" |
| 17 | :show-message="false" | 17 | :show-message="false" |
| ... | @@ -412,7 +412,8 @@ | ... | @@ -412,7 +412,8 @@ |
| 412 | components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable }, | 412 | components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable }, |
| 413 | data () { | 413 | data () { |
| 414 | return { | 414 | return { |
| 415 | //传递参数\ | 415 | loading: false, |
| 416 | //传递参数 | ||
| 416 | rules: { | 417 | rules: { |
| 417 | ztQlxxrules: [ | 418 | ztQlxxrules: [ |
| 418 | { required: true, message: "抵押不动产信息", trigger: "blur" }, | 419 | { required: true, message: "抵押不动产信息", trigger: "blur" }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-22 16:28:07 | 4 | * @LastEditTime: 2023-09-26 13:31:03 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -10,7 +10,7 @@ | ... | @@ -10,7 +10,7 @@ |
| 10 | :model="ruleForm" | 10 | :model="ruleForm" |
| 11 | :rules="rules" | 11 | :rules="rules" |
| 12 | :class="{ readonly: editDisabled }" | 12 | :class="{ readonly: editDisabled }" |
| 13 | class="loadingtext" | 13 | v-Loading="loading" |
| 14 | ref="ruleForm" | 14 | ref="ruleForm" |
| 15 | :label-position="flag ? 'top' : ''" | 15 | :label-position="flag ? 'top' : ''" |
| 16 | :inline="flag" | 16 | :inline="flag" |
| ... | @@ -365,6 +365,7 @@ | ... | @@ -365,6 +365,7 @@ |
| 365 | components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable }, | 365 | components: { qlrCommonTable, ywrCommonTable, tdytTable, selectTable }, |
| 366 | data () { | 366 | data () { |
| 367 | return { | 367 | return { |
| 368 | loading: false, | ||
| 368 | ssqlxxshow: true, | 369 | ssqlxxshow: true, |
| 369 | //表单是否可操作 | 370 | //表单是否可操作 |
| 370 | propsParam: this.$attrs, | 371 | propsParam: this.$attrs, |
| ... | @@ -384,10 +385,6 @@ | ... | @@ -384,10 +385,6 @@ |
| 384 | ztQlxxrules: [ | 385 | ztQlxxrules: [ |
| 385 | { required: true, message: "抵押不动产信息", trigger: "blur" }, | 386 | { required: true, message: "抵押不动产信息", trigger: "blur" }, |
| 386 | ], | 387 | ], |
| 387 | // bdcqzhrules: [ | ||
| 388 | // { required: true, message: "不动产证号 ", trigger: "blur" }, | ||
| 389 | // ], | ||
| 390 | // qxdmrules: [{ required: true, message: "区县代码", trigger: "blur" }], | ||
| 391 | djjgrules: [{ required: true, message: "登记机构", trigger: "change" }], | 388 | djjgrules: [{ required: true, message: "登记机构", trigger: "change" }], |
| 392 | dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], | 389 | dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], |
| 393 | djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }], | 390 | djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 16:42:53 | 4 | * @LastEditTime: 2023-09-26 14:02:42 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <dialogBox | 7 | <dialogBox |
| ... | @@ -541,6 +541,7 @@ | ... | @@ -541,6 +541,7 @@ |
| 541 | this.$confirm('是否同步材料信息?', '提示', { | 541 | this.$confirm('是否同步材料信息?', '提示', { |
| 542 | confirmButtonText: '确定', | 542 | confirmButtonText: '确定', |
| 543 | cancelButtonText: '取消', | 543 | cancelButtonText: '取消', |
| 544 | distinguishCancelAndClose: true,//区分取消与关闭 | ||
| 544 | }).then(() => { | 545 | }).then(() => { |
| 545 | replace(val.bsmCompany, this.$route.query.bsmSlsq, bsmSldy).then(res => { | 546 | replace(val.bsmCompany, this.$route.query.bsmSlsq, bsmSldy).then(res => { |
| 546 | that.$emit("updateDetail", _.cloneDeep({ ...val, sqrlx: '2' })); | 547 | that.$emit("updateDetail", _.cloneDeep({ ...val, sqrlx: '2' })); |
| ... | @@ -551,14 +552,14 @@ | ... | @@ -551,14 +552,14 @@ |
| 551 | message: '同步成功!' | 552 | message: '同步成功!' |
| 552 | }) | 553 | }) |
| 553 | } else { | 554 | } else { |
| 554 | this.$message.error(res.message); | 555 | that.$message.error(res.message); |
| 555 | } | 556 | } |
| 556 | }) | 557 | }) |
| 557 | }).catch(() => { | 558 | }).catch(action => { |
| 558 | this.$message({ | 559 | if (action == 'cancel') { |
| 559 | type: 'info', | 560 | that.$emit("updateDetail", _.cloneDeep({ ...val, sqrlx: '2' })); |
| 560 | message: '已取消' | 561 | that.$emit("input", false); |
| 561 | }) | 562 | } |
| 562 | }) | 563 | }) |
| 563 | }, | 564 | }, |
| 564 | /** | 565 | /** | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-01 13:35:05 | 4 | * @LastEditTime: 2023-09-26 14:10:02 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div> | 7 | <div> |
| ... | @@ -165,20 +165,25 @@ | ... | @@ -165,20 +165,25 @@ |
| 165 | * @author: renchao | 165 | * @author: renchao |
| 166 | */ | 166 | */ |
| 167 | handleupdateDetail (value) { | 167 | handleupdateDetail (value) { |
| 168 | let that = this | ||
| 168 | let arr = this.tableData.map(item => item.zjh) | 169 | let arr = this.tableData.map(item => item.zjh) |
| 169 | if (this.isaddupdate) { | 170 | if (this.isaddupdate) { |
| 170 | if (!arr.includes(value.zjh)) { | 171 | if (!arr.includes(value.zjh)) { |
| 171 | this.tableDataList[this.tableDataList.length] = _.cloneDeep(value); | 172 | this.tableDataList[this.tableDataList.length] = _.cloneDeep(value); |
| 172 | this.$emit('upDateQlrxxList', this.tableDataList) | 173 | this.$emit('upDateQlrxxList', this.tableDataList) |
| 173 | } else { | 174 | } else { |
| 174 | this.$message.error('证件号不能重复'); | 175 | setTimeout(() => { |
| 176 | that.$message.error('证件号不能重复') | ||
| 177 | }, 1500) | ||
| 175 | } | 178 | } |
| 176 | } else { | 179 | } else { |
| 177 | if (!arr.includes(value.zjh) || this.tableData[this.dataIndex].zjh == value.zjh) { | 180 | if (!arr.includes(value.zjh) || this.tableData[this.dataIndex].zjh == value.zjh) { |
| 178 | this.tableDataList[this.dataIndex] = _.cloneDeep(value); | 181 | this.tableDataList[this.dataIndex] = _.cloneDeep(value); |
| 179 | this.$emit('upDateQlrxxList', this.tableDataList) | 182 | this.$emit('upDateQlrxxList', this.tableDataList) |
| 180 | } else { | 183 | } else { |
| 181 | this.$message.error('证件号不能重复'); | 184 | setTimeout(() => { |
| 185 | that.$message.error('证件号不能重复') | ||
| 186 | }, 1500) | ||
| 182 | } | 187 | } |
| 183 | } | 188 | } |
| 184 | this.key++ | 189 | this.key++ | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 14:59:40 | 4 | * @LastEditTime: 2023-09-26 13:44:11 |
| 5 | */ | 5 | */ |
| 6 | import Router from '@/router' | 6 | import Router from '@/router' |
| 7 | export default { | 7 | export default { |
| 8 | methods: { | 8 | methods: { |
| 9 | //点击行选中或取消复选框 | ||
| 10 | /** | 9 | /** |
| 11 | * @description: 点击行选中或取消复选框 | 10 | * @description: 点击行选中或取消复选框 |
| 12 | * @param {*} row | ||
| 13 | * @param {*} column | ||
| 14 | * @param {*} event | ||
| 15 | * @author: renchao | 11 | * @author: renchao |
| 16 | */ | 12 | */ |
| 17 | handleRowClick (row, column, event) { | 13 | handleRowClick (row, column, event) { |
| ... | @@ -19,21 +15,16 @@ export default { | ... | @@ -19,21 +15,16 @@ export default { |
| 19 | }, | 15 | }, |
| 20 | /** | 16 | /** |
| 21 | * @description: jump | 17 | * @description: jump |
| 22 | * @param {*} data | ||
| 23 | * @param {*} type | ||
| 24 | * @author: renchao | ||
| 25 | */ | 18 | */ |
| 26 | jump (data, type) { | 19 | jump (data, type) { |
| 27 | const { href } = Router.resolve( | 20 | const { href } = Router.resolve( |
| 28 | "/djbworkFrame?bsmSlsq=" + data.bsmSlsq + | 21 | "/djbworkFrame?bsmSlsq=" + data.bsmSlsq + |
| 29 | "&bestepid=" + data.bestepid + '&bsmBusiness=' + '&sqywbm=' + type | 22 | "&bestepid=" + data.bestepid + '&sqywbm=' + type |
| 30 | ); | 23 | ); |
| 31 | window.open(href, "_blank"); | 24 | window.open(href, "_blank"); |
| 32 | this.$popupCacel() | ||
| 33 | }, | 25 | }, |
| 34 | /** | 26 | /** |
| 35 | * @description: queryClick | 27 | * @description: queryClick |
| 36 | * @author: renchao | ||
| 37 | */ | 28 | */ |
| 38 | queryClick () { | 29 | queryClick () { |
| 39 | this.pageData.currentPage = 1 | 30 | this.pageData.currentPage = 1 | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 10:16:16 | 4 | * @LastEditTime: 2023-09-26 13:42:02 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -120,8 +120,6 @@ | ... | @@ -120,8 +120,6 @@ |
| 120 | } | 120 | } |
| 121 | }); | 121 | }); |
| 122 | }, | 122 | }, |
| 123 | // 高级查询 | ||
| 124 | moreQueryClick () { }, | ||
| 125 | /** | 123 | /** |
| 126 | * @description: ywhClick | 124 | * @description: ywhClick |
| 127 | * @param {*} item) | 125 | * @param {*} item) | ... | ... |
-
Please register or sign in to post a comment