dengzedong
5 天以前 f9b459a3fefd5fab0ee8e19268adb9d9eadab2a7
提交 | 用户 | 时间
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 }