fjl
fujunling
2023-07-11 5bac5571ec6b2bad33069d24ef1b6954f41782df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import request from '@/router/axios';
 
export const getList = (params) => {
    return request({
        url: '/api/ubcs-omd/lifeCycle/page',
        method: 'get',
        params
    })
}
// 新增
export const add = (data) => {
  return request({
      url: '/api/ubcs-omd/lifeCycle/submit',
      method: 'post',
      data
  })
}
export default {
  getList,
  add
}