标准评估流程修改bug

This commit is contained in:
宋伟佳
2022-02-08 10:56:50 +08:00
parent beea2bd798
commit 608f85d1ed
@@ -1135,11 +1135,21 @@ export default {
this.dataList = mes.form.dataList;
this.roleForm = mes.roleForm
this.commentText = mes.commentText
this.$http.get("SarStandItems/sar-stand-items/getFileType", {
standId: mes.form.standId
}, {}, res => {
this.decomposeOptions = res.data;
});
}else{
this.listForm = mes.json.form;
this.dataList = mes.json.form.dataList
this.roleForm = mes.json.roleForm;
this.commentText = mes.json.commentText;
this.$http.get("SarStandItems/sar-stand-items/getFileType", {
standId: mes.json.form.standId
}, {}, res => {
this.decomposeOptions = res.data;
});
}
});
},