潘志宝
10 天以前 778f36da39618e73d362f70de5fd77be57b34fb7
提交 | 用户 | 时间
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 }