gaoluyang
2025-05-08 0a742d63e828d5baaa30d261a5dc9c011e5f6ab2
1
2
3
4
5
6
7
8
9
10
11
// 销售台账页面接口
import request from '@/utils/request'
 
// 分页查询
export function customerList(query) {
    return request({
        url: '/basic/customer/customerList',
        method: 'get',
        params: query
    })
}