diff --git a/config/host.js b/config/host.js index f2fb35b..3e143c5 100644 --- a/config/host.js +++ b/config/host.js @@ -8,7 +8,7 @@ // lmy // const devhost = 'http://192.168.10.123:8889/' // zhy -// const devhost = 'http://192.168.10.48:13000/' +const devhost = 'http://192.168.10.48:13000/' // tjj // const devhost = 'http://192.168.10.25:13000/' // cyz @@ -16,7 +16,7 @@ // const devhost = 'http://192.168.6.141:8777/' // 正式 // const devhost = 'http://h5uapi.huitongys.com/' -const devhost = 'https://h5uapi.huitongys.com/' +// const devhost = 'https://h5uapi.huitongys.com/' // cg // const devhost = 'http://192.168.10.200:13000/' /** diff --git a/pagesHome/pages/ArrivalList/ArrivalList.vue b/pagesHome/pages/ArrivalList/ArrivalList.vue index b5799f0..2c20b22 100644 --- a/pagesHome/pages/ArrivalList/ArrivalList.vue +++ b/pagesHome/pages/ArrivalList/ArrivalList.vue @@ -38,7 +38,7 @@ - 实际装车/计划装车: {{item.realLoadingNumber/item.planLoadingNumber}} + 实际装车/计划装车: {{item.realLoadingNumber + '/' +item.planLoadingNumber}} @@ -65,11 +65,11 @@ - + 按件入库 - + 整托入库 @@ -318,9 +318,9 @@ } /** 按件入库 */ - const handleDetailsByOrder = (item) => { + const handleDetailsByOrder = (item, type) => { uni.navigateTo({ - url: '/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails?id=' + item.id + '&type=' + '1' + url: '/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails?id=' + item.id + '&type=' + type }) } diff --git a/pagesHome/pages/StowageListDetails/StowageListDetails.vue b/pagesHome/pages/StowageListDetails/StowageListDetails.vue index f367ab8..c9cd9b7 100644 --- a/pagesHome/pages/StowageListDetails/StowageListDetails.vue +++ b/pagesHome/pages/StowageListDetails/StowageListDetails.vue @@ -216,38 +216,6 @@ - 定制品: @@ -552,8 +520,10 @@ async function scandata() { try { uni.showLoading() + // 按件装车 if (Number(details.pageType) === 1) await scanOrder() - else await scanTray() + // 整托装车 + else if (Number(details.pageType === 2)) await scanTray() } catch (err) { console.log('err :>> ', err); //TODO handle the exception diff --git a/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue b/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue index c88ff2d..dbdd95b 100644 --- a/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue +++ b/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue @@ -6,9 +6,12 @@ 配载批次:{{details.pageInfo.carsNo}} - + 录入包条码 + + 录入托盘码 + 司机名称:{{details.pageInfo.driverName}} @@ -62,88 +65,114 @@ @@ -314,6 +343,14 @@ details.pageType = op.type option.title = Number(op.type) === 2 ? '配载整托卸车' : '配载按件卸车' + + let content = '' + if (Number(details.pageType) === 1) content = '请扫描包件码' + else if (Number(details.pageType) === 2) content = '请扫描托盘码' + + // #ifdef APP + utils.ttsspke(content) + // #endif }) /** 查看订单详情 -- 上架数据(保留页面, 后续跳详情直接cv) */ @@ -431,6 +468,29 @@ console.log('details.datalist :>> ', details.datalist); } + /** 包件卸车 -- 单个 */ + const handleOrderStowage = async (_scanCode) => { + try { + uni.showLoading({ + mask: true + }) + const submitData = { + orderPackageCode: _scanCode, + loadId: details.loadId + } + const res = await postCarsLoadUnloadPackage(submitData) + return res + + } catch (err) { + console.log('err :>> ', err); + //TODO handle the exception + } finally { + uni.hideLoading() + // 刷新 + basicContainer.value.startPullDownRefresh() + } + } + /** 扫描包件 */ const scanOrder = async () => { OrderStowage.value.details.showPopUp = false @@ -502,22 +562,34 @@ return } + if (_trayCode) { + tiplists.value.setdetails({ + isshow: true, + tipstate: 2, + list: [], + isonecheck: true, + title: '是否整托装车', + success: () => { + tiplists.value.setdetails({ isshow: false }) + // 整托卸车 + scanTray() + }, + cancel: async () => { + tiplists.value.setdetails({ isshow: false }) - try { - const submitData = { - orderPackageCode: _scanCode, - loadId: details.loadId - } - const res = await postCarsLoadUnloadPackage(submitData) - return res + handleOrderStowage(_scanCode) + }, + close: () => { + tiplists.value.setdetails({ isshow: false }) + } + }) + details.scancode = _trayCode + return - } catch (err) { - console.log('err :>> ', err); - //TODO handle the exception - } finally { - // 刷新 - basicContainer.value.startPullDownRefresh() } + + + handleOrderStowage(_scanCode) } /** 扫描托盘 */ @@ -577,6 +649,7 @@ function scandata() { // 按件卸车 if (Number(details.pageType) === 1) scanOrder() + else if (Number(details.pageType) === 2) scanTray() } /** 返回上一页 */ @@ -626,10 +699,10 @@ title: content, icon: 'none' }) - // return + return } - // 检测该零担是否有托盘信息; 有: 询问是否整托卸车 + // 检测该零担是否有托盘信息; 有: 询问是否整托卸车, 当在整托卸车时, 不允许单独卸车 if (_value.trayCode) { tiplists.value.setdetails({ @@ -646,6 +719,7 @@ cancel: () => { tiplists.value.setdetails({ isshow: false }) + if (Number(details.pageType) === 2) return handleZeroSoleStowage(_item, _value) }, close: () => { @@ -656,6 +730,7 @@ return } + if (Number(details.pageType) === 2) return handleZeroSoleStowage(_item, _value) } @@ -871,7 +946,9 @@ // 异常 .abnormal { - background: linear-gradient(0% #000000 50% #0086F1); + padding: 10upx; + background: #fff; + margin: 5upx 0; } .w100 { diff --git a/unpackage/dist/dev/app-plus/app-config-service.js b/unpackage/dist/dev/app-plus/app-config-service.js index 4b3612e..fabf661 100644 --- a/unpackage/dist/dev/app-plus/app-config-service.js +++ b/unpackage/dist/dev/app-plus/app-config-service.js @@ -2,7 +2,7 @@ ;(function(){ let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[]; const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","navigationBar":{"backgroundColor":"#F8F8F8","titleText":"uni-app","type":"default","titleColor":"#000000"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"货无忧","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"3.95","entryPagePath":"pages/login/login","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"tabBar":{"position":"bottom","color":"#999999","selectedColor":"#df8926","borderStyle":"black","blurEffect":"none","fontSize":"10px","iconWidth":"24px","spacing":"3px","height":"50px","backgroundColor":"#ffffff","list":[{"pagePath":"pages/index/index","iconPath":"/static/TabberIcon/icon1.png","selectedIconPath":"/static/TabberIcon/icon1check.png","text":"工作台"},{"pagePath":"pages/taskList/taskList","iconPath":"/static/TabberIcon/icon2.png","selectedIconPath":"/static/TabberIcon/icon2check.png","text":"任务"},{"pagePath":"pages/user/user","iconPath":"/static/TabberIcon/icon5.png","selectedIconPath":"/static/TabberIcon/icon5check.png","text":"我的"}],"selectedIndex":0,"shown":true},"locales":{},"darkmode":false,"themeConfig":{}}; - const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"登录","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/index","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":0,"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"工作台","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/user/user","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":2,"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"我的","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/news/news","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"消息","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/taskList/taskList","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"任务","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/reportForms/reportForms","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"报表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/pickingScan/pickingScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"拣货扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StowageList/StowageList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配载装车","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StowageListDetails/StowageListDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配载按件装车","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelayScanList/RelayScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"中转装车","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/codePlateBracket/codePlateBracket","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"码板打托","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ArrivalList/ArrivalList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"到车列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"到车入库详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPickupScan/SelfPickupScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/LoadingScan/LoadingScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"装车扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/loadingRetention/loadingRetention","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"装车滞留","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUplist/StockUplist","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUplistScandetails/StockUplistScandetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货列表扫码","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownScan/DownScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/signinScan/signinScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPScanList/SelfPScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPickupDetails/SelfPickupDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/LoadingDetails/LoadingDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配车明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配送客户扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerSign/CustomerSign","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户签收","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/signOrderScan/signOrderScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SignDetailScan/SignDetailScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/setbarcode/setbarcode","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配置包条码","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OfflineUpload/OfflineUpload","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"离线上传","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/createTask/createTask","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"创建任务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ordersorting/ordersorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/lnventorysorting/lnventorysorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/scansorting/scansorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/peopleSorting/peopleSorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OrderSortingDetail/OrderSortingDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"继续分拣列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanSortingType/ScanSortingType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryType/inventoryType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品类型","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryDetail/inventoryDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描列表详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryDetailList/inventoryDetailList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描详情明细","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryenter/inventoryenter","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品录入","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/lnventorysortinglist/lnventorysortinglist","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"分拣列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanUpType/ScanUpType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanUp/ScanUp","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelocationType/RelocationType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Relocation/Relocation","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleScanUpType/PeopleScanUpType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleScanUp/PeopleScanUp","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PickingScanList/PickingScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"拣货列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Retention/Retention","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"滞留","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/MergeTray/MergeTray","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"合托","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/MergeTrayDetails/MergeTrayDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"合并托盘","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownGoodsType/DownGoodsType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownGoods/DownGoods","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SetPrice/SetPrice","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"设置服务费","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RemoveTray/RemoveTray","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"空置托盘","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Check/Check","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"复核","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/createAddServe/createAddServe","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"创建增值服务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderDetail/orderDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelocationAllocationId/RelocationAllocationId","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库库位","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderDetails/orderDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderInquiry/orderInquiry","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单查询","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户托盘扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUpListZero/StockUpListZero","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货零担列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesUser/pages/about/about","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"关于我们","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesUser/pages/systemSettings/systemSettings","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"系统设置","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/dynamicCheck/dynamicCheck","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"盘点任务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/checkTaskList/checkTaskList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"盘点任务列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"随机盘点","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库位盘点","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/trayCheckDetails/trayCheckDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"托盘盘点","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/contracts/contracts","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"按合同号盘点","style":"custom","type":"default"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute)); + const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"登录","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/index","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":0,"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"工作台","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/user/user","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":2,"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"我的","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/news/news","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"消息","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/taskList/taskList","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"任务","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/reportForms/reportForms","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"报表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/pickingScan/pickingScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"拣货扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StowageList/StowageList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配载装车","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StowageListDetails/StowageListDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配载按件装车","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelayScanList/RelayScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"中转装车","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/codePlateBracket/codePlateBracket","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"码板打托","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ArrivalList/ArrivalList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"到车列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"到车入库详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPickupScan/SelfPickupScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/LoadingScan/LoadingScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"装车扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/loadingRetention/loadingRetention","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"装车滞留","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUplist/StockUplist","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUplistScandetails/StockUplistScandetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货列表扫码","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownScan/DownScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/signinScan/signinScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPScanList/SelfPScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPickupDetails/SelfPickupDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/LoadingDetails/LoadingDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配车明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配送客户扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerSign/CustomerSign","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户签收","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/signOrderScan/signOrderScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SignDetailScan/SignDetailScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/setbarcode/setbarcode","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配置包条码","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OfflineUpload/OfflineUpload","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"离线上传","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/createTask/createTask","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"创建任务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ordersorting/ordersorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/lnventorysorting/lnventorysorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/scansorting/scansorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/peopleSorting/peopleSorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OrderSortingDetail/OrderSortingDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"继续分拣列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanSortingType/ScanSortingType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryType/inventoryType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品类型","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryDetail/inventoryDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描列表详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryDetailList/inventoryDetailList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描详情明细","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryenter/inventoryenter","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品录入","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/lnventorysortinglist/lnventorysortinglist","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"分拣列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanUpType/ScanUpType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanUp/ScanUp","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelocationType/RelocationType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Relocation/Relocation","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleScanUpType/PeopleScanUpType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleScanUp/PeopleScanUp","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PickingScanList/PickingScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"拣货列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Retention/Retention","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"滞留","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/MergeTray/MergeTray","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"合托","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/MergeTrayDetails/MergeTrayDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"合并托盘","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownGoodsType/DownGoodsType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownGoods/DownGoods","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SetPrice/SetPrice","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"设置服务费","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RemoveTray/RemoveTray","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"空置托盘","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Check/Check","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"复核","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/createAddServe/createAddServe","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"创建增值服务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderDetail/orderDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelocationAllocationId/RelocationAllocationId","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库库位","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderDetails/orderDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderInquiry/orderInquiry","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单查询","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户托盘扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUpListZero/StockUpListZero","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货零担列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesUser/pages/about/about","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"关于我们","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesUser/pages/systemSettings/systemSettings","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"系统设置","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesUser/pages/securitySettings/securitySettings","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"安全设置","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/dynamicCheck/dynamicCheck","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"盘点任务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/checkTaskList/checkTaskList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"盘点任务列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"随机盘点","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库位盘点","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/trayCheckDetails/trayCheckDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"托盘盘点","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/contracts/contracts","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"按合同号盘点","style":"custom","type":"default"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute)); __uniConfig.styles=[];//styles __uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); __uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); diff --git a/unpackage/dist/dev/app-plus/app-service.js b/unpackage/dist/dev/app-plus/app-service.js index 564f9c8..fd007e2 100644 --- a/unpackage/dist/dev/app-plus/app-service.js +++ b/unpackage/dist/dev/app-plus/app-service.js @@ -1712,7 +1712,7 @@ if (uni.restoreGlobal) { }; }; const base64 = new Base64(); - const devhost = "https://h5uapi.huitongys.com/"; + const devhost = "http://192.168.10.48:13000/"; const imghost = ""; const host = devhost; const APPKEY = "h5u:h5u_secret"; @@ -2224,6 +2224,13 @@ if (uni.restoreGlobal) { data }); } + function editPassword(data) { + return service({ + url: `blade-system/user/update-password?oldPassword=${data.oldPassword}&newPassword=${data.newPassword}&newPassword1=${data.newPassword1}`, + method: "post", + data + }); + } function distributionStockupscanningCode(data) { return service({ url: `logpm-distribution/app/distributionStockup/scanningCode`, @@ -5013,7 +5020,7 @@ This will fail in production if not fixed.`); CHOOSE_BLUETOOTH }; }); - const _sfc_main$1S = /* @__PURE__ */ vue.defineComponent({ + const _sfc_main$1T = /* @__PURE__ */ vue.defineComponent({ __name: "login", setup(__props) { const { HANDLE_INITBLUETOOTH } = useBluetoothStore(); @@ -5334,7 +5341,7 @@ This will fail in production if not fixed.`); } return target; }; - const PagesLoginLogin = /* @__PURE__ */ _export_sfc(_sfc_main$1S, [["__file", "D:/worksp/logpm/pages/login/login.vue"]]); + const PagesLoginLogin = /* @__PURE__ */ _export_sfc(_sfc_main$1T, [["__file", "D:/worksp/logpm/pages/login/login.vue"]]); const version$1 = "3"; { formatAppLog("log", "at uni_modules/uview-plus/libs/config/config.js:5", ` @@ -7032,7 +7039,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1R = { + const _sfc_main$1S = { name: "u-status-bar", mixins: [mpMixin$1, mixin$1, props$k], data() { @@ -7061,7 +7068,7 @@ This will fail in production if not fixed.`); /* STYLE */ ); } - const __easycom_0$6 = /* @__PURE__ */ _export_sfc(_sfc_main$1R, [["render", _sfc_render$A], ["__scopeId", "data-v-eb8e0cdd"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-status-bar/u-status-bar.vue"]]); + const __easycom_0$6 = /* @__PURE__ */ _export_sfc(_sfc_main$1S, [["render", _sfc_render$A], ["__scopeId", "data-v-eb8e0cdd"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-status-bar/u-status-bar.vue"]]); const icons = { "uicon-level": "", "uicon-column-line": "", @@ -7365,7 +7372,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1Q = { + const _sfc_main$1R = { name: "u-icon", data() { return {}; @@ -7459,7 +7466,7 @@ This will fail in production if not fixed.`); /* CLASS */ ); } - const __easycom_0$5 = /* @__PURE__ */ _export_sfc(_sfc_main$1Q, [["render", _sfc_render$z], ["__scopeId", "data-v-ac70166d"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-icon/u-icon.vue"]]); + const __easycom_0$5 = /* @__PURE__ */ _export_sfc(_sfc_main$1R, [["render", _sfc_render$z], ["__scopeId", "data-v-ac70166d"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-icon/u-icon.vue"]]); const props$i = { props: { // 是否开启顶部安全区适配 @@ -7544,7 +7551,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1P = { + const _sfc_main$1Q = { name: "u-navbar", mixins: [mpMixin$1, mixin$1, props$i], data() { @@ -7676,7 +7683,7 @@ This will fail in production if not fixed.`); ) ]); } - const __easycom_0$4 = /* @__PURE__ */ _export_sfc(_sfc_main$1P, [["render", _sfc_render$y], ["__scopeId", "data-v-f631659b"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-navbar/u-navbar.vue"]]); + const __easycom_0$4 = /* @__PURE__ */ _export_sfc(_sfc_main$1Q, [["render", _sfc_render$y], ["__scopeId", "data-v-f631659b"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-navbar/u-navbar.vue"]]); function getImageCache(filePath, fileMd51) { return new Promise((resolve, reject) => { let fileMd5 = ""; @@ -7724,7 +7731,7 @@ This will fail in production if not fixed.`); } }); } - const _sfc_main$1O = /* @__PURE__ */ vue.defineComponent({ + const _sfc_main$1P = /* @__PURE__ */ vue.defineComponent({ __name: "index", setup(__props) { const tip = vue.ref(null); @@ -8080,8 +8087,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesIndexIndex = /* @__PURE__ */ _export_sfc(_sfc_main$1O, [["__file", "D:/worksp/logpm/pages/index/index.vue"]]); - const _sfc_main$1N = /* @__PURE__ */ vue.defineComponent({ + const PagesIndexIndex = /* @__PURE__ */ _export_sfc(_sfc_main$1P, [["__file", "D:/worksp/logpm/pages/index/index.vue"]]); + const _sfc_main$1O = /* @__PURE__ */ vue.defineComponent({ __name: "user", setup(__props) { let users = vue.ref(null); @@ -8162,6 +8169,10 @@ This will fail in production if not fixed.`); uni.navigateTo({ url: "/pagesUser/pages/systemSettings/systemSettings" }); + } else if (item.type == 4) { + uni.navigateTo({ + url: "/pagesUser/pages/securitySettings/securitySettings" + }); } else if (item.type == 5) { uni.navigateTo({ url: "/pagesUser/pages/about/about" @@ -8183,24 +8194,24 @@ This will fail in production if not fixed.`); uni.reLaunch({ url: "/pages/login/login" }); - formatAppLog("log", "at pages/user/user.vue:190", res.currentSize); - formatAppLog("log", "at pages/user/user.vue:191", String(res.limitSize)); + formatAppLog("log", "at pages/user/user.vue:196", res.currentSize); + formatAppLog("log", "at pages/user/user.vue:197", String(res.limitSize)); } async function updateApp() { let version2 = await utils.getversion(); - formatAppLog("log", "at pages/user/user.vue:200", "version 版本>>>>", version2); + formatAppLog("log", "at pages/user/user.vue:206", "version 版本>>>>", version2); let data = { betenantCode: uni.getStorageSync("userinfo").tenant_id, versionCode: version2.version.split(".").join(""), versionType: version2.pkName.indexOf("test") != -1 ? "1" : version2.pkName.indexOf("bate") != -1 ? "2" : "3" }; - formatAppLog("log", "at pages/user/user.vue:206", "data>>>>", data); + formatAppLog("log", "at pages/user/user.vue:212", "data>>>>", data); let response = await AppPdaversiondetail(data); - formatAppLog("log", "at pages/user/user.vue:208", "123 :>> ", 123); - formatAppLog("log", "at pages/user/user.vue:209", "response :>> ", response); + formatAppLog("log", "at pages/user/user.vue:214", "123 :>> ", 123); + formatAppLog("log", "at pages/user/user.vue:215", "response :>> ", response); if (response.code == 200 && response.data && Object.keys(response.data).length !== 0) { - formatAppLog("log", "at pages/user/user.vue:211", "res.data", response.data); - formatAppLog("log", "at pages/user/user.vue:212", "有可更新包"); + formatAppLog("log", "at pages/user/user.vue:217", "res.data", response.data); + formatAppLog("log", "at pages/user/user.vue:218", "有可更新包"); if (response.data.noSensation == "2" && response.data.link.indexOf("wgt") != -1) { utils.updatefile1(response.data.link); } else { @@ -8401,8 +8412,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesUserUser = /* @__PURE__ */ _export_sfc(_sfc_main$1N, [["__file", "D:/worksp/logpm/pages/user/user.vue"]]); - const _sfc_main$1M = /* @__PURE__ */ vue.defineComponent({ + const PagesUserUser = /* @__PURE__ */ _export_sfc(_sfc_main$1O, [["__file", "D:/worksp/logpm/pages/user/user.vue"]]); + const _sfc_main$1N = /* @__PURE__ */ vue.defineComponent({ __name: "news", setup(__props) { onPullDownRefresh(() => { @@ -8465,8 +8476,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesNewsNews = /* @__PURE__ */ _export_sfc(_sfc_main$1M, [["__file", "D:/worksp/logpm/pages/news/news.vue"]]); - const _sfc_main$1L = /* @__PURE__ */ vue.defineComponent({ + const PagesNewsNews = /* @__PURE__ */ _export_sfc(_sfc_main$1N, [["__file", "D:/worksp/logpm/pages/news/news.vue"]]); + const _sfc_main$1M = /* @__PURE__ */ vue.defineComponent({ __name: "taskList", setup(__props) { const tip = vue.ref(null); @@ -8578,8 +8589,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesTaskListTaskList = /* @__PURE__ */ _export_sfc(_sfc_main$1L, [["__file", "D:/worksp/logpm/pages/taskList/taskList.vue"]]); - const _sfc_main$1K = /* @__PURE__ */ vue.defineComponent({ + const PagesTaskListTaskList = /* @__PURE__ */ _export_sfc(_sfc_main$1M, [["__file", "D:/worksp/logpm/pages/taskList/taskList.vue"]]); + const _sfc_main$1L = /* @__PURE__ */ vue.defineComponent({ __name: "reportForms", setup(__props) { onPullDownRefresh(() => { @@ -8593,7 +8604,7 @@ This will fail in production if not fixed.`); }; } }); - const PagesReportFormsReportForms = /* @__PURE__ */ _export_sfc(_sfc_main$1K, [["__file", "D:/worksp/logpm/pages/reportForms/reportForms.vue"]]); + const PagesReportFormsReportForms = /* @__PURE__ */ _export_sfc(_sfc_main$1L, [["__file", "D:/worksp/logpm/pages/reportForms/reportForms.vue"]]); let calendar = { /** * 农历1900-2100的润大小信息表 @@ -9513,7 +9524,7 @@ This will fail in production if not fixed.`); solar2lunar: calendar.solar2lunar, lunar2solar: calendar.lunar2solar }; - const _sfc_main$1J = { + const _sfc_main$1K = { name: "lCalendar", model: { prop: "value", @@ -10167,8 +10178,8 @@ This will fail in production if not fixed.`); /* HYDRATE_EVENTS */ ); } - const __easycom_1$4 = /* @__PURE__ */ _export_sfc(_sfc_main$1J, [["render", _sfc_render$x], ["__scopeId", "data-v-665735f1"], ["__file", "D:/worksp/logpm/uni_modules/l-calendar/components/l-calendar/l-calendar.vue"]]); - const _sfc_main$1I = /* @__PURE__ */ vue.defineComponent({ + const __easycom_1$4 = /* @__PURE__ */ _export_sfc(_sfc_main$1K, [["render", _sfc_render$x], ["__scopeId", "data-v-665735f1"], ["__file", "D:/worksp/logpm/uni_modules/l-calendar/components/l-calendar/l-calendar.vue"]]); + const _sfc_main$1J = /* @__PURE__ */ vue.defineComponent({ __name: "pickingScan", setup(__props) { const option = { @@ -10531,8 +10542,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesPickingScanPickingScan = /* @__PURE__ */ _export_sfc(_sfc_main$1I, [["__file", "D:/worksp/logpm/pagesHome/pages/pickingScan/pickingScan.vue"]]); - const _sfc_main$1H = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesPickingScanPickingScan = /* @__PURE__ */ _export_sfc(_sfc_main$1J, [["__file", "D:/worksp/logpm/pagesHome/pages/pickingScan/pickingScan.vue"]]); + const _sfc_main$1I = /* @__PURE__ */ vue.defineComponent({ __name: "StowageList", setup(__props) { const option = { @@ -10900,7 +10911,7 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesStowageListStowageList = /* @__PURE__ */ _export_sfc(_sfc_main$1H, [["__scopeId", "data-v-10679139"], ["__file", "D:/worksp/logpm/pagesHome/pages/StowageList/StowageList.vue"]]); + const PagesHomePagesStowageListStowageList = /* @__PURE__ */ _export_sfc(_sfc_main$1I, [["__scopeId", "data-v-10679139"], ["__file", "D:/worksp/logpm/pagesHome/pages/StowageList/StowageList.vue"]]); const useSystemSettingsStore = defineStore("useSystemSettingsStore", () => { const scanStateList = vue.reactive([{ title: "关闭", @@ -10920,7 +10931,7 @@ This will fail in production if not fixed.`); HANDLE_SCANSTATE }; }); - const _sfc_main$1G = /* @__PURE__ */ vue.defineComponent({ + const _sfc_main$1H = /* @__PURE__ */ vue.defineComponent({ __name: "StowageListDetails", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -10984,7 +10995,7 @@ This will fail in production if not fixed.`); uni.$off("scancodedate"); uni.$on("scancodedate", function(code2) { if (code2) { - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:369", "code", code2); + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:337", "code", code2); details.scancode = code2; details.isscan = true; scandata(); @@ -11019,7 +11030,7 @@ This will fail in production if not fixed.`); loadId: details.loadId }); const { code: code2, data } = response; - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:413", "response :>> ", response); + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:381", "response :>> ", response); if (code2 === 200) { details.pageInfo = data; details.datalist = details.orderStatus === 1 ? details.pageInfo.loadScanOrderList : details.orderStatus === 2 ? details.pageInfo.zeroList : details.pageInfo.exceptionList; @@ -11033,7 +11044,7 @@ This will fail in production if not fixed.`); try { await initPageByOrder(); } catch (err) { - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:436", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:404", "err :>> ", err); } finally { return null; } @@ -11115,10 +11126,10 @@ This will fail in production if not fixed.`); uni.showLoading(); if (Number(details.pageType) === 1) await scanOrder(); - else + else if (Number(details.pageType === 2)) await scanTray(); } catch (err) { - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:558", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:528", "err :>> ", err); } finally { uni.hideLoading(); basicContainer.value.startPullDownRefresh(); @@ -11148,7 +11159,7 @@ This will fail in production if not fixed.`); enterNum: _item.enterNum }; const res = await postLoadingZero(submitData); - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:595", "res :>> ", res); + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:565", "res :>> ", res); } catch (e) { } finally { uni.hideLoading(); @@ -11159,7 +11170,7 @@ This will fail in production if not fixed.`); }); }; const handleDetails = async (item, index2, type2) => { - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:613", "item :>> ", item); + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:583", "item :>> ", item); if (details.listcheckindex == index2) { details.listcheckindex = -1; } else { @@ -11173,8 +11184,8 @@ This will fail in production if not fixed.`); if (res.code !== 200) return; item.distributionAppParcelListVOS = res.data; - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:628", "item.distributionAppParcelListVOS :>> ", item.distributionAppParcelListVOS); - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:629", "res :>> ", res); + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:598", "item.distributionAppParcelListVOS :>> ", item.distributionAppParcelListVOS); + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:599", "res :>> ", res); } catch (e) { } finally { uni.hideLoading(); @@ -11186,7 +11197,7 @@ This will fail in production if not fixed.`); uni.showLoading({ mask: true }); - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:645", "_item :>> ", _item); + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:615", "_item :>> ", _item); const submitData = { orderCode: _item.orderCode, carsLoadScanId: _item.id @@ -11802,7 +11813,6 @@ This will fail in production if not fixed.`); 128 /* KEYED_FRAGMENT */ )), - vue.createCommentVNode(' \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n 产品名称: {{value.productName}}\r\n \r\n \r\n 在托可用: {{value.stockNum}}\r\n \r\n \r\n 在库数: {{value.stockNum}}\r\n \r\n \r\n \r\n \r\n \r\n \r\n '), vue.createElementVNode("view", { class: "" }, " 定制品: "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, @@ -11851,8 +11861,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesStowageListDetailsStowageListDetails = /* @__PURE__ */ _export_sfc(_sfc_main$1G, [["__scopeId", "data-v-66cbfd20"], ["__file", "D:/worksp/logpm/pagesHome/pages/StowageListDetails/StowageListDetails.vue"]]); - const _sfc_main$1F = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesStowageListDetailsStowageListDetails = /* @__PURE__ */ _export_sfc(_sfc_main$1H, [["__scopeId", "data-v-66cbfd20"], ["__file", "D:/worksp/logpm/pagesHome/pages/StowageListDetails/StowageListDetails.vue"]]); + const _sfc_main$1G = /* @__PURE__ */ vue.defineComponent({ __name: "RelayScanList", setup(__props) { const option = { @@ -12216,8 +12226,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesRelayScanListRelayScanList = /* @__PURE__ */ _export_sfc(_sfc_main$1F, [["__file", "D:/worksp/logpm/pagesHome/pages/RelayScanList/RelayScanList.vue"]]); - const _sfc_main$1E = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesRelayScanListRelayScanList = /* @__PURE__ */ _export_sfc(_sfc_main$1G, [["__file", "D:/worksp/logpm/pagesHome/pages/RelayScanList/RelayScanList.vue"]]); + const _sfc_main$1F = /* @__PURE__ */ vue.defineComponent({ __name: "codePlateBracket", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -12650,8 +12660,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesCodePlateBracketCodePlateBracket = /* @__PURE__ */ _export_sfc(_sfc_main$1E, [["__scopeId", "data-v-dd2e73fd"], ["__file", "D:/worksp/logpm/pagesHome/pages/codePlateBracket/codePlateBracket.vue"]]); - const _sfc_main$1D = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesCodePlateBracketCodePlateBracket = /* @__PURE__ */ _export_sfc(_sfc_main$1F, [["__scopeId", "data-v-dd2e73fd"], ["__file", "D:/worksp/logpm/pagesHome/pages/codePlateBracket/codePlateBracket.vue"]]); + const _sfc_main$1E = /* @__PURE__ */ vue.defineComponent({ __name: "ArrivalList", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -12824,9 +12834,9 @@ This will fail in production if not fixed.`); date2.value = []; init(); } - const handleDetailsByOrder = (item) => { + const handleDetailsByOrder = (item, type2) => { uni.navigateTo({ - url: "/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails?id=" + item.id + "&type=1" + url: "/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails?id=" + item.id + "&type=" + type2 }); }; const { @@ -12921,7 +12931,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - " 实际装车/计划装车: " + vue.toDisplayString(item.realLoadingNumber / item.planLoadingNumber), + " 实际装车/计划装车: " + vue.toDisplayString(item.realLoadingNumber + "/" + item.planLoadingNumber), 1 /* TEXT */ ), @@ -12960,9 +12970,12 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "button-container" }, [ vue.createElementVNode("view", { class: "button", - onClick: ($event) => handleDetailsByOrder(item) + onClick: ($event) => handleDetailsByOrder(item, 1) }, " 按件入库 ", 8, ["onClick"]), - vue.createElementVNode("view", { class: "button" }, " 整托入库 "), + vue.createElementVNode("view", { + class: "button", + onClick: ($event) => handleDetailsByOrder(item, 2) + }, " 整托入库 ", 8, ["onClick"]), vue.createElementVNode("view", { class: "button" }, " 卸分一体 "), vue.createElementVNode("view", { class: "button" }, " 按件装车 "), vue.createElementVNode("view", { class: "button" }, " 整托装车 ") @@ -13001,7 +13014,7 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesArrivalListArrivalList = /* @__PURE__ */ _export_sfc(_sfc_main$1D, [["__scopeId", "data-v-1bee7dd1"], ["__file", "D:/worksp/logpm/pagesHome/pages/ArrivalList/ArrivalList.vue"]]); + const PagesHomePagesArrivalListArrivalList = /* @__PURE__ */ _export_sfc(_sfc_main$1E, [["__scopeId", "data-v-1bee7dd1"], ["__file", "D:/worksp/logpm/pagesHome/pages/ArrivalList/ArrivalList.vue"]]); const props$h = { props: { color: { @@ -13035,7 +13048,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1C = { + const _sfc_main$1D = { name: "u-line", mixins: [mpMixin$1, mixin$1, props$h], computed: { @@ -13072,7 +13085,7 @@ This will fail in production if not fixed.`); /* STYLE */ ); } - const __easycom_1$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1C, [["render", _sfc_render$w], ["__scopeId", "data-v-72791e59"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-line/u-line.vue"]]); + const __easycom_1$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1D, [["render", _sfc_render$w], ["__scopeId", "data-v-72791e59"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-line/u-line.vue"]]); const props$g = { props: { // 是否虚线 @@ -13117,7 +13130,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1B = { + const _sfc_main$1C = { name: "u-divider", mixins: [mpMixin$1, mixin$1, props$g], computed: { @@ -13196,8 +13209,8 @@ This will fail in production if not fixed.`); /* STYLE */ ); } - const __easycom_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1B, [["render", _sfc_render$v], ["__scopeId", "data-v-ea022cee"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-divider/u-divider.vue"]]); - const _sfc_main$1A = {}; + const __easycom_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1C, [["render", _sfc_render$v], ["__scopeId", "data-v-ea022cee"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-divider/u-divider.vue"]]); + const _sfc_main$1B = {}; function _sfc_render$u(_ctx, _cache) { return vue.openBlock(), vue.createElementBlock("div", { class: "template" }, [ vue.createElementVNode("view", { class: "cartoon" }, [ @@ -13212,10 +13225,10 @@ This will fail in production if not fixed.`); ]) ]); } - const loading = /* @__PURE__ */ _export_sfc(_sfc_main$1A, [["render", _sfc_render$u], ["__scopeId", "data-v-428afd62"], ["__file", "D:/worksp/logpm/uni_modules/jp-virtual-list/components/jp-virtual-list/loading.vue"]]); + const loading = /* @__PURE__ */ _export_sfc(_sfc_main$1B, [["render", _sfc_render$u], ["__scopeId", "data-v-428afd62"], ["__file", "D:/worksp/logpm/uni_modules/jp-virtual-list/components/jp-virtual-list/loading.vue"]]); const _imports_0$3 = "/assets/top.8e031a5d.png"; let observer = null; - const _sfc_main$1z = { + const _sfc_main$1A = { components: { loading }, @@ -13924,8 +13937,8 @@ This will fail in production if not fixed.`); /* NEED_PATCH */ ); } - const __easycom_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1z, [["render", _sfc_render$t], ["__scopeId", "data-v-956c70b1"], ["__file", "D:/worksp/logpm/uni_modules/jp-virtual-list/components/jp-virtual-list/jp-virtual-list.vue"]]); - const _sfc_main$1y = /* @__PURE__ */ vue.defineComponent({ + const __easycom_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1A, [["render", _sfc_render$t], ["__scopeId", "data-v-956c70b1"], ["__file", "D:/worksp/logpm/uni_modules/jp-virtual-list/components/jp-virtual-list/jp-virtual-list.vue"]]); + const _sfc_main$1z = /* @__PURE__ */ vue.defineComponent({ __name: "VehicleArrivalDetails", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -13986,12 +13999,18 @@ This will fail in production if not fixed.`); details.loadId = op.id; details.pageType = op.type; option.title = Number(op.type) === 2 ? "配载整托卸车" : "配载按件卸车"; + let content = ""; + if (Number(details.pageType) === 1) + content = "请扫描包件码"; + else if (Number(details.pageType) === 2) + content = "请扫描托盘码"; + utils2.ttsspke(content); }); onShow(async () => { uni.$off("scancodedate"); uni.$on("scancodedate", function(code2) { if (code2) { - formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:331", "code", code2); + formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:368", "code", code2); details.scancode = code2; details.isscan = true; scandata(); @@ -14026,7 +14045,7 @@ This will fail in production if not fixed.`); loadId: details.loadId }); const { code: code2, data } = response; - formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:375", "response :>> ", response); + formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:412", "response :>> ", response); if (code2 === 200) { details.pageInfo = data; details.datalist = details.orderStatus === 1 ? details.pageInfo.unloadScanOrderList : details.orderStatus === 2 ? details.pageInfo.unloadZeroList : details.pageInfo.exceptionList; @@ -14040,7 +14059,7 @@ This will fail in production if not fixed.`); try { const res = await initPageByOrder(); } catch (err) { - formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:398", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:435", "err :>> ", err); } finally { return null; } @@ -14050,13 +14069,32 @@ This will fail in production if not fixed.`); return; details.orderStatus = state; details.datalist = details.orderStatus === 1 ? details.pageInfo.unloadScanOrderList : details.orderStatus === 2 ? details.pageInfo.unloadZeroList : details.pageInfo.exceptionList; - formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:431", "details.datalist :>> ", details.datalist); + formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:468", "details.datalist :>> ", details.datalist); } + const handleOrderStowage = async (_scanCode) => { + try { + uni.showLoading({ + mask: true + }); + const submitData = { + orderPackageCode: _scanCode, + loadId: details.loadId + }; + const res = await postCarsLoadUnloadPackage(submitData); + return res; + } catch (err) { + formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:485", "err :>> ", err); + } finally { + uni.hideLoading(); + basicContainer.value.startPullDownRefresh(); + } + }; const scanOrder = async () => { OrderStowage.value.details.showPopUp = false; let _scanCode = details.scancode; let isHave = false; let returnContent = ""; + let _trayCode = ""; for (let item of details.pageInfo.unloadScanOrderList) { let isBreak = false; for (let val of item.unloadPackageList) { @@ -14069,7 +14107,7 @@ This will fail in production if not fixed.`); returnContent = "该包件已签收"; } if (val.trayCode) { - val.trayCode; + _trayCode = val.trayCode; } } } @@ -14097,7 +14135,7 @@ This will fail in production if not fixed.`); const res = await postCarsLoadUnloadPackage(submitData); return res; } catch (err) { - formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:493", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:553", "err :>> ", err); } finally { OrderStowage.value.details.showPopUp = false; basicContainer.value.startPullDownRefresh(); @@ -14106,18 +14144,29 @@ This will fail in production if not fixed.`); }); return; } - try { - const submitData = { - orderPackageCode: _scanCode, - loadId: details.loadId - }; - const res = await postCarsLoadUnloadPackage(submitData); - return res; - } catch (err) { - formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:515", "err :>> ", err); - } finally { - basicContainer.value.startPullDownRefresh(); + if (_trayCode) { + tiplists.value.setdetails({ + isshow: true, + tipstate: 2, + list: [], + isonecheck: true, + title: "是否整托装车", + success: () => { + tiplists.value.setdetails({ isshow: false }); + scanTray(); + }, + cancel: async () => { + tiplists.value.setdetails({ isshow: false }); + handleOrderStowage(_scanCode); + }, + close: () => { + tiplists.value.setdetails({ isshow: false }); + } + }); + details.scancode = _trayCode; + return; } + handleOrderStowage(_scanCode); }; const scanTray = async () => { const submitData = { @@ -14166,6 +14215,8 @@ This will fail in production if not fixed.`); function scandata() { if (Number(details.pageType) === 1) scanOrder(); + else if (Number(details.pageType) === 2) + scanTray(); } const leftClick = () => { uni.navigateBack(); @@ -14177,7 +14228,7 @@ This will fail in production if not fixed.`); title: "零担卸车", showPopUp: true, success() { - formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:597", "details.zeroInfo :>> ", details.zeroInfo); + formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue:670", "details.zeroInfo :>> ", details.zeroInfo); const submitData = { loadId: details.loadId, waybillNo: details.zeroInfo.waybillNo, @@ -14202,6 +14253,7 @@ This will fail in production if not fixed.`); title: content, icon: "none" }); + return; } if (_value.trayCode) { tiplists.value.setdetails({ @@ -14216,6 +14268,8 @@ This will fail in production if not fixed.`); }, cancel: () => { tiplists.value.setdetails({ isshow: false }); + if (Number(details.pageType) === 2) + return; handleZeroSoleStowage(_item, _value); }, close: () => { @@ -14225,6 +14279,8 @@ This will fail in production if not fixed.`); details.scancode = _value.trayCode; return; } + if (Number(details.pageType) === 2) + return; handleZeroSoleStowage(_item, _value); }; const { orderStatus, items, datalist } = vue.toRefs(details); @@ -14257,10 +14313,15 @@ This will fail in production if not fixed.`); 1 /* TEXT */ ), - vue.createElementVNode("view", { + Number(vue.unref(details).pageType) !== 2 ? (vue.openBlock(), vue.createElementBlock("view", { + key: 0, class: "butlur", onClick: showsdqs - }, " 录入包条码 ") + }, " 录入包条码 ")) : (vue.openBlock(), vue.createElementBlock("view", { + key: 1, + class: "butlur", + onClick: showsdqs + }, " 录入托盘码 ")) ]), vue.createElementVNode("view", null, [ vue.createElementVNode( @@ -14398,9 +14459,9 @@ This will fail in production if not fixed.`); ref_for: true, ref: item.orderCode }, [ - vue.createVNode( + Number(vue.unref(orderStatus)) !== 3 ? (vue.openBlock(), vue.createBlock( _component_PullDownBox, - null, + { key: 0 }, { title: vue.withCtx(() => [ vue.createElementVNode("view", { class: "contenbx1" }, [ @@ -14556,7 +14617,55 @@ This will fail in production if not fixed.`); }, 1024 /* DYNAMIC_SLOTS */ - ) + )) : (vue.openBlock(), vue.createElementBlock("view", { + key: 1, + class: "abnormal" + }, [ + vue.createElementVNode("view", { + class: "flex-c-sb", + style: { "zoom": "0.9" } + }, [ + vue.createElementVNode( + "view", + { class: "flex1" }, + " 包条码: " + vue.toDisplayString(item.scanCode), + 1 + /* TEXT */ + ), + vue.createElementVNode("view", { + class: "flex1", + style: { "display": "flex", "align-items": "center", "margin-left": "5px" } + }, [ + vue.createTextVNode(" 卸车状态: "), + vue.createElementVNode( + "view", + { class: "tip" }, + vue.toDisplayString(Number(item.scanStatus) === 1 ? "已装车" : Number(item.scanStatus) === 2 ? "已卸车" : "已签收"), + 1 + /* TEXT */ + ) + ]) + ]), + vue.createElementVNode("view", { + class: "flex-c-sb mt10", + style: { "zoom": "0.9" } + }, [ + vue.createElementVNode( + "view", + { class: "flex1" }, + " 托盘名称: " + vue.toDisplayString(item.trayName || "暂无数据"), + 1 + /* TEXT */ + ), + vue.createElementVNode( + "view", + { class: "flex1" }, + " 托盘码: " + vue.toDisplayString(item.trayCode || "暂无数据"), + 1 + /* TEXT */ + ) + ]) + ])) ], 8, ["id"]); }), 128 @@ -14804,8 +14913,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesVehicleArrivalDetailsVehicleArrivalDetails = /* @__PURE__ */ _export_sfc(_sfc_main$1y, [["__scopeId", "data-v-846c29fb"], ["__file", "D:/worksp/logpm/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue"]]); - const _sfc_main$1x = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesVehicleArrivalDetailsVehicleArrivalDetails = /* @__PURE__ */ _export_sfc(_sfc_main$1z, [["__scopeId", "data-v-846c29fb"], ["__file", "D:/worksp/logpm/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue"]]); + const _sfc_main$1y = /* @__PURE__ */ vue.defineComponent({ __name: "SelfPickupScan", setup(__props) { const option = { @@ -15098,8 +15207,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesSelfPickupScanSelfPickupScan = /* @__PURE__ */ _export_sfc(_sfc_main$1x, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPickupScan/SelfPickupScan.vue"]]); - const _sfc_main$1w = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesSelfPickupScanSelfPickupScan = /* @__PURE__ */ _export_sfc(_sfc_main$1y, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPickupScan/SelfPickupScan.vue"]]); + const _sfc_main$1x = /* @__PURE__ */ vue.defineComponent({ __name: "LoadingScan", setup(__props) { const tip = vue.ref(null); @@ -15791,7 +15900,7 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesLoadingScanLoadingScan = /* @__PURE__ */ _export_sfc(_sfc_main$1w, [["__file", "D:/worksp/logpm/pagesHome/pages/LoadingScan/LoadingScan.vue"]]); + const PagesHomePagesLoadingScanLoadingScan = /* @__PURE__ */ _export_sfc(_sfc_main$1x, [["__file", "D:/worksp/logpm/pagesHome/pages/LoadingScan/LoadingScan.vue"]]); const props$f = { props: { // 搜索框形状,round-圆形,square-方形 @@ -15914,7 +16023,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1v = { + const _sfc_main$1w = { name: "u-search", mixins: [mpMixin$1, mixin$1, props$f], data() { @@ -16096,7 +16205,7 @@ This will fail in production if not fixed.`); /* STYLE */ ); } - const __easycom_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1v, [["render", _sfc_render$s], ["__scopeId", "data-v-e082a34a"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-search/u-search.vue"]]); + const __easycom_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1w, [["render", _sfc_render$s], ["__scopeId", "data-v-e082a34a"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-search/u-search.vue"]]); const props$e = { props: { // 步进器标识符,在change回调返回 @@ -16206,7 +16315,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1u = { + const _sfc_main$1v = { name: "u-number-box", mixins: [mpMixin$1, mixin$1, props$e], data() { @@ -16515,7 +16624,7 @@ This will fail in production if not fixed.`); )) : vue.createCommentVNode("v-if", true) ]); } - const __easycom_2$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1u, [["render", _sfc_render$r], ["__scopeId", "data-v-eb6f6237"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-number-box/u-number-box.vue"]]); + const __easycom_2$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1v, [["render", _sfc_render$r], ["__scopeId", "data-v-eb6f6237"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-number-box/u-number-box.vue"]]); const props$d = { props: { // 是否显示组件 @@ -16575,7 +16684,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1t = { + const _sfc_main$1u = { name: "u-loading-icon", mixins: [mpMixin$1, mixin$1, props$d], data() { @@ -16698,7 +16807,7 @@ This will fail in production if not fixed.`); /* CLASS, STYLE */ )) : vue.createCommentVNode("v-if", true); } - const __easycom_3$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1t, [["render", _sfc_render$q], ["__scopeId", "data-v-2af81691"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue"]]); + const __easycom_3$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1u, [["render", _sfc_render$q], ["__scopeId", "data-v-2af81691"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue"]]); const props$c = { props: { // 是否展示组件 @@ -16778,7 +16887,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1s = { + const _sfc_main$1t = { name: "u-transition", data() { return { @@ -16839,7 +16948,7 @@ This will fail in production if not fixed.`); /* CLASS, STYLE, HYDRATE_EVENTS */ )) : vue.createCommentVNode("v-if", true); } - const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1s, [["render", _sfc_render$p], ["__scopeId", "data-v-5cec8177"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-transition/u-transition.vue"]]); + const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1t, [["render", _sfc_render$p], ["__scopeId", "data-v-5cec8177"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-transition/u-transition.vue"]]); const props$b = { props: { // 是否显示遮罩 @@ -16864,7 +16973,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1r = { + const _sfc_main$1s = { name: "u-overlay", mixins: [mpMixin$1, mixin$1, props$b], computed: { @@ -16903,7 +17012,7 @@ This will fail in production if not fixed.`); /* FORWARDED */ }, 8, ["show", "duration", "custom-style", "onClick"]); } - const __easycom_4$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1r, [["render", _sfc_render$o], ["__scopeId", "data-v-9112bed9"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-overlay/u-overlay.vue"]]); + const __easycom_4$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1s, [["render", _sfc_render$o], ["__scopeId", "data-v-9112bed9"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-overlay/u-overlay.vue"]]); const props$a = { props: { // 是否细边框 @@ -17056,7 +17165,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1q = { + const _sfc_main$1r = { name: "u-button", mixins: [mpMixin$1, mixin$1, props$a], data() { @@ -17258,7 +17367,7 @@ This will fail in production if not fixed.`); )) ], 46, ["hover-start-time", "hover-stay-time", "form-type", "open-type", "app-parameter", "hover-stop-propagation", "send-message-title", "send-message-path", "lang", "data-name", "session-from", "send-message-img", "show-message-card", "hover-class"]); } - const __easycom_6 = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["render", _sfc_render$n], ["__scopeId", "data-v-5ce41ee6"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-button/u-button.vue"]]); + const __easycom_6 = /* @__PURE__ */ _export_sfc(_sfc_main$1r, [["render", _sfc_render$n], ["__scopeId", "data-v-5ce41ee6"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-button/u-button.vue"]]); const props$9 = { props: { // 内置图标名称,或图片路径,建议绝对路径 @@ -17318,7 +17427,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1p = { + const _sfc_main$1q = { name: "u-empty", mixins: [mpMixin$1, mixin$1, props$9], data() { @@ -17408,7 +17517,7 @@ This will fail in production if not fixed.`); /* STYLE */ )) : vue.createCommentVNode("v-if", true); } - const __easycom_7 = /* @__PURE__ */ _export_sfc(_sfc_main$1p, [["render", _sfc_render$m], ["__scopeId", "data-v-8dd5928e"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-empty/u-empty.vue"]]); + const __easycom_7 = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["render", _sfc_render$m], ["__scopeId", "data-v-8dd5928e"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-empty/u-empty.vue"]]); const props$8 = { props: { // 标题 @@ -17519,7 +17628,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1o = { + const _sfc_main$1p = { name: "u-cell", data() { return {}; @@ -17637,7 +17746,7 @@ This will fail in production if not fixed.`); _ctx.border ? (vue.openBlock(), vue.createBlock(_component_u_line, { key: 0 })) : vue.createCommentVNode("v-if", true) ], 14, ["hover-class"]); } - const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1o, [["render", _sfc_render$l], ["__scopeId", "data-v-3fd6feca"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-cell/u-cell.vue"]]); + const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1p, [["render", _sfc_render$l], ["__scopeId", "data-v-3fd6feca"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-cell/u-cell.vue"]]); const props$7 = { props: { // 标题 @@ -17697,7 +17806,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1n = { + const _sfc_main$1o = { name: "u-collapse-item", mixins: [mpMixin$1, mixin$1, props$7], data() { @@ -17837,7 +17946,7 @@ This will fail in production if not fixed.`); $data.parentData.border ? (vue.openBlock(), vue.createBlock(_component_u_line, { key: 0 })) : vue.createCommentVNode("v-if", true) ]); } - const __easycom_8 = /* @__PURE__ */ _export_sfc(_sfc_main$1n, [["render", _sfc_render$k], ["__scopeId", "data-v-82f3baf9"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-collapse-item/u-collapse-item.vue"]]); + const __easycom_8 = /* @__PURE__ */ _export_sfc(_sfc_main$1o, [["render", _sfc_render$k], ["__scopeId", "data-v-82f3baf9"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-collapse-item/u-collapse-item.vue"]]); const props$6 = { props: { // 当前展开面板的name,非手风琴模式:[],手风琴模式:string | number @@ -17857,7 +17966,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$1m = { + const _sfc_main$1n = { name: "u-collapse", mixins: [mpMixin$1, mixin$1, props$6], watch: { @@ -17922,8 +18031,8 @@ This will fail in production if not fixed.`); vue.renderSlot(_ctx.$slots, "default", {}, void 0, true) ]); } - const __easycom_9 = /* @__PURE__ */ _export_sfc(_sfc_main$1m, [["render", _sfc_render$j], ["__scopeId", "data-v-90f85a74"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-collapse/u-collapse.vue"]]); - const _sfc_main$1l = /* @__PURE__ */ vue.defineComponent({ + const __easycom_9 = /* @__PURE__ */ _export_sfc(_sfc_main$1n, [["render", _sfc_render$j], ["__scopeId", "data-v-90f85a74"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-collapse/u-collapse.vue"]]); + const _sfc_main$1m = /* @__PURE__ */ vue.defineComponent({ __name: "loadingRetention", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -18856,8 +18965,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesLoadingRetentionLoadingRetention = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["__scopeId", "data-v-0b4cf6ee"], ["__file", "D:/worksp/logpm/pagesHome/pages/loadingRetention/loadingRetention.vue"]]); - const _sfc_main$1k = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesLoadingRetentionLoadingRetention = /* @__PURE__ */ _export_sfc(_sfc_main$1m, [["__scopeId", "data-v-0b4cf6ee"], ["__file", "D:/worksp/logpm/pagesHome/pages/loadingRetention/loadingRetention.vue"]]); + const _sfc_main$1l = /* @__PURE__ */ vue.defineComponent({ __name: "StockUplist", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -19655,8 +19764,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesStockUplistStockUplist = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUplist/StockUplist.vue"]]); - const _sfc_main$1j = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesStockUplistStockUplist = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUplist/StockUplist.vue"]]); + const _sfc_main$1k = /* @__PURE__ */ vue.defineComponent({ __name: "StockUplistScandetails", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -20066,8 +20175,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesStockUplistScandetailsStockUplistScandetails = /* @__PURE__ */ _export_sfc(_sfc_main$1j, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue"]]); - const _sfc_main$1i = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesStockUplistScandetailsStockUplistScandetails = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue"]]); + const _sfc_main$1j = /* @__PURE__ */ vue.defineComponent({ __name: "DownScan", setup(__props) { onShow(() => { @@ -20096,8 +20205,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesDownScanDownScan = /* @__PURE__ */ _export_sfc(_sfc_main$1i, [["__file", "D:/worksp/logpm/pagesHome/pages/DownScan/DownScan.vue"]]); - const _sfc_main$1h = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesDownScanDownScan = /* @__PURE__ */ _export_sfc(_sfc_main$1j, [["__file", "D:/worksp/logpm/pagesHome/pages/DownScan/DownScan.vue"]]); + const _sfc_main$1i = /* @__PURE__ */ vue.defineComponent({ __name: "signinScan", setup(__props) { const basicContainer = vue.ref(null); @@ -20489,9 +20598,9 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesSigninScanSigninScan = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["__file", "D:/worksp/logpm/pagesHome/pages/signinScan/signinScan.vue"]]); + const PagesHomePagesSigninScanSigninScan = /* @__PURE__ */ _export_sfc(_sfc_main$1i, [["__file", "D:/worksp/logpm/pagesHome/pages/signinScan/signinScan.vue"]]); const _imports_0$2 = "/assets/cha.b7e7843e.png"; - const _sfc_main$1g = { + const _sfc_main$1h = { props: { data: { type: Array, @@ -20739,8 +20848,8 @@ This will fail in production if not fixed.`); /* STYLE */ ); } - const cusSelects = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["render", _sfc_render$i], ["__scopeId", "data-v-7a3666ce"], ["__file", "D:/worksp/logpm/compoment/cus-selects-fan/cus-selects-fan.vue"]]); - const _sfc_main$1f = /* @__PURE__ */ vue.defineComponent({ + const cusSelects = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["render", _sfc_render$i], ["__scopeId", "data-v-7a3666ce"], ["__file", "D:/worksp/logpm/compoment/cus-selects-fan/cus-selects-fan.vue"]]); + const _sfc_main$1g = /* @__PURE__ */ vue.defineComponent({ __name: "SelfPScanList", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -21359,8 +21468,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesSelfPScanListSelfPScanList = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPScanList/SelfPScanList.vue"]]); - const _sfc_main$1e = { + const PagesHomePagesSelfPScanListSelfPScanList = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPScanList/SelfPScanList.vue"]]); + const _sfc_main$1f = { name: "uniTh", options: { virtualHost: true @@ -21535,8 +21644,8 @@ This will fail in production if not fixed.`); /* CLASS, STYLE */ ); } - const __easycom_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["render", _sfc_render$h], ["__scopeId", "data-v-bf970acd"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-th/uni-th.vue"]]); - const _sfc_main$1d = { + const __easycom_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["render", _sfc_render$h], ["__scopeId", "data-v-bf970acd"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-th/uni-th.vue"]]); + const _sfc_main$1e = { name: "TableCheckbox", emits: ["checkboxSelected"], props: { @@ -21625,8 +21734,8 @@ This will fail in production if not fixed.`); ])) ]); } - const tableCheckbox = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["render", _sfc_render$g], ["__scopeId", "data-v-25e435b1"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-tr/table-checkbox.vue"]]); - const _sfc_main$1c = { + const tableCheckbox = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["render", _sfc_render$g], ["__scopeId", "data-v-25e435b1"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-tr/table-checkbox.vue"]]); + const _sfc_main$1d = { name: "uniTr", components: { tableCheckbox }, props: { @@ -21736,8 +21845,8 @@ This will fail in production if not fixed.`); vue.renderSlot(_ctx.$slots, "default", {}, void 0, true) ]); } - const __easycom_2$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["render", _sfc_render$f], ["__scopeId", "data-v-b48b3e32"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-tr/uni-tr.vue"]]); - const _sfc_main$1b = { + const __easycom_2$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["render", _sfc_render$f], ["__scopeId", "data-v-b48b3e32"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-tr/uni-tr.vue"]]); + const _sfc_main$1c = { name: "uniTd", options: { virtualHost: true @@ -21809,8 +21918,8 @@ This will fail in production if not fixed.`); /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */ ); } - const __easycom_3$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["render", _sfc_render$e], ["__scopeId", "data-v-edae4802"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-td/uni-td.vue"]]); - const _sfc_main$1a = { + const __easycom_3$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["render", _sfc_render$e], ["__scopeId", "data-v-edae4802"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-td/uni-td.vue"]]); + const _sfc_main$1b = { name: "uniTable", options: { virtualHost: true @@ -22101,8 +22210,8 @@ This will fail in production if not fixed.`); /* CLASS */ ); } - const __easycom_4$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["render", _sfc_render$d], ["__scopeId", "data-v-c1ea9b5d"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-table/uni-table.vue"]]); - const _sfc_main$19 = /* @__PURE__ */ vue.defineComponent({ + const __easycom_4$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["render", _sfc_render$d], ["__scopeId", "data-v-c1ea9b5d"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-table/uni-table.vue"]]); + const _sfc_main$1a = /* @__PURE__ */ vue.defineComponent({ __name: "SelfPickupDetails", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -22758,8 +22867,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesSelfPickupDetailsSelfPickupDetails = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue"]]); - const _sfc_main$18 = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesSelfPickupDetailsSelfPickupDetails = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue"]]); + const _sfc_main$19 = /* @__PURE__ */ vue.defineComponent({ __name: "LoadingDetails", setup(__props) { const basicContainer = vue.ref(null); @@ -23246,8 +23355,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesLoadingDetailsLoadingDetails = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["__file", "D:/worksp/logpm/pagesHome/pages/LoadingDetails/LoadingDetails.vue"]]); - const _sfc_main$17 = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesLoadingDetailsLoadingDetails = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["__file", "D:/worksp/logpm/pagesHome/pages/LoadingDetails/LoadingDetails.vue"]]); + const _sfc_main$18 = /* @__PURE__ */ vue.defineComponent({ __name: "CustomerOrdersDetails", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -24109,8 +24218,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesCustomerOrdersDetailsCustomerOrdersDetails = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue"]]); - const _sfc_main$16 = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesCustomerOrdersDetailsCustomerOrdersDetails = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue"]]); + const _sfc_main$17 = /* @__PURE__ */ vue.defineComponent({ __name: "DeliveryCustomerScan", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -24489,8 +24598,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesDeliveryCustomerScanDeliveryCustomerScan = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["__file", "D:/worksp/logpm/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue"]]); - const _sfc_main$15 = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesDeliveryCustomerScanDeliveryCustomerScan = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__file", "D:/worksp/logpm/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue"]]); + const _sfc_main$16 = /* @__PURE__ */ vue.defineComponent({ __name: "CustomerSign", setup(__props) { let details = vue.reactive({ @@ -25048,8 +25157,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesCustomerSignCustomerSign = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerSign/CustomerSign.vue"]]); - const _sfc_main$14 = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesCustomerSignCustomerSign = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerSign/CustomerSign.vue"]]); + const _sfc_main$15 = /* @__PURE__ */ vue.defineComponent({ __name: "signOrderScan", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -25843,8 +25952,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesSignOrderScanSignOrderScan = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-fb393026"], ["__file", "D:/worksp/logpm/pagesHome/pages/signOrderScan/signOrderScan.vue"]]); - const _sfc_main$13 = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesSignOrderScanSignOrderScan = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__scopeId", "data-v-fb393026"], ["__file", "D:/worksp/logpm/pagesHome/pages/signOrderScan/signOrderScan.vue"]]); + const _sfc_main$14 = /* @__PURE__ */ vue.defineComponent({ __name: "SignDetailScan", setup(__props) { let details = vue.reactive({ @@ -26306,8 +26415,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesSignDetailScanSignDetailScan = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["__file", "D:/worksp/logpm/pagesHome/pages/SignDetailScan/SignDetailScan.vue"]]); - const _sfc_main$12 = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesSignDetailScanSignDetailScan = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__file", "D:/worksp/logpm/pagesHome/pages/SignDetailScan/SignDetailScan.vue"]]); + const _sfc_main$13 = /* @__PURE__ */ vue.defineComponent({ __name: "setbarcode", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -26844,8 +26953,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesSetbarcodeSetbarcode = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["__file", "D:/worksp/logpm/pagesHome/pages/setbarcode/setbarcode.vue"]]); - const _sfc_main$11 = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesSetbarcodeSetbarcode = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["__file", "D:/worksp/logpm/pagesHome/pages/setbarcode/setbarcode.vue"]]); + const _sfc_main$12 = /* @__PURE__ */ vue.defineComponent({ __name: "OfflineUpload", setup(__props) { const tiplists = vue.ref(null); @@ -26987,8 +27096,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesOfflineUploadOfflineUpload = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["__file", "D:/worksp/logpm/pagesHome/pages/OfflineUpload/OfflineUpload.vue"]]); - const _sfc_main$10 = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesOfflineUploadOfflineUpload = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["__file", "D:/worksp/logpm/pagesHome/pages/OfflineUpload/OfflineUpload.vue"]]); + const _sfc_main$11 = /* @__PURE__ */ vue.defineComponent({ __name: "createTask", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -27175,8 +27284,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesCreateTaskCreateTask = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["__file", "D:/worksp/logpm/pagesHome/pages/createTask/createTask.vue"]]); - const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesCreateTaskCreateTask = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["__file", "D:/worksp/logpm/pagesHome/pages/createTask/createTask.vue"]]); + const _sfc_main$10 = /* @__PURE__ */ vue.defineComponent({ __name: "ordersorting", setup(__props) { utils.ttsspke("订单扫描"); @@ -27239,8 +27348,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesOrdersortingOrdersorting = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__file", "D:/worksp/logpm/pagesHome/pages/ordersorting/ordersorting.vue"]]); - const _sfc_main$_ = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesOrdersortingOrdersorting = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["__file", "D:/worksp/logpm/pagesHome/pages/ordersorting/ordersorting.vue"]]); + const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({ __name: "lnventorysorting", setup(__props) { onShow(() => { @@ -27292,8 +27401,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesLnventorysortingLnventorysorting = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["__file", "D:/worksp/logpm/pagesHome/pages/lnventorysorting/lnventorysorting.vue"]]); - const _sfc_main$Z = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesLnventorysortingLnventorysorting = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__file", "D:/worksp/logpm/pagesHome/pages/lnventorysorting/lnventorysorting.vue"]]); + const _sfc_main$_ = /* @__PURE__ */ vue.defineComponent({ __name: "scansorting", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -27693,8 +27802,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesScansortingScansorting = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["__file", "D:/worksp/logpm/pagesHome/pages/scansorting/scansorting.vue"]]); - const _sfc_main$Y = {}; + const PagesHomePagesScansortingScansorting = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["__file", "D:/worksp/logpm/pagesHome/pages/scansorting/scansorting.vue"]]); + const _sfc_main$Z = {}; function _sfc_render$c(_ctx, _cache) { const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0$4); return vue.openBlock(), vue.createElementBlock( @@ -27717,7 +27826,7 @@ This will fail in production if not fixed.`); /* STABLE_FRAGMENT */ ); } - const PagesHomePagesPeopleSortingPeopleSorting = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["render", _sfc_render$c], ["__file", "D:/worksp/logpm/pagesHome/pages/peopleSorting/peopleSorting.vue"]]); + const PagesHomePagesPeopleSortingPeopleSorting = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["render", _sfc_render$c], ["__file", "D:/worksp/logpm/pagesHome/pages/peopleSorting/peopleSorting.vue"]]); var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {}; var dayjs_minExports = {}; var dayjs_min = { @@ -28018,7 +28127,7 @@ This will fail in production if not fixed.`); }); })(dayjs_min); const dayjs = dayjs_minExports; - const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({ + const _sfc_main$Y = /* @__PURE__ */ vue.defineComponent({ __name: "OrderSortingDetail", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -29442,8 +29551,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesOrderSortingDetailOrderSortingDetail = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["__scopeId", "data-v-ca2cce65"], ["__file", "D:/worksp/logpm/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue"]]); - const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesOrderSortingDetailOrderSortingDetail = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["__scopeId", "data-v-ca2cce65"], ["__file", "D:/worksp/logpm/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue"]]); + const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({ __name: "ScanSortingType", setup(__props) { let typelist = vue.ref([]); @@ -29549,8 +29658,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesScanSortingTypeScanSortingType = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanSortingType/ScanSortingType.vue"]]); - const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesScanSortingTypeScanSortingType = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanSortingType/ScanSortingType.vue"]]); + const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({ __name: "PeopleSortingDetail", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -30141,8 +30250,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesPeopleSortingDetailPeopleSortingDetail = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__scopeId", "data-v-e9f42dec"], ["__file", "D:/worksp/logpm/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue"]]); - const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesPeopleSortingDetailPeopleSortingDetail = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__scopeId", "data-v-e9f42dec"], ["__file", "D:/worksp/logpm/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue"]]); + const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({ __name: "inventoryType", setup(__props) { let typelist = vue.ref([]); @@ -30227,8 +30336,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesInventoryTypeInventoryType = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryType/inventoryType.vue"]]); - const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesInventoryTypeInventoryType = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryType/inventoryType.vue"]]); + const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({ __name: "inventoryDetail", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -30438,8 +30547,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesInventoryDetailInventoryDetail = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryDetail/inventoryDetail.vue"]]); - const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesInventoryDetailInventoryDetail = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryDetail/inventoryDetail.vue"]]); + const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({ __name: "inventoryDetailList", setup(__props) { let tip = vue.ref(null); @@ -30618,8 +30727,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesInventoryDetailListInventoryDetailList = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryDetailList/inventoryDetailList.vue"]]); - const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesInventoryDetailListInventoryDetailList = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryDetailList/inventoryDetailList.vue"]]); + const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({ __name: "inventoryenter", setup(__props) { const tip = vue.ref(null); @@ -31222,8 +31331,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesInventoryenterInventoryenter = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryenter/inventoryenter.vue"]]); - const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesInventoryenterInventoryenter = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryenter/inventoryenter.vue"]]); + const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({ __name: "lnventorysortinglist", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -31594,8 +31703,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesLnventorysortinglistLnventorysortinglist = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__file", "D:/worksp/logpm/pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue"]]); - const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesLnventorysortinglistLnventorysortinglist = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__file", "D:/worksp/logpm/pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue"]]); + const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({ __name: "OrderSortingDetailList", setup(__props) { let tip = vue.ref(null); @@ -32067,8 +32176,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesOrderSortingDetailListOrderSortingDetailList = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__file", "D:/worksp/logpm/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.vue"]]); - const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesOrderSortingDetailListOrderSortingDetailList = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__file", "D:/worksp/logpm/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.vue"]]); + const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({ __name: "ScanUpType", setup(__props) { let typelist = vue.ref([]); @@ -32147,8 +32256,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesScanUpTypeScanUpType = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanUpType/ScanUpType.vue"]]); - const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesScanUpTypeScanUpType = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanUpType/ScanUpType.vue"]]); + const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({ __name: "ScanUp", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -32827,8 +32936,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesScanUpScanUp = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanUp/ScanUp.vue"]]); - const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesScanUpScanUp = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanUp/ScanUp.vue"]]); + const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({ __name: "RelocationType", setup(__props) { utils.ttsspke("请选择移库方式"); @@ -32917,8 +33026,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesRelocationTypeRelocationType = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__file", "D:/worksp/logpm/pagesHome/pages/RelocationType/RelocationType.vue"]]); - const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesRelocationTypeRelocationType = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__file", "D:/worksp/logpm/pagesHome/pages/RelocationType/RelocationType.vue"]]); + const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({ __name: "Relocation", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -33659,8 +33768,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesRelocationRelocation = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__file", "D:/worksp/logpm/pagesHome/pages/Relocation/Relocation.vue"]]); - const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesRelocationRelocation = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__file", "D:/worksp/logpm/pagesHome/pages/Relocation/Relocation.vue"]]); + const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({ __name: "PeopleScanUpType", setup(__props) { let typelist = vue.ref([]); @@ -33733,8 +33842,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesPeopleScanUpTypePeopleScanUpType = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__file", "D:/worksp/logpm/pagesHome/pages/PeopleScanUpType/PeopleScanUpType.vue"]]); - const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesPeopleScanUpTypePeopleScanUpType = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__file", "D:/worksp/logpm/pagesHome/pages/PeopleScanUpType/PeopleScanUpType.vue"]]); + const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({ __name: "PeopleScanUp", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -34871,8 +34980,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesPeopleScanUpPeopleScanUp = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__file", "D:/worksp/logpm/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue"]]); - const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesPeopleScanUpPeopleScanUp = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__file", "D:/worksp/logpm/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue"]]); + const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({ __name: "PickingScanList", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -35205,8 +35314,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesPickingScanListPickingScanList = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__file", "D:/worksp/logpm/pagesHome/pages/PickingScanList/PickingScanList.vue"]]); - const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesPickingScanListPickingScanList = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__file", "D:/worksp/logpm/pagesHome/pages/PickingScanList/PickingScanList.vue"]]); + const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({ __name: "Retention", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -35362,8 +35471,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesRetentionRetention = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__file", "D:/worksp/logpm/pagesHome/pages/Retention/Retention.vue"]]); - const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesRetentionRetention = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__file", "D:/worksp/logpm/pagesHome/pages/Retention/Retention.vue"]]); + const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({ __name: "MergeTray", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -35848,8 +35957,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesMergeTrayMergeTray = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["__file", "D:/worksp/logpm/pagesHome/pages/MergeTray/MergeTray.vue"]]); - const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesMergeTrayMergeTray = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__file", "D:/worksp/logpm/pagesHome/pages/MergeTray/MergeTray.vue"]]); + const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({ __name: "MergeTrayDetails", setup(__props) { let trayCode = vue.ref(""); @@ -36146,8 +36255,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesMergeTrayDetailsMergeTrayDetails = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__file", "D:/worksp/logpm/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.vue"]]); - const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesMergeTrayDetailsMergeTrayDetails = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["__file", "D:/worksp/logpm/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.vue"]]); + const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({ __name: "DownGoodsType", setup(__props) { let typelist = vue.ref([]); @@ -36221,8 +36330,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesDownGoodsTypeDownGoodsType = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__file", "D:/worksp/logpm/pagesHome/pages/DownGoodsType/DownGoodsType.vue"]]); - const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesDownGoodsTypeDownGoodsType = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__file", "D:/worksp/logpm/pagesHome/pages/DownGoodsType/DownGoodsType.vue"]]); + const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({ __name: "DownGoods", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -37330,8 +37439,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesDownGoodsDownGoods = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__file", "D:/worksp/logpm/pagesHome/pages/DownGoods/DownGoods.vue"]]); - const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesDownGoodsDownGoods = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__file", "D:/worksp/logpm/pagesHome/pages/DownGoods/DownGoods.vue"]]); + const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({ __name: "SetPrice", setup(__props) { let details = vue.reactive({ @@ -37632,8 +37741,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesSetPriceSetPrice = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__file", "D:/worksp/logpm/pagesHome/pages/SetPrice/SetPrice.vue"]]); - const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesSetPriceSetPrice = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__file", "D:/worksp/logpm/pagesHome/pages/SetPrice/SetPrice.vue"]]); + const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({ __name: "RemoveTray", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -38118,8 +38227,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesRemoveTrayRemoveTray = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__scopeId", "data-v-8dd39525"], ["__file", "D:/worksp/logpm/pagesHome/pages/RemoveTray/RemoveTray.vue"]]); - const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesRemoveTrayRemoveTray = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__scopeId", "data-v-8dd39525"], ["__file", "D:/worksp/logpm/pagesHome/pages/RemoveTray/RemoveTray.vue"]]); + const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({ __name: "Check", setup(__props) { vue.reactive({}); @@ -38140,8 +38249,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesCheckCheck = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__file", "D:/worksp/logpm/pagesHome/pages/Check/Check.vue"]]); - const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesCheckCheck = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__file", "D:/worksp/logpm/pagesHome/pages/Check/Check.vue"]]); + const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({ __name: "createAddServe", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -38750,8 +38859,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesCreateAddServeCreateAddServe = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-fee6bcca"], ["__file", "D:/worksp/logpm/pagesHome/pages/createAddServe/createAddServe.vue"]]); - const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesCreateAddServeCreateAddServe = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-fee6bcca"], ["__file", "D:/worksp/logpm/pagesHome/pages/createAddServe/createAddServe.vue"]]); + const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({ __name: "orderDetail", setup(__props) { onShow(() => { @@ -38771,8 +38880,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesOrderDetailOrderDetail = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "D:/worksp/logpm/pagesHome/pages/orderDetail/orderDetail.vue"]]); - const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesOrderDetailOrderDetail = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__file", "D:/worksp/logpm/pagesHome/pages/orderDetail/orderDetail.vue"]]); + const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({ __name: "RelocationAllocationId", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -39340,8 +39449,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesRelocationAllocationIdRelocationAllocationId = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "D:/worksp/logpm/pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue"]]); - const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesRelocationAllocationIdRelocationAllocationId = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "D:/worksp/logpm/pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue"]]); + const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({ __name: "orderDetails", setup(__props) { let tip = vue.ref(null); @@ -39610,7 +39719,7 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesOrderDetailsOrderDetails = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "D:/worksp/logpm/pagesHome/pages/orderDetails/orderDetails.vue"]]); + const PagesHomePagesOrderDetailsOrderDetails = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "D:/worksp/logpm/pagesHome/pages/orderDetails/orderDetails.vue"]]); const props$5 = { props: { // checkbox的名称 @@ -39680,7 +39789,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$v = { + const _sfc_main$w = { name: "u-checkbox", mixins: [mpMixin$1, mixin$1, props$5], data() { @@ -39891,7 +40000,7 @@ This will fail in production if not fixed.`); /* CLASS, STYLE */ ); } - const __easycom_1 = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["render", _sfc_render$b], ["__scopeId", "data-v-41713600"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-checkbox/u-checkbox.vue"]]); + const __easycom_1 = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["render", _sfc_render$b], ["__scopeId", "data-v-41713600"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-checkbox/u-checkbox.vue"]]); const props$4 = { props: { // 标识符 @@ -39971,7 +40080,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$u = { + const _sfc_main$v = { name: "u-checkbox-group", mixins: [mpMixin$1, mixin$1, props$4], computed: { @@ -40043,7 +40152,7 @@ This will fail in production if not fixed.`); /* CLASS */ ); } - const __easycom_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["render", _sfc_render$a], ["__scopeId", "data-v-ff0492f0"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-checkbox-group/u-checkbox-group.vue"]]); + const __easycom_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["render", _sfc_render$a], ["__scopeId", "data-v-ff0492f0"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-checkbox-group/u-checkbox-group.vue"]]); const props$3 = { props: { // 绑定的值 @@ -40230,7 +40339,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$t = { + const _sfc_main$u = { name: "u-input", mixins: [mpMixin$1, mixin$1, props$3], data() { @@ -40452,8 +40561,8 @@ This will fail in production if not fixed.`); /* CLASS, STYLE */ ); } - const __easycom_2 = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["render", _sfc_render$9], ["__scopeId", "data-v-df79975b"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-input/u-input.vue"]]); - const _sfc_main$s = { + const __easycom_2 = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["render", _sfc_render$9], ["__scopeId", "data-v-df79975b"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-input/u-input.vue"]]); + const _sfc_main$t = { name: "u--input", mixins: [mpMixin$1, props$3, mixin$1], components: { @@ -40509,7 +40618,7 @@ This will fail in production if not fixed.`); /* FORWARDED */ }, 8, ["modelValue", "type", "fixed", "disabled", "disabledColor", "clearable", "password", "maxlength", "placeholder", "placeholderClass", "placeholderStyle", "showWordLimit", "confirmType", "confirmHold", "holdKeyboard", "focus", "autoBlur", "disableDefaultPadding", "cursor", "cursorSpacing", "selectionStart", "selectionEnd", "adjustPosition", "inputAlign", "fontSize", "color", "prefixIcon", "suffixIcon", "suffixIconStyle", "prefixIconStyle", "border", "readonly", "shape", "customStyle", "formatter", "ignoreCompositionEvent"]); } - const __easycom_3 = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["render", _sfc_render$8], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u--input/u--input.vue"]]); + const __easycom_3 = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["render", _sfc_render$8], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u--input/u--input.vue"]]); const props$2 = { props: { // input的label提示语 @@ -40553,7 +40662,7 @@ This will fail in production if not fixed.`); } } }; - const _sfc_main$r = { + const _sfc_main$s = { name: "u-form-item", mixins: [mpMixin$1, mixin$1, props$2], data() { @@ -40711,7 +40820,7 @@ This will fail in production if not fixed.`); }, null, 8, ["color", "customStyle"])) : vue.createCommentVNode("v-if", true) ]); } - const __easycom_4 = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["render", _sfc_render$7], ["__scopeId", "data-v-42bac3de"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-form-item/u-form-item.vue"]]); + const __easycom_4 = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["render", _sfc_render$7], ["__scopeId", "data-v-42bac3de"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-form-item/u-form-item.vue"]]); const props$1 = { props: { // 当前form的需要验证字段的集合 @@ -41650,7 +41759,7 @@ This will fail in production if not fixed.`); Schema.messages = messages; Schema.warning = function() { }; - const _sfc_main$q = { + const _sfc_main$r = { name: "u-form", mixins: [mpMixin$1, mixin$1, props$1], provide() { @@ -41816,8 +41925,8 @@ This will fail in production if not fixed.`); vue.renderSlot(_ctx.$slots, "default") ]); } - const uvForm = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["render", _sfc_render$6], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-form/u-form.vue"]]); - const _sfc_main$p = { + const uvForm = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["render", _sfc_render$6], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-form/u-form.vue"]]); + const _sfc_main$q = { name: "u--form", mixins: [mpMixin$1, props$1, mixin$1], components: { @@ -41869,8 +41978,8 @@ This will fail in production if not fixed.`); /* FORWARDED */ }, 8, ["model", "rules", "errorType", "borderBottom", "labelPosition", "labelWidth", "labelAlign", "labelStyle", "customStyle"]); } - const __easycom_5 = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["render", _sfc_render$5], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u--form/u--form.vue"]]); - const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({ + const __easycom_5 = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["render", _sfc_render$5], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u--form/u--form.vue"]]); + const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({ __name: "orderInquiry", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -42565,8 +42674,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesOrderInquiryOrderInquiry = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-e1375c52"], ["__file", "D:/worksp/logpm/pagesHome/pages/orderInquiry/orderInquiry.vue"]]); - const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesOrderInquiryOrderInquiry = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-e1375c52"], ["__file", "D:/worksp/logpm/pagesHome/pages/orderInquiry/orderInquiry.vue"]]); + const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({ __name: "CustomerTrayDetails", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -42964,8 +43073,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesCustomerTrayDetailsCustomerTrayDetails = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue"]]); - const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({ + const PagesHomePagesCustomerTrayDetailsCustomerTrayDetails = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue"]]); + const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({ __name: "StockUpListZero", setup(__props) { const { scanState } = storeToRefs(useSystemSettingsStore()); @@ -43244,8 +43353,8 @@ This will fail in production if not fixed.`); }; } }); - const PagesHomePagesStockUpListZeroStockUpListZero = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUpListZero/StockUpListZero.vue"]]); - const _sfc_main$l = { + const PagesHomePagesStockUpListZeroStockUpListZero = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUpListZero/StockUpListZero.vue"]]); + const _sfc_main$m = { data() { return { listx: [], @@ -43361,8 +43470,8 @@ This will fail in production if not fixed.`); }, 8, ["onScrolltoupper", "onRefresher", "data"]) ]); } - const PagesUserPagesAboutAbout = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["render", _sfc_render$4], ["__file", "D:/worksp/logpm/pagesUser/pages/about/about.vue"]]); - const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({ + const PagesUserPagesAboutAbout = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["render", _sfc_render$4], ["__file", "D:/worksp/logpm/pagesUser/pages/about/about.vue"]]); + const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({ __name: "systemSettings", setup(__props) { const systemSettingsStore = useSystemSettingsStore(); @@ -43380,14 +43489,79 @@ This will fail in production if not fixed.`); // 选中的索引 -- 默认为关闭 scanStateChooseIndex: 0 }); - const EditPwdPop = vue.ref(); details.scanStateList = scanStateList.value; details.scanStateChooseIndex = scanStateList.value.findIndex((val) => Number(val.value) === Number(scanState.value)); function bindPickerChange(e) { - formatAppLog("log", "at pagesUser/pages/systemSettings/systemSettings.vue:137", "picker发送选择改变,携带值为", e.detail.value); + formatAppLog("log", "at pagesUser/pages/systemSettings/systemSettings.vue:71", "picker发送选择改变,携带值为", e.detail.value); details.scanStateChooseIndex = e.detail.value; HANDLE_SCANSTATE(details.scanStateChooseIndex); } + vue.toRefs(details); + return (_ctx, _cache) => { + const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0$4); + const _component_u_icon = resolveEasycom(vue.resolveDynamicComponent("u-icon"), __easycom_0$5); + return vue.openBlock(), vue.createElementBlock("view", { class: "container" }, [ + vue.createVNode(_component_u_navbar, { + title: "系统设置", + bgColor: "#D3832A", + leftIconColor: "#ffffff", + titleStyle: "color:#ffffff", + placeholder: "", + autoBack: true, + leftIconSize: "35" + }), + vue.createElementVNode("view", { class: "list" }, [ + vue.createCommentVNode(" 设置后台监听状态 "), + vue.createElementVNode("view", { + class: "list_item", + style: { "display": "flex" } + }, [ + vue.createElementVNode("view", { class: "uni-list-cell-left" }, [ + vue.createVNode(_component_u_icon, { + class: "margin-right-10", + name: "moments", + color: "#47beff" + }), + vue.createElementVNode("view", null, " 扫描后台监听状态: ") + ]), + vue.createElementVNode("view", { class: "uni-list-cell-db" }, [ + vue.createElementVNode("picker", { + onChange: bindPickerChange, + value: details.scanStateChooseIndex, + range: details.scanStateList.map((val) => val.title) + }, [ + vue.createElementVNode( + "view", + { class: "uni-input" }, + vue.toDisplayString(details.scanStateList.map((val) => val.title)[details.scanStateChooseIndex]), + 1 + /* TEXT */ + ) + ], 40, ["value", "range"]) + ]) + ]) + ]) + ]); + }; + } + }); + const PagesUserPagesSystemSettingsSystemSettings = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-e03137f9"], ["__file", "D:/worksp/logpm/pagesUser/pages/systemSettings/systemSettings.vue"]]); + const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({ + __name: "securitySettings", + setup(__props) { + onPullDownRefresh(() => { + const timer = setTimeout(() => { + uni.stopPullDownRefresh(); + clearTimeout(timer); + }, 500); + }); + const details = vue.reactive({ + // + scanStateList: [], + // 选中的索引 -- 默认为关闭 + scanStateChooseIndex: 0 + }); + const EditPwdPop = vue.ref(); const ShowPwdObj = vue.reactive({ oldPwd: false, newPwd1: false, @@ -43398,12 +43572,26 @@ This will fail in production if not fixed.`); newPwd1: "", newPwd2: "" }); + function removeall() { + const res = uni.getStorageInfoSync(); + res.keys.map((item) => { + if (item == "loginuser" || item == "HistoryDate" || item == "setip" || item == "checkname" || item.indexOf("IMAGE_CACHE_INFO") != -1) { + return; + } + uni.removeStorageSync(item); + }); + uni.reLaunch({ + url: "/pages/login/login" + }); + formatAppLog("log", "at pagesUser/pages/securitySettings/securitySettings.vue:129", res.currentSize); + formatAppLog("log", "at pagesUser/pages/securitySettings/securitySettings.vue:130", String(res.limitSize)); + } const showEditPwd = () => { EditPwdPop.value.setDetails({ title: "设置密码", showPopUp: true, - success() { - formatAppLog("log", "at pagesUser/pages/systemSettings/systemSettings.vue:162", "editPwdForm :>> ", editPwdForm); + async success() { + formatAppLog("log", "at pagesUser/pages/securitySettings/securitySettings.vue:139", "editPwdForm :>> ", editPwdForm); let _isReturn = false; for (let key in editPwdForm) { if (editPwdForm[key].length < 6) { @@ -43423,6 +43611,7 @@ This will fail in production if not fixed.`); title: "密码与原密码不一致", icon: "none" }); + return; } if (editPwdForm.newPwd1 !== editPwdForm.newPwd2) { uni.showToast({ @@ -43431,6 +43620,21 @@ This will fail in production if not fixed.`); }); return; } + const submitData = { + oldPassword: hexMD5(editPwdForm.oldPwd), + newPassword: hexMD5(editPwdForm.newPwd1), + newPassword1: hexMD5(editPwdForm.newPwd2) + }; + const response = await editPassword(submitData); + formatAppLog("log", "at pagesUser/pages/securitySettings/securitySettings.vue:184", "response :>> ", response); + if (response.msg) + uni.showToast({ + title: response.msg, + icon: "none" + }); + if (response.code !== 200) + return; + removeall(); } }); }; @@ -43452,7 +43656,7 @@ This will fail in production if not fixed.`); [ vue.createElementVNode("view", { class: "container" }, [ vue.createVNode(_component_u_navbar, { - title: "系统设置", + title: "安全设置", bgColor: "#D3832A", leftIconColor: "#ffffff", titleStyle: "color:#ffffff", @@ -43461,35 +43665,6 @@ This will fail in production if not fixed.`); leftIconSize: "35" }), vue.createElementVNode("view", { class: "list" }, [ - vue.createCommentVNode(" 设置后台监听状态 "), - vue.createElementVNode("view", { - class: "list_item", - style: { "display": "flex" } - }, [ - vue.createElementVNode("view", { class: "uni-list-cell-left" }, [ - vue.createVNode(_component_u_icon, { - class: "margin-right-10", - name: "moments", - color: "#47beff" - }), - vue.createElementVNode("view", null, " 扫描后台监听状态: ") - ]), - vue.createElementVNode("view", { class: "uni-list-cell-db" }, [ - vue.createElementVNode("picker", { - onChange: bindPickerChange, - value: details.scanStateChooseIndex, - range: details.scanStateList.map((val) => val.title) - }, [ - vue.createElementVNode( - "view", - { class: "uni-input" }, - vue.toDisplayString(details.scanStateList.map((val) => val.title)[details.scanStateChooseIndex]), - 1 - /* TEXT */ - ) - ], 40, ["value", "range"]) - ]) - ]), vue.createCommentVNode(" 设置密码 "), vue.createElementVNode("view", { class: "list_item", @@ -43511,7 +43686,7 @@ This will fail in production if not fixed.`); ]) ]) ]), - vue.createCommentVNode(" 设置密码 "), + vue.createCommentVNode(" 弹出层 -- 设置密码 "), vue.createVNode( _component_PopUp, { @@ -43629,7 +43804,7 @@ This will fail in production if not fixed.`); }; } }); - const PagesUserPagesSystemSettingsSystemSettings = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-e03137f9"], ["__file", "D:/worksp/logpm/pagesUser/pages/systemSettings/systemSettings.vue"]]); + const PagesUserPagesSecuritySettingsSecuritySettings = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-c76486a1"], ["__file", "D:/worksp/logpm/pagesUser/pages/securitySettings/securitySettings.vue"]]); const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({ __name: "dynamicCheck", setup(__props) { @@ -50237,6 +50412,7 @@ This will fail in production if not fixed.`); __definePage("pagesHome/pages/StockUpListZero/StockUpListZero", PagesHomePagesStockUpListZeroStockUpListZero); __definePage("pagesUser/pages/about/about", PagesUserPagesAboutAbout); __definePage("pagesUser/pages/systemSettings/systemSettings", PagesUserPagesSystemSettingsSystemSettings); + __definePage("pagesUser/pages/securitySettings/securitySettings", PagesUserPagesSecuritySettingsSecuritySettings); __definePage("pagesTask/pages/dynamicCheck/dynamicCheck", PagesTaskPagesDynamicCheckDynamicCheck); __definePage("pagesTask/pages/checkTaskList/checkTaskList", PagesTaskPagesCheckTaskListCheckTaskList); __definePage("pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails", PagesTaskPagesDynamicCheckDetailsDynamicCheckDetails);