潘志宝
6 天以前 4c014a4f8034bd8c73aba8d909a58f63d5c4ec89
提交 | 用户 | 时间
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 }