|
@@ -743,7 +743,6 @@ export default {
|
|
|
isDel: null,
|
|
|
searchValue: this.spaceId,
|
|
|
tagList: [],
|
|
|
-
|
|
|
};
|
|
|
this.resetForm("form");
|
|
|
this.dynamicTags=[]
|
|
@@ -787,10 +786,11 @@ export default {
|
|
|
const docId = row.docId || this.ids;
|
|
|
getInfo(docId, row.createYear).then((response) => {
|
|
|
this.form = response.data;
|
|
|
- this.dynamicTags = this.form.tagList.tagName;
|
|
|
this.open = true;
|
|
|
this.title = "修改文件基本信息";
|
|
|
- // console.log(response);
|
|
|
+ this.dynamicTags = this.form.tagList.map(item=>item.tagName);
|
|
|
+ // console.log(this.dynamicTags);
|
|
|
+ // console.log(this.form);
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|