49 lines
2.7 KiB
JavaScript
49 lines
2.7 KiB
JavaScript
// TODO 区分环境
|
|
export const host = 'http://47.102.220.189:58089/api/bizsvr'
|
|
|
|
export default {
|
|
uploadFile: '/common/ossUpload',
|
|
loginByApp: `/loginByApp`, // 登录
|
|
getInfoByApp: `/getInfoByApp`,// 获取用户基本信息
|
|
|
|
getEmisCountry: `/emis/emisCountry/list`, // 获取国家列表
|
|
getEmisRegion: `/emis/emisRegion/list`,// 获取省市区列表
|
|
getDicDataJson: `/common/getDicDataJson`, // 获取枚举字段
|
|
|
|
getAppHomeStatData: `/emis/commonTools/getAppHomeStatData`,// 首页统计数据
|
|
getLatestNotices: `/emis/commonTools/getLatestNotices`,// 首页统计数据
|
|
|
|
getCustomerUserAddressList: `/emis/emisCustomerAddress/listSimple`, // 获取客户地址列表
|
|
setDefaultAddressById: `/emis/emisCustomerAddress/setDefaultAddressById`, // 设置默认地址
|
|
deleteAddressById: `/emis/emisCustomerAddress/deleteAddressById`, // 删除地址
|
|
addAddress: `/emis/emisCustomerAddress/addAddress`, // 新增地址
|
|
editAddress: `/emis/emisCustomerAddress/editAddress`, // 编辑地址
|
|
getAddressById: `/emis/emisCustomerAddress/getAddressById`, // 查看地址
|
|
parseAddress: `/emis/common/parseAddress`, // 智能地址解析(仅中国)
|
|
|
|
getTransLineList: `/emis/emisTransLine/listSimple`, // 获取路线列表
|
|
getTransProductList: `/emis/emisTransProduct/listSimple`, // 获取产品列表
|
|
createOrderNo: `/emis/common/realMatchWaybill`, // 创建运单号
|
|
submitOrder: `/emis/emisWaybill/realSubmitOrder`, // 提交订单
|
|
getCustomerUserList: `/emis/emisCustomerUser/listSimple`, // 获取网点客户列表
|
|
getPickStaffList: `/emis/emisStaff/getStaffList`, // 获取操作、收派 员用户列表
|
|
getGoodsList: `/emis/emisGoods/listSimple`, // 获取历史--货物列表
|
|
getHotGoodsList: `/emis/emisGoods/listHotGoods`, // 获取热门--货物列表
|
|
getMonthpayAccountList: `/emis/emisMonthpayAccount/listSimple`, // 月结账号列表
|
|
getDestPositionList: `/emis/emisDestination/listSimple`, // 目的地 列表
|
|
getCaculteDestSite: `/emis/emisDestination/getDestSite`, // 自动计算目的地
|
|
calcWaybillFee: `/emis/emisWaybill/calcWaybillFee`, // 计算运费
|
|
calcSetteldWeight: `/emis/emisWaybill/calcSetteldWeight`, // 计算结算重量、结算体积
|
|
warehouseInList: `/emis/emisWarehouseIn/listSimple`, // 下单-进仓单列表
|
|
|
|
getOrderList: `/emis/emisWaybill/listSimple`, // 订单列表
|
|
getOrderDetail: `/emis/emisWaybill/getWaybillDetail`, // 订单详情
|
|
|
|
scanRecord: `/emis/emisTmsScanRecord/scan`, // 扫描- 揽收
|
|
getRealGetWaybillPrintData: `/emis/emisWaybill/realGetWaybillPrintData`, // 运单 打印数据
|
|
|
|
getNextStationList: `/emis/emisTmsScanRecord/getNextStationList`, // 获取-扫描下一网点
|
|
|
|
}
|
|
|