emis-app/common/api/url.js

42 lines
2.2 KiB
JavaScript
Raw Normal View History

2024-02-21 11:52:20 +00:00
// TODO 区分环境
export const host = 'http://47.102.220.189:58089/api/bizsvr'
2023-12-18 16:30:33 +00:00
export default {
2024-04-27 12:44:15 +00:00
uploadFile: '/common/ossUpload',
2024-04-24 07:15:06 +00:00
loginByApp: `/loginByApp`, // 登录
getInfoByApp: `/getInfoByApp`,// 获取用户基本信息
2024-04-28 09:50:39 +00:00
2024-04-24 07:15:06 +00:00
getEmisCountry: `/emis/emisCountry/list`, // 获取国家列表
getEmisRegion: `/emis/emisRegion/list`,// 获取省市区列表
getDicDataJson: `/common/getDicDataJson`, // 获取枚举字段
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-28 09:50:39 +00:00
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-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-06 16:38:24 +00:00
calcWaybillFee: `/emis/emisWaybill/calcWaybillFee`, // 计算运费
2024-05-01 16:46:30 +00:00
calcSetteldWeight: `/emis/emisWaybill/calcSetteldWeight`, // 计算结算重量、结算体积
2024-04-28 05:25:25 +00:00
warehouseInList: `/emis/emisWarehouseIn/listSimple`, // 下单-进仓单列表
2024-04-24 07:15:06 +00:00
2024-05-06 16:38:24 +00:00
getOrderList: `/emis/emisWaybill/listSimple`, // 订单列表
getOrderDetail: `/emis/emisWaybill/getWaybillDetail`, // 订单详情
2024-05-07 16:13:08 +00:00
scanRecord: `/emis/emisTmsScanRecord/scan`, // 扫描- 揽收
2023-12-18 16:30:33 +00:00
}