3aac49e3 by renchao@pashanhoo.com

style:业务申请

1 parent c6effa03
<!--
* @Description: 受理信息
* @Autor: renchao
* @LastEditTime: 2023-07-21 09:50:20
* @LastEditTime: 2023-07-21 14:13:57
-->
<template>
<div class="slxx">
......@@ -68,11 +68,6 @@
<el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input>
</el-form-item>
</el-col>
<!-- <el-col :span="8">
<el-form-item label="房屋用途:">
<el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input>
</el-form-item>
</el-col> -->
<el-col :span="8">
<el-form-item label="规划用途名称:">
<el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input>
......@@ -215,7 +210,7 @@
import { Init, saveData } from "@/api/workflow/fwsyqFlow.js";
import { mapGetters } from "vuex";
export default {
created () {
mounted () {
this.ableOperation = this.$parent.currentSelectTab.ableOperation
this.propsParam = this.$attrs;
var formdata = new FormData();
......@@ -243,9 +238,24 @@
tdytOption: [],
czrOptions: [],
ruleForm: {
flow: {
ywh: ''
},
qlxx: {
mj: ''
},
sldy: {
gyfs: ''
},
slsq: {
},
fdcq2: {
zyjzmj: '',
ftjzmj: ''
},
zdjbxx: {
ghytmc: ''
}
},
//传递参数
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-21 11:18:09
* @LastEditTime: 2023-07-21 13:56:38
-->
<template>
<div class="from-clues">
......@@ -311,6 +311,17 @@
}
})
},
handleSelectionChange (val) {
if (this.sqywInfo.sqywdylx == "1") {
if (val.length > 1) {
this.bdcdysz = [...val[val.length - 1]];
} else {
this.bdcdysz = val;
}
} else {
this.bdcdysz = val;
}
},
/**
* @description: select
* @param {*} selection
......@@ -326,7 +337,6 @@
if (selection.length == 0) return
this.$refs.table.toggleRowSelection(row, true);
}
},
/**
* @description: handleRowClick
......@@ -356,7 +366,7 @@
} else {
this.$refs.table.toggleRowSelection(row);
}
},
}
}
}
</script>
......