将 Model exportBpmnXml 去除,替换成 getModel 接口

This commit is contained in:
YunaiV
2022-01-01 18:13:00 +08:00
parent e47d5afcfa
commit df91c3ceff
9 changed files with 118 additions and 98 deletions

View File

@ -8,11 +8,10 @@ export function page(query) {
})
}
export function exportBpmnXml(query) {
export function getModel(id) {
return request({
url: '/bpm/model/exportBpmnXml',
method: 'get',
params: query
url: '/bpm/model/get?id=' + id,
method: 'get'
})
}