自动化接口填充以及初始化数据制作

This commit is contained in:
pixel
2020-10-27 17:38:13 +08:00
parent 3f52783b30
commit 4e514dc83e
15 changed files with 582 additions and 10 deletions

View File

@@ -32,6 +32,9 @@
</div>
</template>
<script>
import {
findWorkflowProcess
} from "@/api/workflowProcess"; // 此处请自行替换地址
import gvaWfd from "@/components/gva-wfd";
import { getUserList } from "@/api/user";
import { getAuthorityList } from "@/api/authority";
@@ -261,6 +264,10 @@ export default {
});
});
}
if(this.$route.params.ID){
const res = await findWorkflowProcess({ ID: this.$route.params.ID });
console.log(res.data)
}
}
};
</script>