You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
826 B
44 lines
826 B
import http from '../utils/http/index.js'
|
|
|
|
// 纸掌柜--客户详情--基础信息
|
|
export function getBaseInfo(data) {
|
|
return http.get(
|
|
{
|
|
url: '/yyt-uec/get/customer/detail/base-info',
|
|
data
|
|
}
|
|
)
|
|
}
|
|
// 设备信息
|
|
export function getDeviceInfo(data) {
|
|
return http.get(
|
|
{
|
|
url: '/yyt-uec/get/customer/detail/device-info',
|
|
data
|
|
},
|
|
{
|
|
hideLoading: true
|
|
}
|
|
)
|
|
}
|
|
// 原纸交易
|
|
export function getBasePaperDeals(data) {
|
|
return http.get(
|
|
{
|
|
url: '/base-paper-trading/get/customer/order/list/page',
|
|
data
|
|
},
|
|
{
|
|
hideLoading: true
|
|
}
|
|
)
|
|
}
|
|
// 原纸交易顶部统计数据
|
|
export function getOrderVolumeStatistics(data) {
|
|
return http.get(
|
|
{
|
|
url: '/base-paper-trading/get/supplier/order-volume-statistics',
|
|
data
|
|
}
|
|
)
|
|
}
|