fix: 修复流程设计时多实例数据回显问题

This commit is contained in:
tony
2022-12-18 13:37:59 +08:00
parent 9436bb4154
commit 1486beb897
5 changed files with 73 additions and 49 deletions

View File

@@ -82,7 +82,7 @@ export default {
const deployId = this.$route.query && this.$route.query.deployId;
// 查询流程xml
if (deployId) {
this.getModelDetail(deployId);
this.getXmlData(deployId);
}
this.getDicts("sys_process_category").then(res => {
this.categorys = res.data;
@@ -91,7 +91,7 @@ export default {
},
methods: {
/** xml 文件 */
getModelDetail(deployId) {
getXmlData(deployId) {
// 发送请求获取xml
readXml(deployId).then(res =>{
this.xml = res.data;