--no commit message
Showing
1 changed file
with
16 additions
and
3 deletions
... | @@ -141,7 +141,14 @@ | ... | @@ -141,7 +141,14 @@ |
141 | </el-col> | 141 | </el-col> |
142 | 142 | ||
143 | </el-row> | 143 | </el-row> |
144 | 144 | <div class="slxx_title title-block"> | |
145 | 土地用途 | ||
146 | <div class="triangle"></div> | ||
147 | </div> | ||
148 | <tdytTable | ||
149 | :tableData="ruleForm.tdytqxList" | ||
150 | @upDateTdytxxList="upDateTdytxxList" | ||
151 | /> | ||
145 | <div class="slxx_title title-block"> | 152 | <div class="slxx_title title-block"> |
146 | 权利人信息 | 153 | 权利人信息 |
147 | <div class="triangle"></div> | 154 | <div class="triangle"></div> |
... | @@ -211,10 +218,11 @@ | ... | @@ -211,10 +218,11 @@ |
211 | <script> | 218 | <script> |
212 | import { mapGetters } from "vuex" | 219 | import { mapGetters } from "vuex" |
213 | import { Init, saveData } from "@/api/workflow/tdsyqFlow.js" | 220 | import { Init, saveData } from "@/api/workflow/tdsyqFlow.js" |
221 | import tdytTable from "@/views/workflow/components/tdytTable"; | ||
214 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable" | 222 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable" |
215 | import selectTable from '@/components/selectTable/index.vue' | 223 | import selectTable from '@/components/selectTable/index.vue' |
216 | export default { | 224 | export default { |
217 | components: { qlrCommonTable, selectTable }, | 225 | components: { qlrCommonTable, selectTable,tdytTable }, |
218 | mounted () { | 226 | mounted () { |
219 | this.ableOperation = this.$parent.currentSelectTab.ableOperation | 227 | this.ableOperation = this.$parent.currentSelectTab.ableOperation |
220 | this.propsParam = this.$attrs; | 228 | this.propsParam = this.$attrs; |
... | @@ -262,7 +270,12 @@ | ... | @@ -262,7 +270,12 @@ |
262 | } | 270 | } |
263 | }, | 271 | }, |
264 | methods: { | 272 | methods: { |
265 | change () { }, | 273 | // 更新土地用途信息 |
274 | upDateTdytxxList(val) { | ||
275 | console.log("VAL", val); | ||
276 | this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); | ||
277 | this.key++; | ||
278 | }, | ||
266 | // 更新权利人信息 | 279 | // 更新权利人信息 |
267 | upDateQlrxxList (val) { | 280 | upDateQlrxxList (val) { |
268 | this.ruleForm.qlrList && (this.ruleForm.qlrList = _.cloneDeep(val)) | 281 | this.ruleForm.qlrList && (this.ruleForm.qlrList = _.cloneDeep(val)) | ... | ... |
-
Please register or sign in to post a comment