import fetch from '@/utils/fetch' //集团列表 export function getList() { return fetch({ url: '/table/list', method: 'get', }) } //集团信息 export function info(params) { return fetch({ url: '/table/list', method: 'get', params }) } //集团添加 export function add(params) { return fetch({ url: '/table/list', method: 'get', params }) } //集团修改 export function update(params) { return fetch({ url: '/table/list', method: 'get', params }) }