Browse Source

feat:[模板管理][复核调试]

lkf
luojie 3 months ago
parent
commit
6136dda76c
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/views/business/comps/template/TemplateTable.vue

+ 3
- 3
src/views/business/comps/template/TemplateTable.vue View File

@ -73,13 +73,13 @@ export default {
handler(v) { handler(v) {
if (v) { if (v) {
if (v.zdxgjl) { if (v.zdxgjl) {
this.zdxgjl = v.zdxgjl || [];
this.zdxgjl = JSON.parse(v.zdxgjl) || [];
} }
if (v.fhyjjl) { if (v.fhyjjl) {
this.fhyjjl = v.fhyjjl || [];
this.fhyjjl = JSON.parse(v.fhyjjl) || [];
} }
if (v.fieldCheckObj) { if (v.fieldCheckObj) {
this.fieldCheckObj = v.fieldCheckObj || {};
this.fieldCheckObj = JSON.parse(v.fieldCheckObj) || {};
} }
} }
} }

Loading…
Cancel
Save