refactor(工作流流程): 新增读取xml文件接口,替换原流程定义中的接口。
This commit is contained in:
@@ -27,6 +27,14 @@ export function startProcess(processDefId, data) {
|
||||
})
|
||||
}
|
||||
|
||||
// 获取流程图
|
||||
export function getBpmnXml(processDefId) {
|
||||
return request({
|
||||
url: '/workflow/process/bpmnXml/' + processDefId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
export function detailProcess(query) {
|
||||
return request({
|
||||
url: '/workflow/process/detail',
|
||||
|
||||
@@ -77,9 +77,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listProcess } from "@/api/workflow/process";
|
||||
import { listProcess, getBpmnXml } from "@/api/workflow/process";
|
||||
import { listCategory } from '@/api/workflow/category'
|
||||
import { readXml } from '@/api/workflow/definition'
|
||||
import ProcessViewer from '@/components/ProcessViewer'
|
||||
|
||||
export default {
|
||||
@@ -149,7 +148,7 @@ export default {
|
||||
this.processView.title = "流程图";
|
||||
this.processView.index = definitionId;
|
||||
// 发送请求,获取xml
|
||||
readXml(definitionId).then(res => {
|
||||
getBpmnXml(definitionId).then(res => {
|
||||
this.processView.xmlData = res.data;
|
||||
})
|
||||
this.processView.open = true;
|
||||
|
||||
Reference in New Issue
Block a user