Authored by lzhy

切换物流接口

@@ -63,7 +63,7 @@ export default { @@ -63,7 +63,7 @@ export default {
63 this.OrderService = new OrderService(); 63 this.OrderService = new OrderService();
64 this.$emit('nextStep', 2); 64 this.$emit('nextStep', 2);
65 this.getLogisticsList(); 65 this.getLogisticsList();
66 - this.orderInfo.expressNumber = this.orderInfo.expressNumber > 0 ? this.orderInfo.expressNumber : ''; 66 + this.orderInfo.expressNumber = +this.orderInfo.expressNumber > 0 ? this.orderInfo.expressNumber : '';
67 }, 67 },
68 68
69 methods: { 69 methods: {
@@ -103,7 +103,7 @@ const domainApis = { @@ -103,7 +103,7 @@ const domainApis = {
103 exportOrdersByStatus: '/erp-gateway-web/shop/export/exportOrdersByStatus', //导出订单列表 103 exportOrdersByStatus: '/erp-gateway-web/shop/export/exportOrdersByStatus', //导出订单列表
104 104
105 //物流接口 105 //物流接口
106 - queryLogisticsList: '/erp-gateway-web/logistics_company/list', //获取物流公司列表 106 + queryLogisticsList: '/erp-gateway-web/shop/logistics_company/list', //获取物流公司列表
107 proxyOutStorage: '/erp-gateway-web/outStorageV2/proxyOutStorage', //发货 107 proxyOutStorage: '/erp-gateway-web/outStorageV2/proxyOutStorage', //发货
108 proxyReturnedGoodsInstorage: '/erp-gateway-web/inStorageV2/proxyReturnedGoodsInstorage', 108 proxyReturnedGoodsInstorage: '/erp-gateway-web/inStorageV2/proxyReturnedGoodsInstorage',
109 109