3aac49e3 by renchao@pashanhoo.com

style:业务申请

1 parent c6effa03
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-21 09:50:20 4 * @LastEditTime: 2023-07-21 14:13:57
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -68,11 +68,6 @@ ...@@ -68,11 +68,6 @@
68 <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> 68 <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input>
69 </el-form-item> 69 </el-form-item>
70 </el-col> 70 </el-col>
71 <!-- <el-col :span="8">
72 <el-form-item label="房屋用途:">
73 <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input>
74 </el-form-item>
75 </el-col> -->
76 <el-col :span="8"> 71 <el-col :span="8">
77 <el-form-item label="规划用途名称:"> 72 <el-form-item label="规划用途名称:">
78 <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> 73 <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input>
...@@ -215,7 +210,7 @@ ...@@ -215,7 +210,7 @@
215 import { Init, saveData } from "@/api/workflow/fwsyqFlow.js"; 210 import { Init, saveData } from "@/api/workflow/fwsyqFlow.js";
216 import { mapGetters } from "vuex"; 211 import { mapGetters } from "vuex";
217 export default { 212 export default {
218 created () { 213 mounted () {
219 this.ableOperation = this.$parent.currentSelectTab.ableOperation 214 this.ableOperation = this.$parent.currentSelectTab.ableOperation
220 this.propsParam = this.$attrs; 215 this.propsParam = this.$attrs;
221 var formdata = new FormData(); 216 var formdata = new FormData();
...@@ -243,9 +238,24 @@ ...@@ -243,9 +238,24 @@
243 tdytOption: [], 238 tdytOption: [],
244 czrOptions: [], 239 czrOptions: [],
245 ruleForm: { 240 ruleForm: {
241 flow: {
242 ywh: ''
243 },
244 qlxx: {
245 mj: ''
246 },
247 sldy: {
248 gyfs: ''
249 },
250 slsq: {
251
252 },
246 fdcq2: { 253 fdcq2: {
247 zyjzmj: '', 254 zyjzmj: '',
248 ftjzmj: '' 255 ftjzmj: ''
256 },
257 zdjbxx: {
258 ghytmc: ''
249 } 259 }
250 }, 260 },
251 //传递参数 261 //传递参数
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-21 11:18:09 4 * @LastEditTime: 2023-07-21 13:56:38
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
...@@ -311,6 +311,17 @@ ...@@ -311,6 +311,17 @@
311 } 311 }
312 }) 312 })
313 }, 313 },
314 handleSelectionChange (val) {
315 if (this.sqywInfo.sqywdylx == "1") {
316 if (val.length > 1) {
317 this.bdcdysz = [...val[val.length - 1]];
318 } else {
319 this.bdcdysz = val;
320 }
321 } else {
322 this.bdcdysz = val;
323 }
324 },
314 /** 325 /**
315 * @description: select 326 * @description: select
316 * @param {*} selection 327 * @param {*} selection
...@@ -326,7 +337,6 @@ ...@@ -326,7 +337,6 @@
326 if (selection.length == 0) return 337 if (selection.length == 0) return
327 this.$refs.table.toggleRowSelection(row, true); 338 this.$refs.table.toggleRowSelection(row, true);
328 } 339 }
329
330 }, 340 },
331 /** 341 /**
332 * @description: handleRowClick 342 * @description: handleRowClick
...@@ -356,7 +366,7 @@ ...@@ -356,7 +366,7 @@
356 } else { 366 } else {
357 this.$refs.table.toggleRowSelection(row); 367 this.$refs.table.toggleRowSelection(row);
358 } 368 }
359 }, 369 }
360 } 370 }
361 } 371 }
362 </script> 372 </script>
......