提交 | 用户 | 时间 | ||
3e359e | 1 | import request from '@/config/axios' |
H | 2 | |
3 | ||
4 | export const updateBpmSimpleModel = async (data) => { | |
5 | return await request.post({ | |
6 | url: '/bpm/model/simple/update', | |
7 | data: data | |
8 | }) | |
9 | } | |
10 | ||
11 | export const getBpmSimpleModel = async (id) => { | |
12 | return await request.get({ | |
13 | url: '/bpm/model/simple/get?id=' + id | |
14 | }) | |
15 | } |