Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
2 changed files
with
11 additions
and
23 deletions
This diff is collapsed.
Click to expand it.
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-04 16:23:54 | 4 | * @LastEditTime: 2023-07-10 15:16:48 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
... | @@ -130,25 +130,14 @@ | ... | @@ -130,25 +130,14 @@ |
130 | <el-input v-model="ruleForm.tdsyq.mjdw"></el-input> | 130 | <el-input v-model="ruleForm.tdsyq.mjdw"></el-input> |
131 | </el-form-item> | 131 | </el-form-item> |
132 | </el-col> | 132 | </el-col> |
133 | |||
134 | <!-- <el-col :span="8"> | ||
135 | <el-form-item label="下拉表格测试:"> | ||
136 | <select-table v-model="value2" :table-width="600" :props="props" @change="change"> | ||
137 | <el-table-column prop="id" label="ID" width="180"></el-table-column> | ||
138 | <el-table-column prop="user" label="姓名"></el-table-column> | ||
139 | </select-table> | ||
140 | </el-form-item> | ||
141 | </el-col> --> | ||
142 | |||
143 | </el-row> | 133 | </el-row> |
144 | <div class="slxx_title title-block"> | 134 | <div class="slxx_title title-block"> |
145 | 土地用途 | 135 | 土地用途 |
146 | <div class="triangle"></div> | 136 | <div class="triangle"></div> |
147 | </div> | 137 | </div> |
148 | <tdytTable | 138 | <tdytTable |
149 | :tableData="ruleForm.tdytqxList" | 139 | :tableData="ruleForm.tdytqxList" |
150 | @upDateTdytxxList="upDateTdytxxList" | 140 | @upDateTdytxxList="upDateTdytxxList" /> |
151 | /> | ||
152 | <div class="slxx_title title-block"> | 141 | <div class="slxx_title title-block"> |
153 | 权利人信息 | 142 | 权利人信息 |
154 | <div class="triangle"></div> | 143 | <div class="triangle"></div> |
... | @@ -218,11 +207,10 @@ | ... | @@ -218,11 +207,10 @@ |
218 | <script> | 207 | <script> |
219 | import { mapGetters } from "vuex" | 208 | import { mapGetters } from "vuex" |
220 | import { Init, saveData } from "@/api/workflow/tdsyqFlow.js" | 209 | import { Init, saveData } from "@/api/workflow/tdsyqFlow.js" |
221 | import tdytTable from "@/views/workflow/components/tdytTable"; | 210 | import tdytTable from "@/views/workflow/components/tdytTable"; |
222 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable" | 211 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable" |
223 | import selectTable from '@/components/selectTable/index.vue' | ||
224 | export default { | 212 | export default { |
225 | components: { qlrCommonTable, selectTable,tdytTable }, | 213 | components: { qlrCommonTable, tdytTable }, |
226 | mounted () { | 214 | mounted () { |
227 | this.ableOperation = this.$parent.currentSelectTab.ableOperation | 215 | this.ableOperation = this.$parent.currentSelectTab.ableOperation |
228 | this.propsParam = this.$attrs; | 216 | this.propsParam = this.$attrs; |
... | @@ -270,12 +258,12 @@ | ... | @@ -270,12 +258,12 @@ |
270 | } | 258 | } |
271 | }, | 259 | }, |
272 | methods: { | 260 | methods: { |
273 | // 更新土地用途信息 | 261 | // 更新土地用途信息 |
274 | upDateTdytxxList(val) { | 262 | upDateTdytxxList (val) { |
275 | console.log("VAL", val); | 263 | console.log("VAL", val); |
276 | this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); | 264 | this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); |
277 | this.key++; | 265 | this.key++; |
278 | }, | 266 | }, |
279 | // 更新权利人信息 | 267 | // 更新权利人信息 |
280 | upDateQlrxxList (val) { | 268 | upDateQlrxxList (val) { |
281 | this.ruleForm.qlrList && (this.ruleForm.qlrList = _.cloneDeep(val)) | 269 | this.ruleForm.qlrList && (this.ruleForm.qlrList = _.cloneDeep(val)) | ... | ... |
-
Please register or sign in to post a comment