lihang
2023-07-10 a3f1b364738a8b8250aaddfba1a8b21a5acb5a26
1
2
3
4
5
6
7
8
9
10
11
12
import request from '@/router/axios';
 
export const getList = (params) => {
    return request({
        url: '/api/ubcs-omd/lifeCycle/page',
        method: 'get',
        params
    })
}
export default {
  getList
}