Merge branch 'dev'
Showing
12 changed files
with
200 additions
and
78 deletions
... | @@ -145,7 +145,7 @@ | ... | @@ -145,7 +145,7 @@ |
145 | </el-col> | 145 | </el-col> |
146 | <el-col :span="8"> | 146 | <el-col :span="8"> |
147 | <el-form-item label="面积:"> | 147 | <el-form-item label="面积:"> |
148 | <el-input disabled v-model="ruleForm.ztQlxx.mj"></el-input> | 148 | <el-input disabled v-model="ruleForm.ztQlxx.mjmc"></el-input> |
149 | </el-form-item> | 149 | </el-form-item> |
150 | </el-col> | 150 | </el-col> |
151 | <el-col :span="8"> | 151 | <el-col :span="8"> | ... | ... |
... | @@ -46,7 +46,7 @@ | ... | @@ -46,7 +46,7 @@ |
46 | </div> | 46 | </div> |
47 | <el-row :gutter="10"> | 47 | <el-row :gutter="10"> |
48 | <el-col :span="8"> | 48 | <el-col :span="8"> |
49 | <el-form-item label="抵押不动产信息:"> | 49 | <el-form-item label="抵押不动产信息:" prop="ztQlxx.bdcqzh" :rules="rules.ztQlxxrules"> |
50 | <select-table | 50 | <select-table |
51 | v-model="ruleForm.ztQlxx" | 51 | v-model="ruleForm.ztQlxx" |
52 | :table-width="550" | 52 | :table-width="550" |
... | @@ -142,7 +142,7 @@ | ... | @@ -142,7 +142,7 @@ |
142 | </el-col> | 142 | </el-col> |
143 | <el-col :span="8"> | 143 | <el-col :span="8"> |
144 | <el-form-item label="面积:"> | 144 | <el-form-item label="面积:"> |
145 | <el-input disabled v-model="ruleForm.ztQlxx.mj"></el-input> | 145 | <el-input disabled v-model="ruleForm.ztQlxx.mjmc"></el-input> |
146 | </el-form-item> | 146 | </el-form-item> |
147 | </el-col> | 147 | </el-col> |
148 | <el-col :span="8"> | 148 | <el-col :span="8"> |
... | @@ -263,23 +263,25 @@ | ... | @@ -263,23 +263,25 @@ |
263 | <el-row :gutter="10"> | 263 | <el-row :gutter="10"> |
264 | <el-col :span="8"> | 264 | <el-col :span="8"> |
265 | <el-form-item label="抵押面积:"> | 265 | <el-form-item label="抵押面积:"> |
266 | <div style="display: flex"> | 266 | <div class="flex"> |
267 | <el-input | 267 | <el-input |
268 | v-model="ruleForm.diyaq.dymj" | 268 | v-model="ruleForm.diyaq.dymj" |
269 | style="width: 500%" | 269 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
270 | oninput="value=value.replace(/[^\d.]/g,'')" | 270 | <el-select |
271 | ></el-input> | 271 | v-model="ruleForm.diyaq.jedw" |
272 | <el-select v-model="ruleForm.diyaq.mjdw"> | 272 | :disabled="!ableOperation" |
273 | style="width: 20%"> | ||
273 | <el-option | 274 | <el-option |
274 | v-for="item in dictData['A7']" | 275 | v-for="item in dictData['A7']" |
275 | :key="item.dcode" | 276 | :key="item.dcode" |
276 | :label="item.dname" | 277 | :label="item.dname" |
277 | :value="item.dcode" | 278 | :value="item.dcode"> |
278 | ></el-option> | 279 | </el-option> |
279 | </el-select> | 280 | </el-select> |
280 | </div> | 281 | </div> |
281 | </el-form-item> | 282 | </el-form-item> |
282 | </el-col> | 283 | </el-col> |
284 | |||
283 | <el-col :span="8"> | 285 | <el-col :span="8"> |
284 | <el-form-item | 286 | <el-form-item |
285 | label="债务履行起始时间:" | 287 | label="债务履行起始时间:" |
... | @@ -553,6 +555,7 @@ export default { | ... | @@ -553,6 +555,7 @@ export default { |
553 | }, | 555 | }, |
554 | data() { | 556 | data() { |
555 | return { | 557 | return { |
558 | mjdw:"1", | ||
556 | props: { | 559 | props: { |
557 | label: "bdcqzh", | 560 | label: "bdcqzh", |
558 | value: "bdcdyid", | 561 | value: "bdcdyid", |
... | @@ -608,6 +611,9 @@ export default { | ... | @@ -608,6 +611,9 @@ export default { |
608 | ztQlxxList: [], | 611 | ztQlxxList: [], |
609 | ableOperation: false, | 612 | ableOperation: false, |
610 | rules: { | 613 | rules: { |
614 | ztQlxxrules: [ | ||
615 | { required: true, message: "抵押不动产信息", trigger: "change" }, | ||
616 | ], | ||
611 | bdcqzhrules: [ | 617 | bdcqzhrules: [ |
612 | { required: true, message: "不动产登记证明号", trigger: "blur" }, | 618 | { required: true, message: "不动产登记证明号", trigger: "blur" }, |
613 | ], | 619 | ], |
... | @@ -626,10 +632,10 @@ export default { | ... | @@ -626,10 +632,10 @@ export default { |
626 | zxdbrrules: [ | 632 | zxdbrrules: [ |
627 | { required: true, message: "注销登簿人", trigger: "blur" }, | 633 | { required: true, message: "注销登簿人", trigger: "blur" }, |
628 | ], | 634 | ], |
629 | djjgrules: [{ required: true, message: "登记机构", trigger: "blur" }], | 635 | djjgrules: [{ required: true, message: "登记机构", trigger: "change" }], |
630 | dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], | 636 | dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], |
631 | djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }], | 637 | djsjrules: [{ required: true, message: "登记时间", trigger: "blur" }], |
632 | djlxrules: [{ required: true, message: "登记类型", trigger: "blur" }], | 638 | djlxrules: [{ required: true, message: "登记类型", trigger: "change" }], |
633 | }, | 639 | }, |
634 | }; | 640 | }; |
635 | }, | 641 | }, | ... | ... |
... | @@ -198,7 +198,7 @@ | ... | @@ -198,7 +198,7 @@ |
198 | <el-input | 198 | <el-input |
199 | v-model="ruleForm.tdsyq.cdmj" | 199 | v-model="ruleForm.tdsyq.cdmj" |
200 | :disabled="!ableOperation" | 200 | :disabled="!ableOperation" |
201 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" | 201 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null" |
202 | ></el-input> | 202 | ></el-input> |
203 | </el-form-item> | 203 | </el-form-item> |
204 | </el-col> | 204 | </el-col> | ... | ... |
This diff is collapsed.
Click to expand it.
... | @@ -55,8 +55,11 @@ export function getForm(tabName) { | ... | @@ -55,8 +55,11 @@ export function getForm(tabName) { |
55 | case "slxxdyaq": | 55 | case "slxxdyaq": |
56 | form = require("@/views/djbworkflow/djbBook/components/blxxtabs/dyaq.vue"); | 56 | form = require("@/views/djbworkflow/djbBook/components/blxxtabs/dyaq.vue"); |
57 | break; | 57 | break; |
58 | case "slxxygdj": | 58 | case "slxxygdydj": |
59 | form = require("@/views/djbworkflow/djbBook/components/blxxtabs/ygdj.vue"); | 59 | form = require("@/views/djbworkflow/djbBook/components/blxxtabs/ygdydj.vue"); |
60 | break; | ||
61 | case "slxxygmmdj": | ||
62 | form = require("@/views/djbworkflow/djbBook/components/blxxtabs/ygmmdj.vue"); | ||
60 | break; | 63 | break; |
61 | case "slxxyydj": | 64 | case "slxxyydj": |
62 | form = require("@/views/djbworkflow/djbBook/components/blxxtabs/yydj.vue"); | 65 | form = require("@/views/djbworkflow/djbBook/components/blxxtabs/yydj.vue"); | ... | ... |
src/views/registerBook/comparison.vue
0 → 100644
1 | <!-- | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-07-19 09:52:37 | ||
5 | --> | ||
6 | <template> | ||
7 | <div class="djxxTable"> | ||
8 | <div class="tableBox"> | ||
9 | <div class="title"> | ||
10 | {{ title }} | ||
11 | <div class="checkbox"> | ||
12 | <el-radio-group v-model="radio" :change="checkChange()"> | ||
13 | <el-radio :label="1">所有数据</el-radio> | ||
14 | <el-radio :label="2">只展示变化数据</el-radio> | ||
15 | </el-radio-group> | ||
16 | </div> | ||
17 | </div> | ||
18 | <div class="xxTableBox rollTable"> | ||
19 | <table class="xxTable"> | ||
20 | <tr v-for="(item, colindex) in columns" :key="colindex"> | ||
21 | <td> | ||
22 | {{ item.label }} | ||
23 | </td> | ||
24 | <td></td> | ||
25 | <td v-for="count in emptycolNum" :key="~count"></td> | ||
26 | </tr> | ||
27 | </table> | ||
28 | </div> | ||
29 | </div> | ||
30 | </div> | ||
31 | </template> | ||
32 | |||
33 | <script> | ||
34 | import { datas } from "./qlxxFormData.js"; | ||
35 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; | ||
36 | import { getDiyiqList } from "@/api/djbDetail.js"; | ||
37 | export default { | ||
38 | props: { | ||
39 | formData: { | ||
40 | type: Object, | ||
41 | default: {}, | ||
42 | }, | ||
43 | }, | ||
44 | data() { | ||
45 | return { | ||
46 | radio: 1, | ||
47 | title: "变化情况对比", | ||
48 | //列表数据 | ||
49 | tableData: [], | ||
50 | //空列值个数 | ||
51 | emptycolNum: 1, | ||
52 | //列名称对象 | ||
53 | columns: datas.columns().DYIQ, | ||
54 | }; | ||
55 | }, | ||
56 | created() { | ||
57 | console.log("this.formData", this.formData); | ||
58 | }, | ||
59 | methods: { | ||
60 | /** | ||
61 | * @description: checkChange | ||
62 | * @author: renchao | ||
63 | */ | ||
64 | checkChange() { | ||
65 | console.log("ssss",this.radio); | ||
66 | }, | ||
67 | }, | ||
68 | }; | ||
69 | </script> | ||
70 | |||
71 | <style lang="scss" scoped> | ||
72 | @import "./qlxxCommon.scss"; | ||
73 | </style> |
... | @@ -79,6 +79,7 @@ | ... | @@ -79,6 +79,7 @@ |
79 | ywly: "" | 79 | ywly: "" |
80 | } | 80 | } |
81 | if (this.queryForm) { | 81 | if (this.queryForm) { |
82 | this.$startLoading(); | ||
82 | searchTaskToDo({ | 83 | searchTaskToDo({ |
83 | ...this.queryForm, | 84 | ...this.queryForm, |
84 | }).then((res) => { | 85 | }).then((res) => { |
... | @@ -86,6 +87,7 @@ | ... | @@ -86,6 +87,7 @@ |
86 | let { records } = res.result; | 87 | let { records } = res.result; |
87 | 88 | ||
88 | this.loadBdcdylist(records[0].bsmSlsq, records[0].bestepid); | 89 | this.loadBdcdylist(records[0].bsmSlsq, records[0].bestepid); |
90 | this.$endLoading(); | ||
89 | } | 91 | } |
90 | }); | 92 | }); |
91 | } | 93 | } | ... | ... |
... | @@ -94,7 +94,7 @@ | ... | @@ -94,7 +94,7 @@ |
94 | </el-col> | 94 | </el-col> |
95 | <el-col :span="8"> | 95 | <el-col :span="8"> |
96 | <el-form-item label="面积:"> | 96 | <el-form-item label="面积:"> |
97 | <el-input disabled v-model="ruleForm.ztQlxx.mj"></el-input> | 97 | <el-input disabled v-model="ruleForm.ztQlxx.mjmc"></el-input> |
98 | </el-form-item> | 98 | </el-form-item> |
99 | </el-col> | 99 | </el-col> |
100 | <el-col :span="8"> | 100 | <el-col :span="8"> | ... | ... |
1 | 0<!-- | 1 | 0 |
2 | <!-- | ||
2 | * @Description: | 3 | * @Description: |
3 | * @Autor: renchao | 4 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-25 08:59:49 | 5 | * @LastEditTime: 2023-05-25 08:59:49 |
... | @@ -6,8 +7,14 @@ | ... | @@ -6,8 +7,14 @@ |
6 | <template> | 7 | <template> |
7 | <!-- 受理信息 --> | 8 | <!-- 受理信息 --> |
8 | <div class="slxx loadingtext"> | 9 | <div class="slxx loadingtext"> |
9 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" | 10 | <el-form |
10 | :inline="flag" label-width="120px"> | 11 | :model="ruleForm" |
12 | :rules="rules" | ||
13 | ref="ruleForm" | ||
14 | :label-position="flag ? 'top' : ''" | ||
15 | :inline="flag" | ||
16 | label-width="120px" | ||
17 | > | ||
11 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 18 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
12 | <div class="slxx_title title-block"> | 19 | <div class="slxx_title title-block"> |
13 | 受理信息 | 20 | 受理信息 |
... | @@ -47,7 +54,10 @@ | ... | @@ -47,7 +54,10 @@ |
47 | </el-form-item> | 54 | </el-form-item> |
48 | </el-col> | 55 | </el-col> |
49 | </el-row> | 56 | </el-row> |
50 | <div class="slxx_title title-block flex" style="justify-content: space-between;"> | 57 | <div |
58 | class="slxx_title title-block flex" | ||
59 | style="justify-content: space-between" | ||
60 | > | ||
51 | 不动产单元情况 | 61 | 不动产单元情况 |
52 | <el-button @click="compare">变化情况对比+</el-button> | 62 | <el-button @click="compare">变化情况对比+</el-button> |
53 | </div> | 63 | </div> |
... | @@ -88,11 +98,20 @@ | ... | @@ -88,11 +98,20 @@ |
88 | <el-row :gutter="10"> | 98 | <el-row :gutter="10"> |
89 | <el-col :span="8"> | 99 | <el-col :span="8"> |
90 | <el-form-item label="取得价格:"> | 100 | <el-form-item label="取得价格:"> |
91 | <div style="display:flex"> | 101 | <div style="display: flex"> |
92 | <el-input v-model="ruleForm.jsydsyq.qdjg" style="width:500%" oninput="value=value.replace(/[^\d.]/g,'')" | 102 | <el-input |
93 | disabled></el-input> | 103 | v-model="ruleForm.jsydsyq.qdjg" |
104 | style="width: 500%" | ||
105 | oninput="value=value.replace(/[^\d.]/g,'')" | ||
106 | disabled | ||
107 | ></el-input> | ||
94 | <el-select v-model="ruleForm.jsydsyq.jedw" disabled> | 108 | <el-select v-model="ruleForm.jsydsyq.jedw" disabled> |
95 | <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 109 | <el-option |
110 | v-for="item in dictData['A57']" | ||
111 | :key="item.dcode" | ||
112 | :label="item.dname" | ||
113 | :value="item.dcode" | ||
114 | > | ||
96 | </el-option> | 115 | </el-option> |
97 | </el-select> | 116 | </el-select> |
98 | </div> | 117 | </div> |
... | @@ -121,7 +140,11 @@ | ... | @@ -121,7 +140,11 @@ |
121 | <el-row :gutter="10"> | 140 | <el-row :gutter="10"> |
122 | <el-col> | 141 | <el-col> |
123 | <el-form-item label="附记:" prop="fj"> | 142 | <el-form-item label="附记:" prop="fj"> |
124 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="!ableOperation"></el-input> | 143 | <el-input |
144 | type="textarea" | ||
145 | v-model="ruleForm.jsydsyq.fj" | ||
146 | :disabled="!ableOperation" | ||
147 | ></el-input> | ||
125 | </el-form-item> | 148 | </el-form-item> |
126 | </el-col> | 149 | </el-col> |
127 | </el-row> | 150 | </el-row> |
... | @@ -132,7 +155,8 @@ | ... | @@ -132,7 +155,8 @@ |
132 | <tdytTable | 155 | <tdytTable |
133 | :tableData="ruleForm.tdytqxList" | 156 | :tableData="ruleForm.tdytqxList" |
134 | :ableOperation="ableOperation" | 157 | :ableOperation="ableOperation" |
135 | @upDateTdytxxList="upDateTdytxxList" /> | 158 | @upDateTdytxxList="upDateTdytxxList" |
159 | /> | ||
136 | <div class="slxx_title title-block"> | 160 | <div class="slxx_title title-block"> |
137 | 权利人信息 | 161 | 权利人信息 |
138 | <div class="triangle"></div> | 162 | <div class="triangle"></div> |
... | @@ -143,7 +167,10 @@ | ... | @@ -143,7 +167,10 @@ |
143 | <el-row :gutter="10"> | 167 | <el-row :gutter="10"> |
144 | <el-col :span="14"> | 168 | <el-col :span="14"> |
145 | <el-form-item label="共有方式:"> | 169 | <el-form-item label="共有方式:"> |
146 | <el-radio-group :disabled="!ableOperation" v-model="ruleForm.sldy.gyfs"> | 170 | <el-radio-group |
171 | :disabled="!ableOperation" | ||
172 | v-model="ruleForm.sldy.gyfs" | ||
173 | > | ||
147 | <el-radio label="0">单独所有</el-radio> | 174 | <el-radio label="0">单独所有</el-radio> |
148 | <el-radio label="1">共同共有</el-radio> | 175 | <el-radio label="1">共同共有</el-radio> |
149 | <el-radio label="2">按份所有</el-radio> | 176 | <el-radio label="2">按份所有</el-radio> |
... | @@ -153,7 +180,10 @@ | ... | @@ -153,7 +180,10 @@ |
153 | </el-col> | 180 | </el-col> |
154 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 181 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
155 | <el-form-item label="是否分别持证:"> | 182 | <el-form-item label="是否分别持证:"> |
156 | <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation"> | 183 | <el-radio-group |
184 | v-model="ruleForm.sldy.sqfbcz" | ||
185 | :disabled="!ableOperation" | ||
186 | > | ||
157 | <el-radio label="1">是</el-radio> | 187 | <el-radio label="1">是</el-radio> |
158 | <el-radio label="0">否</el-radio> | 188 | <el-radio label="0">否</el-radio> |
159 | </el-radio-group> | 189 | </el-radio-group> |
... | @@ -161,14 +191,28 @@ | ... | @@ -161,14 +191,28 @@ |
161 | </el-col> | 191 | </el-col> |
162 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 192 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
163 | <el-form-item label="持证人:"> | 193 | <el-form-item label="持证人:"> |
164 | <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!ableOperation"> | 194 | <el-select |
165 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 195 | v-model="ruleForm.czr" |
196 | placeholder="持证人" | ||
197 | :disabled="!ableOperation" | ||
198 | > | ||
199 | <el-option | ||
200 | v-for="item in czrOptions" | ||
201 | :key="item.value" | ||
202 | :label="item.label" | ||
203 | :value="item.value" | ||
204 | > | ||
166 | </el-option> | 205 | </el-option> |
167 | </el-select> | 206 | </el-select> |
168 | </el-form-item> | 207 | </el-form-item> |
169 | </el-col> | 208 | </el-col> |
170 | </el-row> | 209 | </el-row> |
171 | <qlrCommonTable :tableData="ruleForm.qlrList" :disabled="!ableOperation" @upDateQlrxxList='upDateQlrxxList' :gyfs="ruleForm.sldy.gyfs" /> | 210 | <qlrCommonTable |
211 | :tableData="ruleForm.qlrList" | ||
212 | :disabled="!ableOperation" | ||
213 | @upDateQlrxxList="upDateQlrxxList" | ||
214 | :gyfs="ruleForm.sldy.gyfs" | ||
215 | /> | ||
172 | <div class="slxx_title title-block"> | 216 | <div class="slxx_title title-block"> |
173 | 登记原因 | 217 | 登记原因 |
174 | <div class="triangle"></div> | 218 | <div class="triangle"></div> |
... | @@ -176,8 +220,12 @@ | ... | @@ -176,8 +220,12 @@ |
176 | <el-row :gutter="10"> | 220 | <el-row :gutter="10"> |
177 | <el-col> | 221 | <el-col> |
178 | <el-form-item label="登记原因:" prop="djyy"> | 222 | <el-form-item label="登记原因:" prop="djyy"> |
179 | <el-input class="textArea" type="textarea" :disabled="!ableOperation" | 223 | <el-input |
180 | v-model="ruleForm.jsydsyq.djyy"> | 224 | class="textArea" |
225 | type="textarea" | ||
226 | :disabled="!ableOperation" | ||
227 | v-model="ruleForm.jsydsyq.djyy" | ||
228 | > | ||
181 | </el-input> | 229 | </el-input> |
182 | </el-form-item> | 230 | </el-form-item> |
183 | </el-col> | 231 | </el-col> |
... | @@ -192,13 +240,13 @@ | ... | @@ -192,13 +240,13 @@ |
192 | </div> | 240 | </div> |
193 | </template> | 241 | </template> |
194 | <script> | 242 | <script> |
195 | import { mapGetters } from "vuex"; | 243 | import { mapGetters } from "vuex"; |
196 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; | 244 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; |
197 | import tdytTable from "@/views/workflow/components/tdytTable"; | 245 | import tdytTable from "@/views/workflow/components/tdytTable"; |
198 | import { Init, saveData } from "@/api/workflow/jsydsyqFlow.js"; | 246 | import { Init, saveData } from "@/api/workflow/jsydsyqFlow.js"; |
199 | export default { | 247 | export default { |
200 | mounted () { | 248 | mounted() { |
201 | this.ableOperation = this.$parent.currentSelectTab.ableOperation | 249 | this.ableOperation = this.$parent.currentSelectTab.ableOperation; |
202 | this.propsParam = this.$attrs; | 250 | this.propsParam = this.$attrs; |
203 | var formdata = new FormData(); | 251 | var formdata = new FormData(); |
204 | this.$startLoading(); | 252 | this.$startLoading(); |
... | @@ -214,9 +262,9 @@ | ... | @@ -214,9 +262,9 @@ |
214 | }, | 262 | }, |
215 | components: { qlrCommonTable, tdytTable }, | 263 | components: { qlrCommonTable, tdytTable }, |
216 | computed: { | 264 | computed: { |
217 | ...mapGetters(["dictData", "flag"]) | 265 | ...mapGetters(["dictData", "flag"]), |
218 | }, | 266 | }, |
219 | data () { | 267 | data() { |
220 | return { | 268 | return { |
221 | //表单是否可操作 | 269 | //表单是否可操作 |
222 | ableOperation: true, | 270 | ableOperation: true, |
... | @@ -226,7 +274,7 @@ | ... | @@ -226,7 +274,7 @@ |
226 | slywxx: {}, | 274 | slywxx: {}, |
227 | qlxx: {}, | 275 | qlxx: {}, |
228 | zdjbxx: {}, | 276 | zdjbxx: {}, |
229 | jsydsyq: {} | 277 | jsydsyq: {}, |
230 | }, | 278 | }, |
231 | //传递参数 | 279 | //传递参数 |
232 | propsParam: {}, | 280 | propsParam: {}, |
... | @@ -240,7 +288,7 @@ | ... | @@ -240,7 +288,7 @@ |
240 | * @param {*} val | 288 | * @param {*} val |
241 | * @author: renchao | 289 | * @author: renchao |
242 | */ | 290 | */ |
243 | upDateTdytxxList (val) { | 291 | upDateTdytxxList(val) { |
244 | this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); | 292 | this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); |
245 | this.key++; | 293 | this.key++; |
246 | }, | 294 | }, |
... | @@ -250,22 +298,22 @@ | ... | @@ -250,22 +298,22 @@ |
250 | * @param {*} val | 298 | * @param {*} val |
251 | * @author: renchao | 299 | * @author: renchao |
252 | */ | 300 | */ |
253 | upDateQlrxxList (val) { | 301 | upDateQlrxxList(val) { |
254 | this.ruleForm.qlrList = _.cloneDeep(val); | 302 | this.ruleForm.qlrList = _.cloneDeep(val); |
255 | }, | 303 | }, |
256 | /** | 304 | /** |
257 | * @description: onSubmit | 305 | * @description: onSubmit |
258 | * @author: renchao | 306 | * @author: renchao |
259 | */ | 307 | */ |
260 | onSubmit () { | 308 | onSubmit() { |
261 | saveData(this.ruleForm).then((res) => { | 309 | saveData(this.ruleForm).then((res) => { |
262 | if (res.code === 200) { | 310 | if (res.code === 200) { |
263 | this.$message({ | 311 | this.$message({ |
264 | showClose: true, | 312 | showClose: true, |
265 | message: "保存成功!", | 313 | message: "保存成功!", |
266 | type: "success", | 314 | type: "success", |
267 | }) | 315 | }); |
268 | this.$store.dispatch('user/refreshPage', true); | 316 | this.$store.dispatch("user/refreshPage", true); |
269 | } else { | 317 | } else { |
270 | this.$message({ | 318 | this.$message({ |
271 | showClose: true, | 319 | showClose: true, |
... | @@ -279,29 +327,19 @@ | ... | @@ -279,29 +327,19 @@ |
279 | * @description: compare | 327 | * @description: compare |
280 | * @author: renchao | 328 | * @author: renchao |
281 | */ | 329 | */ |
282 | compare () { | 330 | compare() { |
283 | this.$popup({ | 331 | this.$popupDialog( |
284 | titleStyle: "left", | 332 | "国有建设用地使用权", |
285 | title: "土地变化情况比对", // 弹窗标题 | 333 | "registerBook/comparison", |
286 | editItem: "registerBook/jsydsyq", // 弹窗内容 | 334 | { propsParam: this.propsParam }, |
287 | formData: this.propsParam, | 335 | "80%", |
288 | width: "1220px", | 336 | true |
289 | height: "790px", | 337 | ); |
290 | // cancelText: '取消摆烂', // 右边按钮文本 | ||
291 | // confirmText: '确定点击', //左边按钮文本 | ||
292 | cancel: () => { | ||
293 | console.log("取消回调"); | ||
294 | }, | ||
295 | confirm: () => { | ||
296 | console.log("确认回调"); | ||
297 | }, | 338 | }, |
298 | }); | ||
299 | } | ||
300 | }, | 339 | }, |
301 | 340 | }; | |
302 | }; | ||
303 | </script> | 341 | </script> |
304 | <style scoped lang='scss'> | 342 | <style scoped lang="scss"> |
305 | @import "~@/styles/public.scss"; | 343 | @import "~@/styles/public.scss"; |
306 | @import "~@/styles/slxx/slxx.scss"; | 344 | @import "~@/styles/slxx/slxx.scss"; |
307 | </style> | 345 | </style> | ... | ... |
... | @@ -100,7 +100,7 @@ | ... | @@ -100,7 +100,7 @@ |
100 | <el-input | 100 | <el-input |
101 | v-model="ruleForm.tdsyq.nydmj" | 101 | v-model="ruleForm.tdsyq.nydmj" |
102 | :disabled="!ableOperation" | 102 | :disabled="!ableOperation" |
103 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 103 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
104 | <el-select | 104 | <el-select |
105 | v-model="mjdw" | 105 | v-model="mjdw" |
106 | :disabled="!ableOperation" | 106 | :disabled="!ableOperation" |
... | @@ -121,7 +121,7 @@ | ... | @@ -121,7 +121,7 @@ |
121 | <el-input | 121 | <el-input |
122 | v-model="ruleForm.tdsyq.gdmj" | 122 | v-model="ruleForm.tdsyq.gdmj" |
123 | :disabled="!ableOperation" | 123 | :disabled="!ableOperation" |
124 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 124 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
125 | <el-select | 125 | <el-select |
126 | v-model="mjdw" | 126 | v-model="mjdw" |
127 | :disabled="!ableOperation" | 127 | :disabled="!ableOperation" |
... | @@ -142,7 +142,7 @@ | ... | @@ -142,7 +142,7 @@ |
142 | <el-input | 142 | <el-input |
143 | v-model="ruleForm.tdsyq.ldmj" | 143 | v-model="ruleForm.tdsyq.ldmj" |
144 | :disabled="!ableOperation" | 144 | :disabled="!ableOperation" |
145 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 145 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
146 | <el-select | 146 | <el-select |
147 | v-model="mjdw" | 147 | v-model="mjdw" |
148 | :disabled="!ableOperation" | 148 | :disabled="!ableOperation" |
... | @@ -165,7 +165,7 @@ | ... | @@ -165,7 +165,7 @@ |
165 | <el-input | 165 | <el-input |
166 | v-model="ruleForm.tdsyq.cdmj" | 166 | v-model="ruleForm.tdsyq.cdmj" |
167 | :disabled="!ableOperation" | 167 | :disabled="!ableOperation" |
168 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 168 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
169 | <el-select | 169 | <el-select |
170 | v-model="mjdw" | 170 | v-model="mjdw" |
171 | :disabled="!ableOperation" | 171 | :disabled="!ableOperation" |
... | @@ -186,7 +186,7 @@ | ... | @@ -186,7 +186,7 @@ |
186 | <el-input | 186 | <el-input |
187 | v-model="ruleForm.tdsyq.qtnydmj" | 187 | v-model="ruleForm.tdsyq.qtnydmj" |
188 | :disabled="!ableOperation" | 188 | :disabled="!ableOperation" |
189 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 189 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
190 | <el-select | 190 | <el-select |
191 | v-model="mjdw" | 191 | v-model="mjdw" |
192 | :disabled="!ableOperation" | 192 | :disabled="!ableOperation" |
... | @@ -207,7 +207,7 @@ | ... | @@ -207,7 +207,7 @@ |
207 | <el-input | 207 | <el-input |
208 | v-model="ruleForm.tdsyq.jsydmj" | 208 | v-model="ruleForm.tdsyq.jsydmj" |
209 | :disabled="!ableOperation" | 209 | :disabled="!ableOperation" |
210 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 210 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
211 | <el-select | 211 | <el-select |
212 | v-model="mjdw" | 212 | v-model="mjdw" |
213 | :disabled="!ableOperation" | 213 | :disabled="!ableOperation" |
... | @@ -230,7 +230,7 @@ | ... | @@ -230,7 +230,7 @@ |
230 | <el-input | 230 | <el-input |
231 | v-model="ruleForm.tdsyq.wlydmj" | 231 | v-model="ruleForm.tdsyq.wlydmj" |
232 | :disabled="!ableOperation" | 232 | :disabled="!ableOperation" |
233 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 233 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
234 | <el-select | 234 | <el-select |
235 | v-model="mjdw" | 235 | v-model="mjdw" |
236 | :disabled="!ableOperation" | 236 | :disabled="!ableOperation" | ... | ... |
-
Please register or sign in to post a comment