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 } ) }