Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
17 changed files
with
71 additions
and
65 deletions
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-03 08:59:06 | 4 | * @LastEditTime: 2023-08-16 11:30:45 |
5 | */ | 5 | */ |
6 | import store from '@/store' | 6 | import store from '@/store' |
7 | 7 | ||
... | @@ -27,12 +27,18 @@ export function getSjlx (level) { | ... | @@ -27,12 +27,18 @@ export function getSjlx (level) { |
27 | */ | 27 | */ |
28 | export function getDictLeabel (level, code) { | 28 | export function getDictLeabel (level, code) { |
29 | const resultMap = store.getters.dictData[code] | 29 | const resultMap = store.getters.dictData[code] |
30 | const desiredObject = resultMap.find(obj => obj.dcode === level); | 30 | function findNode(tree, func) { |
31 | 31 | for (const node of tree) { | |
32 | if (desiredObject) { | 32 | if (func(node)) return node |
33 | const desiredName = desiredObject.dname; | 33 | if (node.children) { |
34 | return desiredName | 34 | const res = findNode(node.children, func) |
35 | } else { | 35 | if (res) return res |
36 | return '' | 36 | } |
37 | } | ||
38 | return {dname:""} | ||
37 | } | 39 | } |
38 | } | 40 | let data = findNode(resultMap, (node) => { |
41 | return node.dcode === level | ||
42 | }) | ||
43 | return data.dname | ||
44 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-04 16:29:10 | 4 | * @LastEditTime: 2023-08-16 11:14:21 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
... | @@ -243,7 +243,7 @@ | ... | @@ -243,7 +243,7 @@ |
243 | <el-form-item label="被担保主债权数额:"> | 243 | <el-form-item label="被担保主债权数额:"> |
244 | <div style="display: flex"> | 244 | <div style="display: flex"> |
245 | <el-input | 245 | <el-input |
246 | maxlength="11" | 246 | maxlength="11" |
247 | v-model="ruleForm.diyaq.bdbzzqse" | 247 | v-model="ruleForm.diyaq.bdbzzqse" |
248 | style="width: 500%" | 248 | style="width: 500%" |
249 | oninput="value=value.replace(/[^\d.]/g,'')"></el-input> | 249 | oninput="value=value.replace(/[^\d.]/g,'')"></el-input> |
... | @@ -266,7 +266,7 @@ | ... | @@ -266,7 +266,7 @@ |
266 | maxlength="13" | 266 | maxlength="13" |
267 | v-model="ruleForm.diyaq.dymj" | 267 | v-model="ruleForm.diyaq.dymj" |
268 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> | 268 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
269 | <el-select v-model="ruleForm.diyaq.mjdw" style="width: 20%"> | 269 | <el-select v-model="ruleForm.diyaq.mjdw" style="width: 68px"> |
270 | <el-option | 270 | <el-option |
271 | v-for="item in dictData['A7']" | 271 | v-for="item in dictData['A7']" |
272 | :key="item.dcode" | 272 | :key="item.dcode" | ... | ... |
... | @@ -126,7 +126,7 @@ | ... | @@ -126,7 +126,7 @@ |
126 | <el-input | 126 | <el-input |
127 | v-model="ruleForm.fdcq2.dytdmj" | 127 | v-model="ruleForm.fdcq2.dytdmj" |
128 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> | 128 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
129 | <el-select disabled v-model="mjdw" style="width: 20%"> | 129 | <el-select disabled v-model="mjdw" style="width: 68px"> |
130 | <el-option | 130 | <el-option |
131 | v-for="item in dictData['A7']" | 131 | v-for="item in dictData['A7']" |
132 | :key="item.dcode" | 132 | :key="item.dcode" |
... | @@ -143,7 +143,7 @@ | ... | @@ -143,7 +143,7 @@ |
143 | <el-input | 143 | <el-input |
144 | v-model="ruleForm.fdcq2.fttdmj" | 144 | v-model="ruleForm.fdcq2.fttdmj" |
145 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> | 145 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
146 | <el-select disabled v-model="mjdw" style="width: 20%"> | 146 | <el-select disabled v-model="mjdw" style="width: 68px"> |
147 | <el-option | 147 | <el-option |
148 | v-for="item in dictData['A7']" | 148 | v-for="item in dictData['A7']" |
149 | :key="item.dcode" | 149 | :key="item.dcode" |
... | @@ -262,7 +262,7 @@ | ... | @@ -262,7 +262,7 @@ |
262 | <el-input | 262 | <el-input |
263 | v-model="ruleForm.fdcq2.jzmj" | 263 | v-model="ruleForm.fdcq2.jzmj" |
264 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> | 264 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
265 | <el-select disabled v-model="mjdw" style="width: 20%"> | 265 | <el-select disabled v-model="mjdw" style="width: 68px"> |
266 | <el-option | 266 | <el-option |
267 | v-for="item in dictData['A7']" | 267 | v-for="item in dictData['A7']" |
268 | :key="item.dcode" | 268 | :key="item.dcode" |
... | @@ -279,7 +279,7 @@ | ... | @@ -279,7 +279,7 @@ |
279 | <el-input | 279 | <el-input |
280 | v-model="ruleForm.fdcq2.zyjzmj" | 280 | v-model="ruleForm.fdcq2.zyjzmj" |
281 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> | 281 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
282 | <el-select disabled v-model="mjdw" style="width: 20%"> | 282 | <el-select disabled v-model="mjdw" style="width: 68px"> |
283 | <el-option | 283 | <el-option |
284 | v-for="item in dictData['A7']" | 284 | v-for="item in dictData['A7']" |
285 | :key="item.dcode" | 285 | :key="item.dcode" |
... | @@ -296,7 +296,7 @@ | ... | @@ -296,7 +296,7 @@ |
296 | <el-input | 296 | <el-input |
297 | v-model="ruleForm.fdcq2.ftjzmj" | 297 | v-model="ruleForm.fdcq2.ftjzmj" |
298 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> | 298 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
299 | <el-select disabled v-model="mjdw" style="width: 20%"> | 299 | <el-select disabled v-model="mjdw" style="width: 68px"> |
300 | <el-option | 300 | <el-option |
301 | v-for="item in dictData['A7']" | 301 | v-for="item in dictData['A7']" |
302 | :key="item.dcode" | 302 | :key="item.dcode" | ... | ... |
... | @@ -140,7 +140,7 @@ | ... | @@ -140,7 +140,7 @@ |
140 | maxlength="12" | 140 | maxlength="12" |
141 | v-model="ruleForm.jsydsyq.syqmj" | 141 | v-model="ruleForm.jsydsyq.syqmj" |
142 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> | 142 | oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> |
143 | <el-select disabled v-model="mjdw" style="width: 20%"> | 143 | <el-select disabled v-model="mjdw" style="width: 68px"> |
144 | <el-option | 144 | <el-option |
145 | v-for="item in dictData['A7']" | 145 | v-for="item in dictData['A7']" |
146 | :key="item.dcode" | 146 | :key="item.dcode" |
... | @@ -153,7 +153,7 @@ | ... | @@ -153,7 +153,7 @@ |
153 | </el-col> | 153 | </el-col> |
154 | <el-col :span="8"> | 154 | <el-col :span="8"> |
155 | <el-form-item label="使用权起止时间:"> | 155 | <el-form-item label="使用权起止时间:"> |
156 | <el-input maxlength="20" v-model="ruleForm.jsydsyq.syqqzsj"></el-input> | 156 | <el-input maxlength="20" v-model="ruleForm.jsydsyq.syqqzsj"></el-input> |
157 | </el-form-item> | 157 | </el-form-item> |
158 | </el-col> | 158 | </el-col> |
159 | <el-col :span="8"> | 159 | <el-col :span="8"> |
... | @@ -165,7 +165,7 @@ | ... | @@ -165,7 +165,7 @@ |
165 | <el-form-item label="取得价格:"> | 165 | <el-form-item label="取得价格:"> |
166 | <div style="display: flex"> | 166 | <div style="display: flex"> |
167 | <el-input | 167 | <el-input |
168 | maxlength="11" | 168 | maxlength="11" |
169 | v-model="ruleForm.jsydsyq.qdjg" | 169 | v-model="ruleForm.jsydsyq.qdjg" |
170 | style="width: 500%"></el-input> | 170 | style="width: 500%"></el-input> |
171 | <el-select v-model="ruleForm.jsydsyq.jedw"> | 171 | <el-select v-model="ruleForm.jsydsyq.jedw"> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-14 10:29:57 | 4 | * @LastEditTime: 2023-08-16 11:15:56 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
... | @@ -173,7 +173,7 @@ | ... | @@ -173,7 +173,7 @@ |
173 | <el-select | 173 | <el-select |
174 | v-model="ruleForm.tdsyq.mjdw" | 174 | v-model="ruleForm.tdsyq.mjdw" |
175 | :disabled="!ableOperation" | 175 | :disabled="!ableOperation" |
176 | style="width: 20%"> | 176 | style="width: 68px"> |
177 | <el-option | 177 | <el-option |
178 | v-for="item in dictData['A7']" | 178 | v-for="item in dictData['A7']" |
179 | :key="item.dcode" | 179 | :key="item.dcode" |
... | @@ -194,7 +194,7 @@ | ... | @@ -194,7 +194,7 @@ |
194 | <el-select | 194 | <el-select |
195 | v-model="ruleForm.tdsyq.mjdw" | 195 | v-model="ruleForm.tdsyq.mjdw" |
196 | :disabled="!ableOperation" | 196 | :disabled="!ableOperation" |
197 | style="width: 20%"> | 197 | style="width: 68px"> |
198 | <el-option | 198 | <el-option |
199 | v-for="item in dictData['A7']" | 199 | v-for="item in dictData['A7']" |
200 | :key="item.dcode" | 200 | :key="item.dcode" |
... | @@ -215,7 +215,7 @@ | ... | @@ -215,7 +215,7 @@ |
215 | <el-select | 215 | <el-select |
216 | v-model="ruleForm.tdsyq.mjdw" | 216 | v-model="ruleForm.tdsyq.mjdw" |
217 | :disabled="!ableOperation" | 217 | :disabled="!ableOperation" |
218 | style="width: 20%"> | 218 | style="width: 68px"> |
219 | <el-option | 219 | <el-option |
220 | v-for="item in dictData['A7']" | 220 | v-for="item in dictData['A7']" |
221 | :key="item.dcode" | 221 | :key="item.dcode" |
... | @@ -238,7 +238,7 @@ | ... | @@ -238,7 +238,7 @@ |
238 | <el-select | 238 | <el-select |
239 | v-model="ruleForm.tdsyq.mjdw" | 239 | v-model="ruleForm.tdsyq.mjdw" |
240 | :disabled="!ableOperation" | 240 | :disabled="!ableOperation" |
241 | style="width: 20%"> | 241 | style="width: 68px"> |
242 | <el-option | 242 | <el-option |
243 | v-for="item in dictData['A7']" | 243 | v-for="item in dictData['A7']" |
244 | :key="item.dcode" | 244 | :key="item.dcode" |
... | @@ -259,7 +259,7 @@ | ... | @@ -259,7 +259,7 @@ |
259 | <el-select | 259 | <el-select |
260 | v-model="ruleForm.tdsyq.mjdw" | 260 | v-model="ruleForm.tdsyq.mjdw" |
261 | :disabled="!ableOperation" | 261 | :disabled="!ableOperation" |
262 | style="width: 20%"> | 262 | style="width: 68px"> |
263 | <el-option | 263 | <el-option |
264 | v-for="item in dictData['A7']" | 264 | v-for="item in dictData['A7']" |
265 | :key="item.dcode" | 265 | :key="item.dcode" |
... | @@ -280,7 +280,7 @@ | ... | @@ -280,7 +280,7 @@ |
280 | <el-select | 280 | <el-select |
281 | v-model="ruleForm.tdsyq.mjdw" | 281 | v-model="ruleForm.tdsyq.mjdw" |
282 | :disabled="!ableOperation" | 282 | :disabled="!ableOperation" |
283 | style="width: 20%"> | 283 | style="width: 68px"> |
284 | <el-option | 284 | <el-option |
285 | v-for="item in dictData['A7']" | 285 | v-for="item in dictData['A7']" |
286 | :key="item.dcode" | 286 | :key="item.dcode" |
... | @@ -303,7 +303,7 @@ | ... | @@ -303,7 +303,7 @@ |
303 | <el-select | 303 | <el-select |
304 | v-model="ruleForm.tdsyq.mjdw" | 304 | v-model="ruleForm.tdsyq.mjdw" |
305 | :disabled="!ableOperation" | 305 | :disabled="!ableOperation" |
306 | style="width: 20%"> | 306 | style="width: 68px"> |
307 | <el-option | 307 | <el-option |
308 | v-for="item in dictData['A7']" | 308 | v-for="item in dictData['A7']" |
309 | :key="item.dcode" | 309 | :key="item.dcode" | ... | ... |
... | @@ -338,7 +338,7 @@ | ... | @@ -338,7 +338,7 @@ |
338 | <el-select | 338 | <el-select |
339 | v-model="ruleForm.ygdj.mjdw" | 339 | v-model="ruleForm.ygdj.mjdw" |
340 | :disabled="!ableOperation" | 340 | :disabled="!ableOperation" |
341 | style="width: 20%"> | 341 | style="width: 68px"> |
342 | <el-option | 342 | <el-option |
343 | v-for="item in dictData['A7']" | 343 | v-for="item in dictData['A7']" |
344 | :key="item.dcode" | 344 | :key="item.dcode" |
... | @@ -388,7 +388,7 @@ | ... | @@ -388,7 +388,7 @@ |
388 | <el-select | 388 | <el-select |
389 | v-model="ruleForm.ygdj.jedw" | 389 | v-model="ruleForm.ygdj.jedw" |
390 | :disabled="!ableOperation" | 390 | :disabled="!ableOperation" |
391 | style="width: 20%"> | 391 | style="width: 68px"> |
392 | <el-option | 392 | <el-option |
393 | v-for="item in dictData['A57']" | 393 | v-for="item in dictData['A57']" |
394 | :key="item.dcode" | 394 | :key="item.dcode" | ... | ... |
... | @@ -249,7 +249,7 @@ | ... | @@ -249,7 +249,7 @@ |
249 | </el-col> | 249 | </el-col> |
250 | <el-col :span="8"> | 250 | <el-col :span="8"> |
251 | <el-form-item label="总层数:"> | 251 | <el-form-item label="总层数:"> |
252 | <el-input oninput = "value=value.replace(/[^\d]/g,'')" maxlength="4" v-model="ruleForm.ygdj.zcs"></el-input> | 252 | <el-input oninput="value=value.replace(/[^\d]/g,'')" maxlength="4" v-model="ruleForm.ygdj.zcs"></el-input> |
253 | </el-form-item> | 253 | </el-form-item> |
254 | </el-col> | 254 | </el-col> |
255 | <el-col :span="8"> | 255 | <el-col :span="8"> |
... | @@ -261,7 +261,7 @@ | ... | @@ -261,7 +261,7 @@ |
261 | <el-select | 261 | <el-select |
262 | v-model="ruleForm.ygdj.mjdw" | 262 | v-model="ruleForm.ygdj.mjdw" |
263 | :disabled="!ableOperation" | 263 | :disabled="!ableOperation" |
264 | style="width: 20%"> | 264 | style="width: 68px"> |
265 | <el-option | 265 | <el-option |
266 | v-for="item in dictData['A7']" | 266 | v-for="item in dictData['A7']" |
267 | :key="item.dcode" | 267 | :key="item.dcode" |
... | @@ -315,7 +315,7 @@ | ... | @@ -315,7 +315,7 @@ |
315 | <el-select | 315 | <el-select |
316 | v-model="ruleForm.ygdj.jedw" | 316 | v-model="ruleForm.ygdj.jedw" |
317 | :disabled="!ableOperation" | 317 | :disabled="!ableOperation" |
318 | style="width: 20%"> | 318 | style="width: 68px"> |
319 | <el-option | 319 | <el-option |
320 | v-for="item in dictData['A57']" | 320 | v-for="item in dictData['A57']" |
321 | :key="item.dcode" | 321 | :key="item.dcode" |
... | @@ -341,7 +341,7 @@ | ... | @@ -341,7 +341,7 @@ |
341 | <span type="text" style="color: #444" size="mini">是否存在禁止...:</span> | 341 | <span type="text" style="color: #444" size="mini">是否存在禁止...:</span> |
342 | </el-tooltip> | 342 | </el-tooltip> |
343 | </span> | 343 | </span> |
344 | <el-radio-group v-model="ruleForm.ygdj.sfczjzhxz"> | 344 | <el-radio-group v-model="ruleForm.ygdj.sfczjzhxz"> |
345 | <el-radio label="1">是</el-radio> | 345 | <el-radio label="1">是</el-radio> |
346 | <el-radio label="2">否</el-radio> | 346 | <el-radio label="2">否</el-radio> |
347 | </el-radio-group> | 347 | </el-radio-group> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-11 15:33:53 | 4 | * @LastEditTime: 2023-08-16 11:29:20 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="djxxTable"> | 7 | <div class="djxxTable"> |
... | @@ -59,7 +59,7 @@ | ... | @@ -59,7 +59,7 @@ |
59 | 59 | ||
60 | <script> | 60 | <script> |
61 | import { datas } from "./qlxxFormData.js"; | 61 | import { datas } from "./qlxxFormData.js"; |
62 | import { getSjlx } from "@/utils/dictionary.js"; | 62 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; |
63 | import { getLqList } from "@/api/djbDetail.js"; | 63 | import { getLqList } from "@/api/djbDetail.js"; |
64 | export default { | 64 | export default { |
65 | data() { | 65 | data() { |
... | @@ -101,6 +101,9 @@ export default { | ... | @@ -101,6 +101,9 @@ export default { |
101 | this.tableData = res.result; | 101 | this.tableData = res.result; |
102 | this.tableData.forEach((item) => { | 102 | this.tableData.forEach((item) => { |
103 | item.sjlx = getSjlx(item.sjlx); | 103 | item.sjlx = getSjlx(item.sjlx); |
104 | item.ldsyqxz = getDictLeabel(item.ldsyqxz, 'A45') | ||
105 | item.lz = getDictLeabel(item.lz, 'A26') | ||
106 | item.qy = getDictLeabel(item.qy, 'A52') | ||
104 | }); | 107 | }); |
105 | if (this.tableData.length < datas.columns().emptycolNum) { | 108 | if (this.tableData.length < datas.columns().emptycolNum) { |
106 | this.emptycolNum = | 109 | this.emptycolNum = | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-16 11:10:16 | 4 | * @LastEditTime: 2023-08-16 11:22:21 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues loadingtext" v-Loading="loading" element-loading-text="拼命加载中..." style="height:720px;text-align: center;"> | 7 | <div class="from-clues loadingtext" v-Loading="loading" element-loading-text="拼命加载中..." style="height:720px;text-align: center;"> |
... | @@ -133,8 +133,8 @@ | ... | @@ -133,8 +133,8 @@ |
133 | context.fillText(this.bdcqz.qlr ? this.bdcqz.qlr : '', 129, 97); | 133 | context.fillText(this.bdcqz.qlr ? this.bdcqz.qlr : '', 129, 97); |
134 | context.fillText(this.bdcqz.gyqk ? this.bdcqz.gyqk : '', 129, 136); | 134 | context.fillText(this.bdcqz.gyqk ? this.bdcqz.gyqk : '', 129, 136); |
135 | 135 | ||
136 | let arr = this.bdcqz.bdcdyh.split('F') | 136 | this.bdcqz.bdcdyh = this.bdcqz.bdcdyh.slice(0, 6) + ' ' + this.bdcqz.bdcdyh.slice(6, 12) + ' ' + |
137 | this.bdcqz.bdcdyh = arr[0].slice(0, 6) + ' ' + arr[0].slice(6, 12) + ' ' + arr[0].slice(12, arr[0].length) + ' F' + arr[1] | 137 | this.bdcqz.bdcdyh.slice(12, 19) + ' ' + this.bdcqz.bdcdyh.slice(19, this.bdcqz.bdcdyh.length) |
138 | context.fillText(this.bdcqz.bdcdyh ? this.bdcqz.bdcdyh : '', 129, 223); | 138 | context.fillText(this.bdcqz.bdcdyh ? this.bdcqz.bdcdyh : '', 129, 223); |
139 | 139 | ||
140 | 140 | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-04 13:26:31 | 4 | * @LastEditTime: 2023-08-16 14:08:42 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
... | @@ -179,7 +179,6 @@ | ... | @@ -179,7 +179,6 @@ |
179 | } | 179 | } |
180 | this.key++ | 180 | this.key++ |
181 | }, | 181 | }, |
182 | // 新增 | ||
183 | /** | 182 | /** |
184 | * @description: 新增 | 183 | * @description: 新增 |
185 | * @author: renchao | 184 | * @author: renchao | ... | ... |
... | @@ -75,7 +75,7 @@ | ... | @@ -75,7 +75,7 @@ |
75 | <el-select | 75 | <el-select |
76 | disabled | 76 | disabled |
77 | v-model="ruleForm.zdjbxx.mjdw" | 77 | v-model="ruleForm.zdjbxx.mjdw" |
78 | style="width: 20%"> | 78 | style="width: 68px"> |
79 | <el-option | 79 | <el-option |
80 | v-for="item in dictData['A7']" | 80 | v-for="item in dictData['A7']" |
81 | :key="item.dcode" | 81 | :key="item.dcode" |
... | @@ -113,7 +113,7 @@ | ... | @@ -113,7 +113,7 @@ |
113 | <el-select | 113 | <el-select |
114 | disabled | 114 | disabled |
115 | v-model="mjdw" | 115 | v-model="mjdw" |
116 | style="width: 20%"> | 116 | style="width: 68px"> |
117 | <el-option | 117 | <el-option |
118 | v-for="item in dictData['A7']" | 118 | v-for="item in dictData['A7']" |
119 | :key="item.dcode" | 119 | :key="item.dcode" |
... | @@ -132,7 +132,7 @@ | ... | @@ -132,7 +132,7 @@ |
132 | <el-select | 132 | <el-select |
133 | disabled | 133 | disabled |
134 | v-model="mjdw" | 134 | v-model="mjdw" |
135 | style="width: 20%"> | 135 | style="width: 68px"> |
136 | <el-option | 136 | <el-option |
137 | v-for="item in dictData['A7']" | 137 | v-for="item in dictData['A7']" |
138 | :key="item.dcode" | 138 | :key="item.dcode" |
... | @@ -233,7 +233,7 @@ | ... | @@ -233,7 +233,7 @@ |
233 | <el-select | 233 | <el-select |
234 | disabled | 234 | disabled |
235 | v-model="mjdw" | 235 | v-model="mjdw" |
236 | style="width: 20%"> | 236 | style="width: 68px"> |
237 | <el-option | 237 | <el-option |
238 | v-for="item in dictData['A7']" | 238 | v-for="item in dictData['A7']" |
239 | :key="item.dcode" | 239 | :key="item.dcode" |
... | @@ -252,7 +252,7 @@ | ... | @@ -252,7 +252,7 @@ |
252 | <el-select | 252 | <el-select |
253 | disabled | 253 | disabled |
254 | v-model="mjdw" | 254 | v-model="mjdw" |
255 | style="width: 20%"> | 255 | style="width: 68px"> |
256 | <el-option | 256 | <el-option |
257 | v-for="item in dictData['A7']" | 257 | v-for="item in dictData['A7']" |
258 | :key="item.dcode" | 258 | :key="item.dcode" |
... | @@ -271,7 +271,7 @@ | ... | @@ -271,7 +271,7 @@ |
271 | <el-select | 271 | <el-select |
272 | disabled | 272 | disabled |
273 | v-model="mjdw" | 273 | v-model="mjdw" |
274 | style="width: 20%"> | 274 | style="width: 68px"> |
275 | <el-option | 275 | <el-option |
276 | v-for="item in dictData['A7']" | 276 | v-for="item in dictData['A7']" |
277 | :key="item.dcode" | 277 | :key="item.dcode" |
... | @@ -343,7 +343,7 @@ | ... | @@ -343,7 +343,7 @@ |
343 | </el-col> | 343 | </el-col> |
344 | </el-row> | 344 | </el-row> |
345 | <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" | 345 | <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" |
346 | :gyfs="ruleForm.slsq.gyfs" /> | 346 | :gyfs="ruleForm.qlxx.gyfs" /> |
347 | 347 | ||
348 | <div v-if="ruleForm.ywrList && ruleForm.qlxx.djlx == '200'"> | 348 | <div v-if="ruleForm.ywrList && ruleForm.qlxx.djlx == '200'"> |
349 | <div class="slxx_title title-block"> | 349 | <div class="slxx_title title-block"> | ... | ... |
... | @@ -124,7 +124,7 @@ | ... | @@ -124,7 +124,7 @@ |
124 | <el-select | 124 | <el-select |
125 | disabled | 125 | disabled |
126 | v-model="mjdw" | 126 | v-model="mjdw" |
127 | style="width: 20%"> | 127 | style="width: 68px"> |
128 | <el-option | 128 | <el-option |
129 | v-for="item in dictData['A7']" | 129 | v-for="item in dictData['A7']" |
130 | :key="item.dcode" | 130 | :key="item.dcode" |
... | @@ -143,7 +143,7 @@ | ... | @@ -143,7 +143,7 @@ |
143 | <el-select | 143 | <el-select |
144 | disabled | 144 | disabled |
145 | v-model="mjdw" | 145 | v-model="mjdw" |
146 | style="width: 20%"> | 146 | style="width: 68px"> |
147 | <el-option | 147 | <el-option |
148 | v-for="item in dictData['A7']" | 148 | v-for="item in dictData['A7']" |
149 | :key="item.dcode" | 149 | :key="item.dcode" |
... | @@ -162,7 +162,7 @@ | ... | @@ -162,7 +162,7 @@ |
162 | <el-select | 162 | <el-select |
163 | disabled | 163 | disabled |
164 | v-model="mjdw" | 164 | v-model="mjdw" |
165 | style="width: 20%"> | 165 | style="width: 68px"> |
166 | <el-option | 166 | <el-option |
167 | v-for="item in dictData['A7']" | 167 | v-for="item in dictData['A7']" |
168 | :key="item.dcode" | 168 | :key="item.dcode" | ... | ... |
... | @@ -78,7 +78,7 @@ | ... | @@ -78,7 +78,7 @@ |
78 | <el-select | 78 | <el-select |
79 | disabled | 79 | disabled |
80 | v-model="mjdw" | 80 | v-model="mjdw" |
81 | style="width: 20%"> | 81 | style="width: 68px"> |
82 | <el-option | 82 | <el-option |
83 | v-for="item in dictData['A7']" | 83 | v-for="item in dictData['A7']" |
84 | :key="item.dcode" | 84 | :key="item.dcode" | ... | ... |
... | @@ -97,7 +97,7 @@ | ... | @@ -97,7 +97,7 @@ |
97 | <el-select | 97 | <el-select |
98 | v-model="mjdw" | 98 | v-model="mjdw" |
99 | :disabled="!viewEdit" | 99 | :disabled="!viewEdit" |
100 | style="width: 20%"> | 100 | style="width: 68px"> |
101 | <el-option | 101 | <el-option |
102 | v-for="item in dictData['A7']" | 102 | v-for="item in dictData['A7']" |
103 | :key="item.dcode" | 103 | :key="item.dcode" |
... | @@ -118,7 +118,7 @@ | ... | @@ -118,7 +118,7 @@ |
118 | <el-select | 118 | <el-select |
119 | v-model="mjdw" | 119 | v-model="mjdw" |
120 | :disabled="!viewEdit" | 120 | :disabled="!viewEdit" |
121 | style="width: 20%"> | 121 | style="width: 68px"> |
122 | <el-option | 122 | <el-option |
123 | v-for="item in dictData['A7']" | 123 | v-for="item in dictData['A7']" |
124 | :key="item.dcode" | 124 | :key="item.dcode" |
... | @@ -139,7 +139,7 @@ | ... | @@ -139,7 +139,7 @@ |
139 | <el-select | 139 | <el-select |
140 | v-model="mjdw" | 140 | v-model="mjdw" |
141 | :disabled="!viewEdit" | 141 | :disabled="!viewEdit" |
142 | style="width: 20%"> | 142 | style="width: 68px"> |
143 | <el-option | 143 | <el-option |
144 | v-for="item in dictData['A7']" | 144 | v-for="item in dictData['A7']" |
145 | :key="item.dcode" | 145 | :key="item.dcode" |
... | @@ -162,7 +162,7 @@ | ... | @@ -162,7 +162,7 @@ |
162 | <el-select | 162 | <el-select |
163 | v-model="mjdw" | 163 | v-model="mjdw" |
164 | :disabled="!viewEdit" | 164 | :disabled="!viewEdit" |
165 | style="width: 20%"> | 165 | style="width: 68px"> |
166 | <el-option | 166 | <el-option |
167 | v-for="item in dictData['A7']" | 167 | v-for="item in dictData['A7']" |
168 | :key="item.dcode" | 168 | :key="item.dcode" |
... | @@ -183,7 +183,7 @@ | ... | @@ -183,7 +183,7 @@ |
183 | <el-select | 183 | <el-select |
184 | v-model="mjdw" | 184 | v-model="mjdw" |
185 | :disabled="!viewEdit" | 185 | :disabled="!viewEdit" |
186 | style="width: 20%"> | 186 | style="width: 68px"> |
187 | <el-option | 187 | <el-option |
188 | v-for="item in dictData['A7']" | 188 | v-for="item in dictData['A7']" |
189 | :key="item.dcode" | 189 | :key="item.dcode" |
... | @@ -204,7 +204,7 @@ | ... | @@ -204,7 +204,7 @@ |
204 | <el-select | 204 | <el-select |
205 | v-model="mjdw" | 205 | v-model="mjdw" |
206 | :disabled="!viewEdit" | 206 | :disabled="!viewEdit" |
207 | style="width: 20%"> | 207 | style="width: 68px"> |
208 | <el-option | 208 | <el-option |
209 | v-for="item in dictData['A7']" | 209 | v-for="item in dictData['A7']" |
210 | :key="item.dcode" | 210 | :key="item.dcode" |
... | @@ -227,7 +227,7 @@ | ... | @@ -227,7 +227,7 @@ |
227 | <el-select | 227 | <el-select |
228 | v-model="mjdw" | 228 | v-model="mjdw" |
229 | :disabled="!viewEdit" | 229 | :disabled="!viewEdit" |
230 | style="width: 20%"> | 230 | style="width: 68px"> |
231 | <el-option | 231 | <el-option |
232 | v-for="item in dictData['A7']" | 232 | v-for="item in dictData['A7']" |
233 | :key="item.dcode" | 233 | :key="item.dcode" | ... | ... |
... | @@ -114,7 +114,7 @@ | ... | @@ -114,7 +114,7 @@ |
114 | <el-select | 114 | <el-select |
115 | v-model="ruleForm.ygdj.jedw" | 115 | v-model="ruleForm.ygdj.jedw" |
116 | :disabled="!ableOperation" | 116 | :disabled="!ableOperation" |
117 | style="width: 20%"> | 117 | style="width: 68px"> |
118 | <el-option | 118 | <el-option |
119 | v-for="item in dictData['A57']" | 119 | v-for="item in dictData['A57']" |
120 | :key="item.dcode" | 120 | :key="item.dcode" | ... | ... |
... | @@ -121,7 +121,7 @@ | ... | @@ -121,7 +121,7 @@ |
121 | <el-select | 121 | <el-select |
122 | v-model="ruleForm.ygdj.jedw" | 122 | v-model="ruleForm.ygdj.jedw" |
123 | :disabled="!ableOperation" | 123 | :disabled="!ableOperation" |
124 | style="width: 20%"> | 124 | style="width: 68px"> |
125 | <el-option | 125 | <el-option |
126 | v-for="item in dictData['A57']" | 126 | v-for="item in dictData['A57']" |
127 | :key="item.dcode" | 127 | :key="item.dcode" | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-15 14:01:37 | 4 | * @LastEditTime: 2023-08-15 14:36:06 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -110,10 +110,8 @@ | ... | @@ -110,10 +110,8 @@ |
110 | } | 110 | } |
111 | this.loading = true | 111 | this.loading = true |
112 | startBusinessFlow({ | 112 | startBusinessFlow({ |
113 | bsmSqyw: this.bsmSqyw, | 113 | bsmSqyw: this.sqywInfo.bsmSqyw, |
114 | bdcdysz: this.bdcdysz, | 114 | bdcdysz: this.bdcdysz, |
115 | djqxbm: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodecode : "", | ||
116 | djqxmc: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodename : "", | ||
117 | }).then((res) => { | 115 | }).then((res) => { |
118 | this.loading = false | 116 | this.loading = false |
119 | if (res.code == 200) { | 117 | if (res.code == 200) { | ... | ... |
-
Please register or sign in to post a comment