2024-06-04 09:27:57 +00:00
|
|
|
import { curEnvConf } from "../env"
|
|
|
|
|
|
|
|
|
|
export const host = curEnvConf.apiHost
|
2023-12-18 16:30:33 +00:00
|
|
|
|
|
|
|
|
export default {
|
2024-06-16 03:54:33 +00:00
|
|
|
getLastAppVersion: `/emis/common/getLastAppVersion`, // 获取app最新版本
|
2024-08-31 01:06:50 +00:00
|
|
|
uploadFile: '/common/ossUpload', // 上传文件
|
2024-04-24 07:15:06 +00:00
|
|
|
loginByApp: `/loginByApp`, // 登录
|
|
|
|
|
getInfoByApp: `/getInfoByApp`,// 获取用户基本信息
|
2024-06-08 18:06:43 +00:00
|
|
|
updatePwdByApp: `/updatePwdByApp`,// 修改密码
|
|
|
|
|
getStaffQRCodePng: `/emis/emisStaff/getStaffQRCodePng`,// 获取用户二维码
|
2024-05-27 05:51:40 +00:00
|
|
|
getEmisCountry: `/emis/emisCountry/listSimple`, // 获取国家列表
|
|
|
|
|
getEmisRegion: `/emis/emisRegion/listSimple`,// 获取省市区列表
|
2024-04-24 07:15:06 +00:00
|
|
|
getDicDataJson: `/common/getDicDataJson`, // 获取枚举字段
|
2024-05-08 15:44:43 +00:00
|
|
|
getAppHomeStatData: `/emis/commonTools/getAppHomeStatData`,// 首页统计数据
|
|
|
|
|
getLatestNotices: `/emis/commonTools/getLatestNotices`,// 首页统计数据
|
2024-04-28 09:50:39 +00:00
|
|
|
getCustomerUserAddressList: `/emis/emisCustomerAddress/listSimple`, // 获取客户地址列表
|
|
|
|
|
setDefaultAddressById: `/emis/emisCustomerAddress/setDefaultAddressById`, // 设置默认地址
|
|
|
|
|
deleteAddressById: `/emis/emisCustomerAddress/deleteAddressById`, // 删除地址
|
|
|
|
|
addAddress: `/emis/emisCustomerAddress/addAddress`, // 新增地址
|
|
|
|
|
editAddress: `/emis/emisCustomerAddress/editAddress`, // 编辑地址
|
|
|
|
|
getAddressById: `/emis/emisCustomerAddress/getAddressById`, // 查看地址
|
2024-05-06 07:35:01 +00:00
|
|
|
parseAddress: `/emis/common/parseAddress`, // 智能地址解析(仅中国)
|
2024-04-24 07:15:06 +00:00
|
|
|
getTransLineList: `/emis/emisTransLine/listSimple`, // 获取路线列表
|
2024-04-26 10:32:18 +00:00
|
|
|
getTransProductList: `/emis/emisTransProduct/listSimple`, // 获取产品列表
|
2024-04-24 07:15:06 +00:00
|
|
|
createOrderNo: `/emis/common/realMatchWaybill`, // 创建运单号
|
|
|
|
|
submitOrder: `/emis/emisWaybill/realSubmitOrder`, // 提交订单
|
|
|
|
|
getCustomerUserList: `/emis/emisCustomerUser/listSimple`, // 获取网点客户列表
|
2024-04-27 03:19:18 +00:00
|
|
|
getPickStaffList: `/emis/emisStaff/getStaffList`, // 获取操作、收派 员用户列表
|
2024-04-28 16:24:04 +00:00
|
|
|
getGoodsList: `/emis/emisGoods/listSimple`, // 获取历史--货物列表
|
2024-05-07 17:20:45 +00:00
|
|
|
getHotGoodsList: `/emis/emisGoods/listHotGoods`, // 获取热门--货物列表
|
2024-04-27 03:19:18 +00:00
|
|
|
getMonthpayAccountList: `/emis/emisMonthpayAccount/listSimple`, // 月结账号列表
|
2024-04-27 09:59:09 +00:00
|
|
|
getDestPositionList: `/emis/emisDestination/listSimple`, // 目的地 列表
|
|
|
|
|
getCaculteDestSite: `/emis/emisDestination/getDestSite`, // 自动计算目的地
|
2024-05-29 08:09:20 +00:00
|
|
|
getSendSiteList: `/emis/emisSite/listSimple`, // 出发地-网点列表
|
2024-05-06 16:38:24 +00:00
|
|
|
calcWaybillFee: `/emis/emisWaybill/calcWaybillFee`, // 计算运费
|
2024-05-12 05:25:11 +00:00
|
|
|
calcSetteldWeight: `/emis/emisWaybill/calcSetteldWeight`, // 计算结算重量
|
|
|
|
|
calcVolumeWeight: `/emis/emisWaybill/calcVolumeWeight`, // 体积重量计算
|
2024-09-01 09:24:36 +00:00
|
|
|
|
2024-05-06 16:38:24 +00:00
|
|
|
getOrderList: `/emis/emisWaybill/listSimple`, // 订单列表
|
2024-06-18 08:43:27 +00:00
|
|
|
getWaybillStatMap: `/emis/emisWaybill/getWaybillStatMap`, // 运单统计数据
|
2024-05-06 16:38:24 +00:00
|
|
|
getOrderDetail: `/emis/emisWaybill/getWaybillDetail`, // 订单详情
|
2024-05-07 16:13:08 +00:00
|
|
|
scanRecord: `/emis/emisTmsScanRecord/scan`, // 扫描- 揽收
|
2024-08-08 16:35:12 +00:00
|
|
|
getRealGetWaybillPrintData: `/emis/emisWaybill/realGetPrintList`, // 运单 打印数据--图片
|
|
|
|
|
getRealGetPrintCommandByApp: `/emis/emisWaybill/realGetPrintByApp`, // 运单 打印数据--打印指令
|
2024-05-12 12:49:00 +00:00
|
|
|
queryPrintListSimple: `/emis/emisWaybill/queryPrintListSimple`, // 运单 打印数据-列表
|
2024-05-08 04:16:29 +00:00
|
|
|
getNextStationList: `/emis/emisTmsScanRecord/getNextStationList`, // 获取-扫描下一网点
|
2024-05-30 11:24:27 +00:00
|
|
|
getPreStationList: `/emis/emisTmsScanRecord/getPreStationList`, // 获取-扫描上一网点
|
|
|
|
|
getPackCodeList: `/emis/emisTmsPack/listSimple`, // 获取-合包列表
|
2024-05-21 18:19:58 +00:00
|
|
|
getPayeeList: `/emis/emisStaff/getPayeeList`, // 回款人联系列表
|
|
|
|
|
getSalemanList: `/emis/emisStaff/getSalemanList`, // 销售人联系列表
|
|
|
|
|
preCalcWaybillFee: `/emis/emisWaybill/preCalcWaybillFee`, // 报价试算
|
|
|
|
|
queryWaybillTraceInfo: `/emis/emisTmsScanRecord/queryWaybillTraceInfo`, // 物流轨迹
|
2024-05-23 10:05:40 +00:00
|
|
|
queryProblemTypeList: `/emis/emisProblemType/listSimple`, // 问题件类型列表
|
|
|
|
|
registerProblemInfo: `/emis/emisWaybillProblemInfo/registerProblemInfo`, // 问题件登记
|
|
|
|
|
queryScanWaybillList: `/emis/emisWaybill/queryScanWaybillList`, // 1-发件清单 2-到件清单 3-派件清单
|
2024-06-15 15:17:03 +00:00
|
|
|
uploadWaybillAttach: `/emis/emisWaybillAttachment/uploadWaybillAttach`, // 运单附件上传
|
2024-06-15 15:32:09 +00:00
|
|
|
getPackNo: `/emis/common/getPackNo`, // 生成合包号
|
2024-06-21 03:07:37 +00:00
|
|
|
getCarNoList: `/emis/emisTmsCar/listSimple`, // 获取车牌号列表
|
2024-06-29 17:19:08 +00:00
|
|
|
confirmOrder: `/emis/emisWaybill/confirmOrder`, // 确认接单
|
|
|
|
|
cancelOrder: `/emis/emisWaybill/cancelOrder`, // 取消订单
|
2024-09-04 07:16:06 +00:00
|
|
|
assignTakeMan: `/emis/emisWaybill/assignTakeMan`, // 转单
|
2024-06-29 17:37:45 +00:00
|
|
|
getWareHouseInNo: `/emis/common/getWareHouseInNo`, // 获取新进仓单号
|
2024-09-03 11:12:41 +00:00
|
|
|
getValidExchangeRate: `/emis/emisExchangeRate/getValidExchangeRate`, // 获取汇率
|
2024-08-31 01:06:50 +00:00
|
|
|
|
2025-06-26 00:26:53 +00:00
|
|
|
queryBSettleillList: `/emis/emisSettleBill/list`, // 账单列表
|
|
|
|
|
getInfoBySettleBillNo: `/emis/emisSettleBill/getInfoBySettleBillNo`, // 获取账单详情
|
|
|
|
|
getWxPayQrCode: `/emis/emisSettleBill/getWxPayQrCode`, // 获取微信支付二维码
|
|
|
|
|
sumbitWxPay: `/emis/emisSettleBill/sumbitWxPay`, // 账单-唤起微信立即支付
|
|
|
|
|
|
2024-08-31 01:06:50 +00:00
|
|
|
getWarehouseInInfo: `/emis/emisWarehouseIn/getWarehouseInInfo`, // 获取进仓单详情
|
|
|
|
|
registerWarehouseInInfo: `/emis/emisWarehouseInBatch/registerWarehouseInInfo`, // 收货入仓登记
|
2024-09-01 09:24:36 +00:00
|
|
|
getWarehouseInList: `/emis/emisWarehouseIn/listSimple`, // 进仓单列表
|
2024-09-02 15:32:55 +00:00
|
|
|
exportWarehouseInTpl: `/emis/common/exportWarehouseInTpl`, // 进仓单PDF下载连接
|
2024-09-01 12:02:28 +00:00
|
|
|
cusConfirmWsIn: `/emis/emisWarehouseIn/cusConfirmWsIn`, // 确认进仓单
|
2025-01-05 05:51:59 +00:00
|
|
|
getMyProfitStat: `/emis/emisCommissionProfit/getMyProfitStat`, // 计提明细统计(顶部统计)
|
|
|
|
|
getMyProfitSimpleList: `/emis/emisCommissionProfit/getMyProfitSimpleList`, // 计提明细列表
|
|
|
|
|
getMyBizStatInfo: `/emis/emisWaybill/getMyBizStatInfo`, // 业务统计(顶部统计)
|
|
|
|
|
getMyBizStatList: `/emis/emisWaybill/getMyBizStatList`, // 业务统计明细(区分国家)
|
2025-06-26 03:08:47 +00:00
|
|
|
getMasterEmisWaybills: `/emis/emisWaybill/getMasterEmisWaybills`, // 获取关联主单号
|
|
|
|
|
listSimple: `/emis/emisSite/listSimple`, // 获取网点列表
|
2023-12-18 16:30:33 +00:00
|
|
|
}
|
2024-02-28 09:40:22 +00:00
|
|
|
|