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