Merge branch 'dev'
Showing
1 changed file
with
20 additions
and
4 deletions
... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
2 | <!-- | 2 | <!-- |
3 | * @Description: | 3 | * @Description: |
4 | * @Autor: renchao | 4 | * @Autor: renchao |
5 | * @LastEditTime: 2023-11-14 16:17:11 | 5 | * @LastEditTime: 2024-01-17 10:56:52 |
6 | --> | 6 | --> |
7 | <template> | 7 | <template> |
8 | <!-- 受理信息 --> | 8 | <!-- 受理信息 --> |
... | @@ -226,8 +226,8 @@ | ... | @@ -226,8 +226,8 @@ |
226 | placeholder="持证人" | 226 | placeholder="持证人" |
227 | :disabled="!viewEdit"> | 227 | :disabled="!viewEdit"> |
228 | <el-option | 228 | <el-option |
229 | v-for="(item,index) in czrOptions" | 229 | v-for="item in czrOptions" |
230 | :key="index" | 230 | :key="item.id" |
231 | :label="item.sqrmc" | 231 | :label="item.sqrmc" |
232 | :value="item.id"> | 232 | :value="item.id"> |
233 | </el-option> | 233 | </el-option> |
... | @@ -240,6 +240,20 @@ | ... | @@ -240,6 +240,20 @@ |
240 | :disabled="viewEdit" | 240 | :disabled="viewEdit" |
241 | @upDateQlrxxList="upDateQlrxxList" | 241 | @upDateQlrxxList="upDateQlrxxList" |
242 | :gyfs="ruleForm.sldy.gyfs" /> | 242 | :gyfs="ruleForm.sldy.gyfs" /> |
243 | |||
244 | <div v-if="ruleForm.ywrList && ruleForm.ywrList.length > 0 && ruleForm.qlxx.djlx==200"> | ||
245 | <div class="slxx_title title-block"> | ||
246 | 义务人信息 | ||
247 | <div class="triangle"></div> | ||
248 | </div> | ||
249 | <ywrCommonTable | ||
250 | v-if="ruleForm.ywrList" | ||
251 | :disabled="viewEdit" | ||
252 | :tableData="ruleForm.ywrList" | ||
253 | :key="key" | ||
254 | @upDateQlrxxList="upDateYwrxxList" /> | ||
255 | </div> | ||
256 | |||
243 | <div class="slxx_title title-block"> | 257 | <div class="slxx_title title-block"> |
244 | 登记原因 | 258 | 登记原因 |
245 | <div class="triangle"></div> | 259 | <div class="triangle"></div> |
... | @@ -271,6 +285,7 @@ | ... | @@ -271,6 +285,7 @@ |
271 | import { mapGetters } from "vuex"; | 285 | import { mapGetters } from "vuex"; |
272 | import ywmix from "@/views/ywbl/mixin/index"; | 286 | import ywmix from "@/views/ywbl/mixin/index"; |
273 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; | 287 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; |
288 | import ywrCommonTable from "@/views/workflow/components/ywrCommonTable"; | ||
274 | import tdytTable from "@/views/workflow/components/tdytTable"; | 289 | import tdytTable from "@/views/workflow/components/tdytTable"; |
275 | import { Init, saveData } from "@/api/workflow/jsydsyqFlow.js"; | 290 | import { Init, saveData } from "@/api/workflow/jsydsyqFlow.js"; |
276 | export default { | 291 | export default { |
... | @@ -311,12 +326,13 @@ | ... | @@ -311,12 +326,13 @@ |
311 | this.isSave = false | 326 | this.isSave = false |
312 | }) | 327 | }) |
313 | }, | 328 | }, |
314 | components: { qlrCommonTable, tdytTable }, | 329 | components: { qlrCommonTable, tdytTable, ywrCommonTable }, |
315 | computed: { | 330 | computed: { |
316 | ...mapGetters(["dictData", "flag"]), | 331 | ...mapGetters(["dictData", "flag"]), |
317 | }, | 332 | }, |
318 | data () { | 333 | data () { |
319 | return { | 334 | return { |
335 | key: 0, | ||
320 | isSave: true, | 336 | isSave: true, |
321 | loading: false, | 337 | loading: false, |
322 | // 键名转换,方法默认是label和children进行树状渲染 | 338 | // 键名转换,方法默认是label和children进行树状渲染 | ... | ... |
-
Please register or sign in to post a comment