【修改】修改vuex的USID为usid 增加流程接口

This commit is contained in:
zhoulingpo
2023-04-24 15:54:41 +08:00
parent fea8f7893b
commit 7f675d424b
9 changed files with 86 additions and 66 deletions
+12
View File
@@ -0,0 +1,12 @@
import { instance as request } from '@/utils/request'
export default {
getReportLisy (data) {
return request({
url: '/api/report/addReportPage',
method: 'post',
data: data
})
},
}
+9
View File
@@ -99,5 +99,14 @@ export default {
})
},
// 停用流程发起
startProcess(data) {
return request({
url: '/api/startProcess',
method: 'post',
data: data
})
}
}