diff --git a/src/views/threeSystems/lawsRegulations/components/editTextLibrary.vue b/src/views/threeSystems/lawsRegulations/components/editTextLibrary.vue index 0d047ad..757be5c 100644 --- a/src/views/threeSystems/lawsRegulations/components/editTextLibrary.vue +++ b/src/views/threeSystems/lawsRegulations/components/editTextLibrary.vue @@ -199,6 +199,8 @@ export default { { BUS_TEXT_LIBRARY_ID: this.e.BUS_TEXT_LIBRARY_ID } ).then((data) => { this.loading = false + if (!data.data.labels || data.data.labels.length === 0) data.data.labels = [''] + data.data.TYPE_INFO = data.data.TYPE this.form = data.data this.form.FILE = [] this.form.types = [] @@ -208,10 +210,7 @@ export default { if (!this.form.TYPES || this.form.TYPES.length === 0) this.form.TYPES = [''] if (!this.form.SPECIFICATION_TYPES || this.form.SPECIFICATION_TYPES.length === 0) this.form.SPECIFICATION_TYPES = [''] if (!this.form.CATEGORY_LIST || this.form.CATEGORY_LIST.length === 0) this.form.CATEGORY_LIST = [''] - if (!this.form.labels || this.form.labels.length === 0) this.form.labels = [''] this.remoteControl.keyOne = !(this.form.CATEGORY_LIST[0].CATEGORY_ID === '8051d985a2bc406a83ea9360b64182b2') - this.form.TYPE_INFO = this.form.TYPE - this.$set(this.form, 'TYPE_INFO', this.form.TYPE) }).catch((e) => { this.$message.error(e) this.loading = false