mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-vue3
synced 2025-08-09 08:52:41 +08:00
16 lines
310 B
TypeScript
16 lines
310 B
TypeScript
import request from '@/config/axios'
|
|
|
|
|
|
export const updateBpmSimpleModel = async (data) => {
|
|
return await request.post({
|
|
url: '/bpm/model/simple/update',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
export const getBpmSimpleModel = async (id) => {
|
|
return await request.get({
|
|
url: '/bpm/model/simple/get?id=' + id
|
|
})
|
|
}
|