--no commit message
Showing
5 changed files
with
30 additions
and
33 deletions
| ... | @@ -182,7 +182,9 @@ | ... | @@ -182,7 +182,9 @@ |
| 182 | </el-form-item> | 182 | </el-form-item> |
| 183 | </el-col> | 183 | </el-col> |
| 184 | <el-col :span="8"> | 184 | <el-col :span="8"> |
| 185 | <el-form-item label="是否被续封:"> | 185 | <el-form-item label="是否被续封:" |
| 186 | prop="cfdj.sfbxf" | ||
| 187 | :rules="rules.sfbxfrules"> | ||
| 186 | <el-select v-model="ruleForm.cfdj.sfbxf" @change="djlxchange"> | 188 | <el-select v-model="ruleForm.cfdj.sfbxf" @change="djlxchange"> |
| 187 | <el-option | 189 | <el-option |
| 188 | v-for="item in sfbxflist" | 190 | v-for="item in sfbxflist" |
| ... | @@ -473,10 +475,11 @@ export default { | ... | @@ -473,10 +475,11 @@ export default { |
| 473 | bdcqzhrules: [ | 475 | bdcqzhrules: [ |
| 474 | { required: true, message: "不动产登记证明号", trigger: "blur" }, | 476 | { required: true, message: "不动产登记证明号", trigger: "blur" }, |
| 475 | ], | 477 | ], |
| 476 | qxdmrules: [{ required: true, message: "区县代码", trigger: "blur" }], | ||
| 477 | djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }], | 478 | djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }], |
| 478 | dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], | 479 | dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], |
| 479 | djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }], | 480 | djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }], |
| 481 | sfbxfrules: [{ required: true, message: "是否被续封", trigger: "change" }], | ||
| 482 | |||
| 480 | }, | 483 | }, |
| 481 | }; | 484 | }; |
| 482 | }, | 485 | }, | ... | ... |
| ... | @@ -14,8 +14,6 @@ | ... | @@ -14,8 +14,6 @@ |
| 14 | ref="ruleForm" | 14 | ref="ruleForm" |
| 15 | :label-position="flag ? 'top' : ''" | 15 | :label-position="flag ? 'top' : ''" |
| 16 | :inline="flag" | 16 | :inline="flag" |
| 17 | :show-message="false" | ||
| 18 | inline-message | ||
| 19 | label-width="145px" | 17 | label-width="145px" |
| 20 | > | 18 | > |
| 21 | <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> | 19 | <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> |
| ... | @@ -86,8 +84,6 @@ | ... | @@ -86,8 +84,6 @@ |
| 86 | <el-input disabled v-model="ruleForm.qlxx.ssywh"></el-input> | 84 | <el-input disabled v-model="ruleForm.qlxx.ssywh"></el-input> |
| 87 | </el-form-item> | 85 | </el-form-item> |
| 88 | </el-col> | 86 | </el-col> |
| 89 | </el-row> | ||
| 90 | <el-row :gutter="10"> | ||
| 91 | <el-col :span="8"> | 87 | <el-col :span="8"> |
| 92 | <el-form-item label="权利类型:"> | 88 | <el-form-item label="权利类型:"> |
| 93 | <el-input disabled v-model="ruleForm.qlxx.qllxmc"></el-input> | 89 | <el-input disabled v-model="ruleForm.qlxx.qllxmc"></el-input> |
| ... | @@ -298,17 +294,19 @@ | ... | @@ -298,17 +294,19 @@ |
| 298 | <script> | 294 | <script> |
| 299 | import store from "@/store/index.js"; | 295 | import store from "@/store/index.js"; |
| 300 | import { mapGetters } from "vuex"; | 296 | import { mapGetters } from "vuex"; |
| 301 | import { init, save } from "@/api/djbRepair.js"; | 297 | import { init,getSsQlxx, save } from "@/api/djbRepair.js"; |
| 302 | import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable"; | 298 | import qlrCommonTable from "@/views/djbworkflow/components/qlrCommonTable"; |
| 299 | import selectTable from "@/components/selectTable/index.vue"; | ||
| 303 | import tdytTable from "@/views/workflow/components/tdytTable"; | 300 | import tdytTable from "@/views/workflow/components/tdytTable"; |
| 304 | export default { | 301 | export default { |
| 305 | components: { qlrCommonTable, tdytTable }, | 302 | components: { qlrCommonTable, tdytTable,selectTable }, |
| 306 | computed: { | 303 | computed: { |
| 307 | ...mapGetters(["dictData", "flag"]), | 304 | ...mapGetters(["dictData", "flag"]), |
| 308 | // 根据流程判断表单是否为只读 | 305 | // 根据流程判断表单是否为只读 |
| 309 | editDisabled() { | 306 | editDisabled() { |
| 310 | if (!this.ableOperation) { | 307 | if (!this.ableOperation) { |
| 311 | //只读状态 | 308 | //只读状态 |
| 309 | console.log("只读"); | ||
| 312 | return true; | 310 | return true; |
| 313 | } | 311 | } |
| 314 | return false; | 312 | return false; |
| ... | @@ -443,6 +441,10 @@ export default { | ... | @@ -443,6 +441,10 @@ export default { |
| 443 | init(this.propsParam).then((res) => { | 441 | init(this.propsParam).then((res) => { |
| 444 | if (res.code == 200) { | 442 | if (res.code == 200) { |
| 445 | this.ruleForm = res.result; | 443 | this.ruleForm = res.result; |
| 444 | let djlx = this.ruleForm.qlxx.djlx; | ||
| 445 | if (djlx == null || djlx == 100) { | ||
| 446 | this.ssqlxxshow = false; | ||
| 447 | } | ||
| 446 | this.$endLoading(); | 448 | this.$endLoading(); |
| 447 | if (this.ruleForm.tdytqxList.length > 0) { | 449 | if (this.ruleForm.tdytqxList.length > 0) { |
| 448 | this.tdxz = this.ruleForm.tdytqxList[0].qlxzbm; | 450 | this.tdxz = this.ruleForm.tdytqxList[0].qlxzbm; |
| ... | @@ -483,16 +485,7 @@ export default { | ... | @@ -483,16 +485,7 @@ export default { |
| 483 | this.czrOptions = this.ruleForm.qlrData; | 485 | this.czrOptions = this.ruleForm.qlrData; |
| 484 | this.key++; | 486 | this.key++; |
| 485 | }, | 487 | }, |
| 486 | // 更新义务人信息 | 488 | |
| 487 | /** | ||
| 488 | * @description: 更新义务人信息 | ||
| 489 | * @param {*} val | ||
| 490 | * @author: renchao | ||
| 491 | */ | ||
| 492 | upDateYwrxxList(val) { | ||
| 493 | this.ruleForm.ywrData && (this.ruleForm.ywrData = _.cloneDeep(val)); | ||
| 494 | this.key++; | ||
| 495 | }, | ||
| 496 | /** | 489 | /** |
| 497 | * @description: onSubmit | 490 | * @description: onSubmit |
| 498 | * @author: renchao | 491 | * @author: renchao | ... | ... |
| ... | @@ -175,7 +175,7 @@ | ... | @@ -175,7 +175,7 @@ |
| 175 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" | 175 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" |
| 176 | ></el-input> | 176 | ></el-input> |
| 177 | <el-select | 177 | <el-select |
| 178 | v-model="ruleForm.tdsyq.mjdw1" | 178 | v-model="ruleForm.tdsyq.mjdw" |
| 179 | :disabled="!ableOperation" | 179 | :disabled="!ableOperation" |
| 180 | style="width: 20%" | 180 | style="width: 20%" |
| 181 | > | 181 | > |
| ... | @@ -199,7 +199,7 @@ | ... | @@ -199,7 +199,7 @@ |
| 199 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" | 199 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" |
| 200 | ></el-input> | 200 | ></el-input> |
| 201 | <el-select | 201 | <el-select |
| 202 | v-model="ruleForm.tdsyq.mjdw2" | 202 | v-model="ruleForm.tdsyq.mjdw" |
| 203 | :disabled="!ableOperation" | 203 | :disabled="!ableOperation" |
| 204 | style="width: 20%" | 204 | style="width: 20%" |
| 205 | > | 205 | > |
| ... | @@ -223,7 +223,7 @@ | ... | @@ -223,7 +223,7 @@ |
| 223 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" | 223 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" |
| 224 | ></el-input> | 224 | ></el-input> |
| 225 | <el-select | 225 | <el-select |
| 226 | v-model="ruleForm.tdsyq.mjdw3" | 226 | v-model="ruleForm.tdsyq.mjdw" |
| 227 | :disabled="!ableOperation" | 227 | :disabled="!ableOperation" |
| 228 | style="width: 20%" | 228 | style="width: 20%" |
| 229 | > | 229 | > |
| ... | @@ -249,7 +249,7 @@ | ... | @@ -249,7 +249,7 @@ |
| 249 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null" | 249 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null" |
| 250 | ></el-input> | 250 | ></el-input> |
| 251 | <el-select | 251 | <el-select |
| 252 | v-model="ruleForm.tdsyq.mjdw4" | 252 | v-model="ruleForm.tdsyq.mjdw" |
| 253 | :disabled="!ableOperation" | 253 | :disabled="!ableOperation" |
| 254 | style="width: 20%" | 254 | style="width: 20%" |
| 255 | > | 255 | > |
| ... | @@ -273,7 +273,7 @@ | ... | @@ -273,7 +273,7 @@ |
| 273 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" | 273 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" |
| 274 | ></el-input> | 274 | ></el-input> |
| 275 | <el-select | 275 | <el-select |
| 276 | v-model="ruleForm.tdsyq.mjdw5" | 276 | v-model="ruleForm.tdsyq.mjdw" |
| 277 | :disabled="!ableOperation" | 277 | :disabled="!ableOperation" |
| 278 | style="width: 20%" | 278 | style="width: 20%" |
| 279 | > | 279 | > |
| ... | @@ -297,7 +297,7 @@ | ... | @@ -297,7 +297,7 @@ |
| 297 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" | 297 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" |
| 298 | ></el-input> | 298 | ></el-input> |
| 299 | <el-select | 299 | <el-select |
| 300 | v-model="ruleForm.tdsyq.mjdw6" | 300 | v-model="ruleForm.tdsyq.mjdw" |
| 301 | :disabled="!ableOperation" | 301 | :disabled="!ableOperation" |
| 302 | style="width: 20%" | 302 | style="width: 20%" |
| 303 | > | 303 | > |
| ... | @@ -323,7 +323,7 @@ | ... | @@ -323,7 +323,7 @@ |
| 323 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" | 323 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" |
| 324 | ></el-input> | 324 | ></el-input> |
| 325 | <el-select | 325 | <el-select |
| 326 | v-model="ruleForm.tdsyq.mjdw7" | 326 | v-model="ruleForm.tdsyq.mjdw" |
| 327 | :disabled="!ableOperation" | 327 | :disabled="!ableOperation" |
| 328 | style="width: 20%" | 328 | style="width: 20%" |
| 329 | > | 329 | > |
| ... | @@ -422,6 +422,7 @@ export default { | ... | @@ -422,6 +422,7 @@ export default { |
| 422 | editDisabled() { | 422 | editDisabled() { |
| 423 | if (!this.ableOperation) { | 423 | if (!this.ableOperation) { |
| 424 | //只读状态 | 424 | //只读状态 |
| 425 | console.log("只读"); | ||
| 425 | return true; | 426 | return true; |
| 426 | } | 427 | } |
| 427 | return false; | 428 | return false; |
| ... | @@ -598,11 +599,7 @@ export default { | ... | @@ -598,11 +599,7 @@ export default { |
| 598 | this.czrOptions = this.ruleForm.qlrData; | 599 | this.czrOptions = this.ruleForm.qlrData; |
| 599 | this.key++; | 600 | this.key++; |
| 600 | }, | 601 | }, |
| 601 | // // 更新义务人信息 | 602 | |
| 602 | // upDateYwrxxList(val) { | ||
| 603 | // this.ruleForm.ywrData && (this.ruleForm.ywrData = _.cloneDeep(val)); | ||
| 604 | // this.key++; | ||
| 605 | // }, | ||
| 606 | /** | 603 | /** |
| 607 | * @description: onSubmit | 604 | * @description: onSubmit |
| 608 | * @author: renchao | 605 | * @author: renchao |
| ... | @@ -673,6 +670,7 @@ export default { | ... | @@ -673,6 +670,7 @@ export default { |
| 673 | </script> | 670 | </script> |
| 674 | <style scoped lang="scss"> | 671 | <style scoped lang="scss"> |
| 675 | @import "~@/styles/public.scss"; | 672 | @import "~@/styles/public.scss"; |
| 673 | @import "~@/styles/slxx/slxx.scss"; | ||
| 676 | /deep/.el-form { | 674 | /deep/.el-form { |
| 677 | display: flex; | 675 | display: flex; |
| 678 | flex-direction: column; | 676 | flex-direction: column; | ... | ... |
| ... | @@ -17,7 +17,6 @@ import { | ... | @@ -17,7 +17,6 @@ import { |
| 17 | getPrintApplicationInfo, | 17 | getPrintApplicationInfo, |
| 18 | unClaimTask | 18 | unClaimTask |
| 19 | } from "@/api/workFlow.js"; | 19 | } from "@/api/workFlow.js"; |
| 20 | import { mapGetters } from 'vuex' | ||
| 21 | export default { | 20 | export default { |
| 22 | data() { | 21 | data() { |
| 23 | return { | 22 | return { |
| ... | @@ -60,7 +59,7 @@ export default { | ... | @@ -60,7 +59,7 @@ export default { |
| 60 | stepExpandInfo(formdata).then((res) => { | 59 | stepExpandInfo(formdata).then((res) => { |
| 61 | if (res.code === 200) { | 60 | if (res.code === 200) { |
| 62 | this.leftButtonList = res.result.button; | 61 | this.leftButtonList = res.result.button; |
| 63 | if (res.result.properties.length) { | 62 | if (res.result.properties&&res.result.properties.length) { |
| 64 | this.showidea = res.result.properties[0].value | 63 | this.showidea = res.result.properties[0].value |
| 65 | } | 64 | } |
| 66 | 65 | ||
| ... | @@ -73,7 +72,7 @@ export default { | ... | @@ -73,7 +72,7 @@ export default { |
| 73 | this.$refs.Menu.getleftMenubl(); | 72 | this.$refs.Menu.getleftMenubl(); |
| 74 | } else { | 73 | } else { |
| 75 | this.ableOperation = false | 74 | this.ableOperation = false |
| 76 | this.$refs.Menu.getleftMenubl(1); | 75 | this.$refs.Menu.getleftMenubl(); |
| 77 | } | 76 | } |
| 78 | } | 77 | } |
| 79 | }) | 78 | }) | ... | ... |
-
Please register or sign in to post a comment