2024-03-01 04:54:02 +00:00
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
|
|
// 查询快递客户用户列表
|
2024-05-22 21:09:47 +00:00
|
|
|
export function listMonthUser(query) {
|
2024-03-01 04:54:02 +00:00
|
|
|
return request({
|
2024-05-22 21:09:47 +00:00
|
|
|
url: '/emis/emisCustomerUser/listMonthUser',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function listMoneyUser(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/listMoneyUser',
|
2024-03-01 04:54:02 +00:00
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 查询快递客户用户详细
|
|
|
|
|
export function getEmisCustomerUser(id) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/' + id,
|
|
|
|
|
method: 'get'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-22 21:09:47 +00:00
|
|
|
// 新增月结客户
|
|
|
|
|
export function addMonthUser(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/addMonthUser',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 修改现金用户
|
|
|
|
|
export function editMoneyUser(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/editMoneyUser',
|
|
|
|
|
method: 'put',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 新增月结客户
|
|
|
|
|
export function addMoneyUser(data) {
|
2024-03-01 04:54:02 +00:00
|
|
|
return request({
|
2024-05-22 21:09:47 +00:00
|
|
|
url: '/emis/emisCustomerUser/addMoneyUser',
|
2024-03-01 04:54:02 +00:00
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-11 12:26:34 +00:00
|
|
|
// 用户密码重置
|
|
|
|
|
export function resetCustomerUserPwd(id, password) {
|
|
|
|
|
const data = {
|
|
|
|
|
id,
|
|
|
|
|
password
|
|
|
|
|
}
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/resetCustomerUserPwd',
|
|
|
|
|
method: 'put',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2024-05-22 21:09:47 +00:00
|
|
|
|
|
|
|
|
// 修改月结用户
|
|
|
|
|
export function editMonthUser(data) {
|
2024-03-01 04:54:02 +00:00
|
|
|
return request({
|
2024-05-22 21:09:47 +00:00
|
|
|
url: '/emis/emisCustomerUser/editMonthUser',
|
2024-03-01 04:54:02 +00:00
|
|
|
method: 'put',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 删除快递客户用户
|
|
|
|
|
export function delEmisCustomerUser(id) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/' + id,
|
|
|
|
|
method: 'delete'
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-08-28 06:59:17 +00:00
|
|
|
|
|
|
|
|
//导入企业税号
|
|
|
|
|
export function batchImportEnterprise(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/batchImportEnterprise',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-09-01 02:50:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// 查询快递客户用户列表
|
|
|
|
|
export function listMonthUserAll(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/listMonthUserAll',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
2025-11-11 09:30:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//查询月结客户用户所有统计信息
|
|
|
|
|
export function monthlyShipmentStat(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/monthlyShipmentStat',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//查询月结客户用户所有统计信息详情
|
|
|
|
|
export function monthlyShipmentDetail(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/emis/emisCustomerUser/monthlyShipmentDetail',
|
|
|
|
|
method: 'get',
|
|
|
|
|
params: query
|
|
|
|
|
})
|
2025-12-19 05:28:39 +00:00
|
|
|
}
|
|
|
|
|
|
2025-12-24 07:45:31 +00:00
|
|
|
// 绑定现金客户接口
|
|
|
|
|
export function bindMoneyUser(data) {
|
2025-12-19 05:28:39 +00:00
|
|
|
return request({
|
2025-12-24 07:45:31 +00:00
|
|
|
url: '/emis/emisCustomerUser/bindMoneyUser',
|
|
|
|
|
method: 'put',
|
|
|
|
|
data: data
|
2025-12-19 05:28:39 +00:00
|
|
|
})
|
2025-09-01 02:50:56 +00:00
|
|
|
}
|