土地用途编辑
Showing
3 changed files
with
23 additions
and
12 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-17 13:52:47 | 4 | * @LastEditTime: 2023-08-30 10:56:29 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
... | @@ -141,7 +141,7 @@ export default { | ... | @@ -141,7 +141,7 @@ export default { |
141 | handler: function (val, oldVal) { | 141 | handler: function (val, oldVal) { |
142 | let that = this; | 142 | let that = this; |
143 | this.$nextTick(() => { | 143 | this.$nextTick(() => { |
144 | if (val.length == 0 || !val) { | 144 | if (!val || val.length == 0) { |
145 | that.tableDataList = _.cloneDeep([ | 145 | that.tableDataList = _.cloneDeep([ |
146 | { | 146 | { |
147 | yt: null, | 147 | yt: null, |
... | @@ -267,8 +267,9 @@ export default { | ... | @@ -267,8 +267,9 @@ export default { |
267 | * @author: renchao | 267 | * @author: renchao |
268 | */ | 268 | */ |
269 | addClick() { | 269 | addClick() { |
270 | this.tableDataList[this.tableDataList.length] = _.cloneDeep(this.newdata); | 270 | debugger |
271 | 271 | // this.tableDataList[this.tableDataList.length] = _.cloneDeep(this.newdata); | |
272 | this.tableDataList.push(_.cloneDeep(this.newdata)) | ||
272 | this.$emit("upDateTdytxxList", this.tableDataList); | 273 | this.$emit("upDateTdytxxList", this.tableDataList); |
273 | }, | 274 | }, |
274 | 275 | ||
... | @@ -286,10 +287,10 @@ export default { | ... | @@ -286,10 +287,10 @@ export default { |
286 | type: "warning", | 287 | type: "warning", |
287 | }) | 288 | }) |
288 | .then(() => { | 289 | .then(() => { |
289 | this.tableData.splice(index, 1); | 290 | this.tableDataList.splice(index, 1); |
291 | this.$emit("upDateTdytxxList", this.tableDataList); | ||
290 | }) | 292 | }) |
291 | .catch(() => {}); | 293 | .catch(() => {}); |
292 | this.$emit("upDateTdytxxList", this.tableDataList); | ||
293 | }, | 294 | }, |
294 | }, | 295 | }, |
295 | }; | 296 | }; | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: 房屋多幢受理信息 | 2 | * @Description: 房屋多幢受理信息 |
3 | * @Autor: ssq | 3 | * @Autor: ssq |
4 | * @LastEditTime: 2023-08-25 09:52:09 | 4 | * @LastEditTime: 2023-08-30 10:32:13 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="slxx"> | 7 | <div class="slxx"> |
... | @@ -128,7 +128,7 @@ | ... | @@ -128,7 +128,7 @@ |
128 | </el-col> | 128 | </el-col> |
129 | <el-col :span="8"> | 129 | <el-col :span="8"> |
130 | <el-form-item label="起源:"> | 130 | <el-form-item label="起源:"> |
131 | <el-select v-model="ruleForm.lq.lz"> | 131 | <el-select v-model="ruleForm.lq.qy"> |
132 | <el-option | 132 | <el-option |
133 | v-for="item in dictData['A52']" | 133 | v-for="item in dictData['A52']" |
134 | :key="item.dcode" | 134 | :key="item.dcode" |
... | @@ -142,7 +142,12 @@ | ... | @@ -142,7 +142,12 @@ |
142 | <el-row :gutter="10"> | 142 | <el-row :gutter="10"> |
143 | <el-col :span="8"> | 143 | <el-col :span="8"> |
144 | <el-form-item label="造林年度:"> | 144 | <el-form-item label="造林年度:"> |
145 | <el-input v-model="ruleForm.lq.zlnd"></el-input> | 145 | <!-- <el-input v-model="ruleForm.lq.zlnd"></el-input> --> |
146 | <el-date-picker | ||
147 | class="width100" | ||
148 | v-model="ruleForm.lq.zlnd" | ||
149 | type="year"> | ||
150 | </el-date-picker> | ||
146 | </el-form-item> | 151 | </el-form-item> |
147 | </el-col> | 152 | </el-col> |
148 | <el-col :span="8"> | 153 | <el-col :span="8"> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: 房屋多幢受理信息 | 2 | * @Description: 房屋多幢受理信息 |
3 | * @Autor: ssq | 3 | * @Autor: ssq |
4 | * @LastEditTime: 2023-08-25 09:51:50 | 4 | * @LastEditTime: 2023-08-30 10:34:54 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="slxx"> | 7 | <div class="slxx"> |
... | @@ -128,7 +128,7 @@ | ... | @@ -128,7 +128,7 @@ |
128 | </el-col> | 128 | </el-col> |
129 | <el-col :span="8"> | 129 | <el-col :span="8"> |
130 | <el-form-item label="起源:"> | 130 | <el-form-item label="起源:"> |
131 | <el-select v-model="ruleForm.lq.lz"> | 131 | <el-select v-model="ruleForm.lq.qy"> |
132 | <el-option | 132 | <el-option |
133 | v-for="item in dictData['A52']" | 133 | v-for="item in dictData['A52']" |
134 | :key="item.dcode" | 134 | :key="item.dcode" |
... | @@ -142,7 +142,12 @@ | ... | @@ -142,7 +142,12 @@ |
142 | <el-row :gutter="10"> | 142 | <el-row :gutter="10"> |
143 | <el-col :span="8"> | 143 | <el-col :span="8"> |
144 | <el-form-item label="造林年度:"> | 144 | <el-form-item label="造林年度:"> |
145 | <el-input v-model="ruleForm.lq.zlnd"></el-input> | 145 | <!-- <el-input v-model="ruleForm.lq.zlnd"></el-input> --> |
146 | <el-date-picker | ||
147 | class="width100" | ||
148 | v-model="ruleForm.lq.zlnd" | ||
149 | type="year"> | ||
150 | </el-date-picker> | ||
146 | </el-form-item> | 151 | </el-form-item> |
147 | </el-col> | 152 | </el-col> |
148 | <el-col :span="8"> | 153 | <el-col :span="8"> | ... | ... |
-
Please register or sign in to post a comment