Merge branch 'develop' into 'FOTON'

标准评估流程修改bug

See merge request LAWS/laws-system-front-FOTON!310
This commit is contained in:
王夏晖
2022-02-08 10:57:26 +08:00
@@ -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;
});
}
});
},