diff --git a/App.vue b/App.vue index e758d92..2dd6d8f 100644 --- a/App.vue +++ b/App.vue @@ -53,6 +53,7 @@ \ No newline at end of file diff --git a/compoment/PullDownBox/PullDownBox.vue b/compoment/PullDownBox/PullDownBox.vue index 07e5774..1e714e6 100644 --- a/compoment/PullDownBox/PullDownBox.vue +++ b/compoment/PullDownBox/PullDownBox.vue @@ -8,7 +8,7 @@ @@ -78,7 +78,7 @@ } watch(() => props.isShow, () => { - console.log('111 :>> ', 111); + // console.log('111 :>> ', 111); isShowPullDownBox.value = props.isShow; nextTick(() => { handleShowPullDown(isShowPullDownBox.value) diff --git a/compoment/ScanButton/ScanButton.vue b/compoment/ScanButton/ScanButton.vue deleted file mode 100644 index 744667d..0000000 --- a/compoment/ScanButton/ScanButton.vue +++ /dev/null @@ -1,16 +0,0 @@ - - - \ No newline at end of file diff --git a/compoment/saomiao.vue b/compoment/saomiao.vue deleted file mode 100644 index 2a320b0..0000000 --- a/compoment/saomiao.vue +++ /dev/null @@ -1,79 +0,0 @@ - - - - - diff --git a/compoment/saomiao1.vue b/compoment/saomiao1.vue deleted file mode 100644 index 3849fba..0000000 --- a/compoment/saomiao1.vue +++ /dev/null @@ -1,69 +0,0 @@ - - - - - \ No newline at end of file diff --git a/compoment/saomiao2.vue b/compoment/saomiao2.vue index a59e713..6e2bafa 100644 --- a/compoment/saomiao2.vue +++ b/compoment/saomiao2.vue @@ -156,7 +156,7 @@ onReceive: function (context, intent) { console.log("intent", intent) plus.android.importClass(intent); - let content = intent.getStringExtra(pdaBroadcastList[brand].broadcastTag); // 换你的广播标签 + let content = intent.getStringExtra(pdaBroadcastList[brand].broadcastTag) + ''; // 换你的广播标签 // 将扫描 // let content = intent.getStringExtra('scannerdata'); // 换你的广播标签 console.log('content :>> ', content); @@ -171,7 +171,7 @@ }) // handleScanLog(content) - const _code = (content.replace(/\n/g, "") + '').trim() + const _code = content.replace(/\n/g, "").trim() // #ifdef APP writeLog(content + '>>>>>' + _code, false) @@ -258,7 +258,7 @@ HANDLE_REFRESH(false) uni.scanCode({ success(res) { - const content = res.result + const content = res.result + '' console.log('content :>> ', content); @@ -272,7 +272,7 @@ icon: 'none' }) - uni.$emit('scancodedate', (content.replace(/\n/g, "") + '').trim()) + uni.$emit('scancodedate', content.replace(/\n/g, "").trim()) } }) } diff --git a/compoment/saomiao3.vue b/compoment/saomiao3.vue deleted file mode 100644 index c7c058d..0000000 --- a/compoment/saomiao3.vue +++ /dev/null @@ -1,141 +0,0 @@ - - - - - \ No newline at end of file diff --git a/compoment/saomiao4.vue b/compoment/saomiao4.vue deleted file mode 100644 index ff17e95..0000000 --- a/compoment/saomiao4.vue +++ /dev/null @@ -1,85 +0,0 @@ - - - - - \ No newline at end of file diff --git a/config/host.js b/config/host.js index 56be549..eace179 100644 --- a/config/host.js +++ b/config/host.js @@ -19,9 +19,9 @@ // lg // const devhost = 'http://192.168.3.16:13000/' // cg -// const devhost = 'http://192.168.3.73:13000/' +const devhost = 'http://192.168.3.73:13000/' // 正式 -const devhost = 'https://h5uapi.huitongys.com/' +// const devhost = 'https://api.huo5u.com/' // cg // const devhost = 'http://192.168.10.200:13000/' @@ -29,9 +29,8 @@ const devhost = 'https://h5uapi.huitongys.com/' /** * 正式域名 * */ -// const prohost = 'http://h5uapi.huitongys.com/' -const prohost = 'https://h5uapi.huitongys.com/' // 小程序 -// const prohost = 'http://test.api.huo5u.com/' +// const prohost = 'https://api.huo5u.com/' +const prohost = 'http://test.api.huo5u.com/' /** * 图片域名 * */ diff --git a/main.js b/main.js index 7e6cd95..62b0213 100644 --- a/main.js +++ b/main.js @@ -18,7 +18,6 @@ import { import uviewPlus from 'uview-plus' import fantMini from '@/uni_modules/fant-mini-plus' import functions from '@/utils/functions' -import saomiao from '@/compoment/saomiao.vue' import tips from '@/compoment/tips/tips.vue' import tiplist from '@/compoment/tiplist/tiplist.vue' import InputNum from '@/compoment/InputNum/InputNum.vue'; @@ -41,10 +40,7 @@ import MyDrawer from '@/compoment/MyDrawer/MyDrawer'; import MyTable from '@/compoment/MyTable/MyTable'; /** 包条码 */ import MyQrCode from '@/compoment/MyQrCode/MyQrCode'; -import saomiao1 from '@/compoment/saomiao1.vue' import saomiao2 from '@/compoment/saomiao2.vue' -import saomiao3 from '@/compoment/saomiao3.vue' -import saomiao4 from '@/compoment/saomiao4.vue' import utils from '@/utils/utils.js' import Store from '@/store/index.js' import * as Pinia from 'pinia'; @@ -58,13 +54,9 @@ export function createApp() { app.use(Pinia.createPinia()) app.use(fantMini) app - .component('saomiao', saomiao) .component('tips', tips) .component('tiplist', tiplist) - .component('saomiao1', saomiao1) .component('saomiao2', saomiao2) - .component('saomiao3', saomiao3) - .component('saomiao4', saomiao4) .component('InputNum', InputNum) .component('BasicContainer', BasicContainer) .component('PopUp', PopUp) diff --git a/manifest.json b/manifest.json index f720fe8..018c38d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,9 +1,9 @@ { - "name" : "货无忧", + "name" : "货无忧测试版", "appid" : "__UNI__EB22F37", "description" : "", - "versionName" : "1.2.14", - "versionCode" : 1214, + "versionName" : "1.2.22", + "versionCode" : 1222, "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { diff --git a/pages.json b/pages.json index 6d040f8..99af7c2 100644 --- a/pages.json +++ b/pages.json @@ -807,9 +807,28 @@ "onReachBottomDistance": 1, "navigationStyle": "custom" } + }, + { + "path": "pages/VehicleBackStockScan/VehicleBackStockScan", + "style": { + "navigationBarTitleText": "配载滞留", + "enablePullDownRefresh": false, + "onReachBottomDistance": 1, + "navigationStyle": "custom" + } } ] }, + { + "root": "pagesMsg", + "pages": [{ + "path": "pages/MsgDetail/MsgDetail", + "style": { + "navigationBarTitleText": "消息详情", + "navigationStyle": "custom" + } + }] + }, { "root": "pagesUser", "pages": [{ @@ -918,12 +937,12 @@ // "selectedIconPath": "/static/TabberIcon/icon3check.png", // "text": "报表" // }, - // { - // "pagePath": "pages/news/news", - // "iconPath": "/static/TabberIcon/icon4.png", - // "selectedIconPath": "/static/TabberIcon/icon4check.png", - // "text": "消息" - // }, + { + "pagePath": "pages/news/news", + "iconPath": "/static/TabberIcon/icon4.png", + "selectedIconPath": "/static/TabberIcon/icon4check.png", + "text": "消息" + }, { "pagePath": "pages/user/user", "iconPath": "/static/TabberIcon/icon5.png", diff --git a/pages/index/index.vue b/pages/index/index.vue index f99a556..ea24b0b 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -40,249 +40,254 @@ const { storageArr } = storeToRefs(storageStore) const tip = ref(null) - let details = reactive({ tablist: [] }); - // let details = reactive({ - // tablist: [ - // { - // type: 1, - // name: '工作台', - // minilist: [ - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231016/440a01005f8333bcc76c1254a1d35570.png', - // name: '订单查询', - // router: '/pagesHome/pages/orderInquiry/orderInquiry', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png', - // name: '运单查询', - // router: '/pagesHome/pages/waybillInquiry/waybillInquiry', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png', - // name: '库位查询', - // router: '/pagesHome/pages/storageInquiry/storageInquiry', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png', - // name: '托盘查询', - // router: '/pagesHome/pages/trayInquiry/trayInquiry', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png', - // name: '库存品查询', - // router: '/pagesHome/pages/inventoryInquiry/inventoryInquiry', - // }, - // { - // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', - // name: '物料维护', - // router: '/pagesHome/pages/MaterialMaintenance/MaterialMaintenance', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240320/d22bc792f9deff3f106aafc590ec14fb.png', - // name: '库位列表', - // router: '/pagesHome/pages/StorageLocationList/StorageLocationList', - // }, - // { - // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', - // name: '发起工单', - // router: '/pagesHome/pages/CreateAbnormalWorkOrder/CreateAbnormalWorkOrder', - // }, - // ] - // }, - // { - // type: 1, - // name: '入库', - // minilist: [ - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240429/14451e54503266f168edf3651f2ab798.png', - // name: '码板打托', - // router: '/pagesHome/pages/codePlateBracket/codePlateBracket', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png', - // name: '入库扫描', - // router: '/pagesHome/pages/TranNumber/TranNumber', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png', - // name: '商家入库扫描', - // router: "/pagesHome/pages/onLoadByScan/onLoadByScan", - // }, - // // onLoadByScan - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240429/49254333c9c5c7aed6e9c8aab89c5998.png', - // name: '到车入库', - // router: '/pagesHome/pages/ArrivalList/ArrivalList', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png', - // name: '预入库车次', - // router: '/pagesHome/pages/Preentrytrainnumber/Preentrytrainnumber', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png', - // name: '回库扫描', - // router: '/pagesHome/pages/BackStockScan/BackStockScan', - // }, - // ] - // }, - // { - // type: 1, - // name: '库内', - // minilist: [ - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/e2604b3c97ee6001f367df87e3d0fdd1.png', - // name: '分拣打托', - // router: '/pagesHome/pages/scansorting/scansorting', - // }, - // // { - // // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', - // // name: '订单分拣', - // // router: '/pagesHome/pages/ordersorting/ordersorting', - // // }, - // // { - // // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', - // // name: '库存品分拣', - // // router: '/pagesHome/pages/lnventorysorting/lnventorysorting', - // // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/03add918888d36ce0d566da120510840.png', - // name: '扫码上架', - // router: '/pagesHome/pages/ScanUpType/ScanUpType', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/7b7ca70b84ebf6a2f72e74300725132c.png', - // name: '手动上架', - // router: '/pagesHome/pages/PeopleScanUpType/PeopleScanUpType', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/7b7e477dd35483ca7628567c609657fc.png', - // name: '移库', - // router: '/pagesHome/pages/RelocationType/RelocationType', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png', - // name: '滞留', - // router: '/pagesHome/pages/Retention/Retention', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/ce45bb522069f1fd154ca964e66069c2.png', - // name: '合托', - // router: '/pagesHome/pages/MergeTray/MergeTray', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/91403695005c2c65ea2c9d4ddadac9c3.png', - // name: '下架', - // router: '/pagesHome/pages/DownGoodsType/DownGoodsType', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231017/4ae045f95dcd923e8e8a553ccb374471.png', - // name: '空置托盘', - // router: '/pagesHome/pages/RemoveTray/RemoveTray', - // }, - // // { - // // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', - // // name: '复核', - // // router: '/pagesHome/pages/Check/Check', - // // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231217/5d3a466a54b62a60cfb9dc53b0f6ded1.png', - // name: '托盘数据同步', - // router: '/pagesHome/pages/SearchTray/SearchTray', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231017/4ae045f95dcd923e8e8a553ccb374471.png', - // name: '包件解托', - // router: '/pagesHome/pages/PackageRelieveTray/PackageRelieveTray', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png', - // name: '配送包件回库', - // router: '/pagesHome/pages/PackageBackWarehouse/PackageBackWarehouse', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png', - // name: '拆单列表', - // router: '/pagesHome/pages/UnorderTask/UnorderTask', - // }, - // ] - // }, - // { - // type: 1, - // name: '出库', - // minilist: [ - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/b58252914de56c0e3da1bdc75ac51c07.png', - // name: '拣货扫描', - // router: '/pagesHome/pages/pickingScan/pickingScan', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/7a9648ffdefd77f7ab8bb7861a2473e7.png', - // name: '自提扫描', - // router: '/pagesHome/pages/SelfPickupScan/SelfPickupScan', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240429/e5562240ca21316b21306d17f9394abc.png', - // name: '配载装车', - // router: '/pagesHome/pages/StowageList/StowageList', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240429/d58281e6ba1845f313d85a119107e260.png', - // name: '中转装车', - // router: '/pagesHome/pages/RelayScanList/RelayScanList', - // }, - // ] - // }, - // { - // type: 1, - // name: '配送', - // minilist: [ - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/1a9bbc8c842b8b7ef555d6cd79d421be.png', - // name: '装车扫描', - // router: '/pagesHome/pages/LoadingScan/LoadingScan', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20231012/6956f6950cfc291e01c038ea5e13f984.png', - // name: '签收扫描', - // router: '/pagesHome/pages/signinScan/signinScan', - // }, - // { - // icon: 'http://47.108.51.143:9000/basic/upload/20240429/16a9b462df1546f2fa6159df00ade62e.png', - // name: '直发商家签收', - // router: '/pagesHome/pages/directGoMarket/directGoMarket', - // }, - // ] - // }, - // { - // type: 1, - // name: '离线上传', - // minilist: [ - // { - // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', - // name: '离线上传', - // router: '/pagesHome/pages/OfflineUpload/OfflineUpload', - // }, - // ] - // }, - // { - // type: 1, - // name: '考核', - // minilist: [ - // { - // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', - // name: '考核指标', - // router: '/pagesHome/pages/integral/integral', - // }, - // { - // icon: 'http://8.137.14.82:9000/bladex/upload/20240117/fac9c4fd6c4f0bee599417fc8fbbee62.png', - // name: '我的考核', - // router: '/pagesHome/pages/integralMy/integralMy', - // }, - // ] - // }, - // ] - // }) + // let details = reactive({ tablist: [] }); + let details = reactive({ + tablist: [ + { + type: 1, + name: '工作台', + minilist: [ + { + icon: 'http://47.108.51.143:9000/basic/upload/20231016/440a01005f8333bcc76c1254a1d35570.png', + name: '订单查询', + router: '/pagesHome/pages/orderInquiry/orderInquiry', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png', + name: '运单查询', + router: '/pagesHome/pages/waybillInquiry/waybillInquiry', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png', + name: '库位查询', + router: '/pagesHome/pages/storageInquiry/storageInquiry', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png', + name: '托盘查询', + router: '/pagesHome/pages/trayInquiry/trayInquiry', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240103/81ac2b693232dd9968ec35c0fa3d21f2.png', + name: '库存品查询', + router: '/pagesHome/pages/inventoryInquiry/inventoryInquiry', + }, + { + icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', + name: '物料维护', + router: '/pagesHome/pages/MaterialMaintenance/MaterialMaintenance', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240320/d22bc792f9deff3f106aafc590ec14fb.png', + name: '库位列表', + router: '/pagesHome/pages/StorageLocationList/StorageLocationList', + }, + { + icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', + name: '发起工单', + router: '/pagesHome/pages/CreateAbnormalWorkOrder/CreateAbnormalWorkOrder', + }, + ] + }, + { + type: 1, + name: '入库', + minilist: [ + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/14451e54503266f168edf3651f2ab798.png', + name: '码板打托', + router: '/pagesHome/pages/codePlateBracket/codePlateBracket', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png', + name: '入库扫描', + router: '/pagesHome/pages/TranNumber/TranNumber', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png', + name: '商家入库扫描', + router: "/pagesHome/pages/onLoadByScan/onLoadByScan", + }, + // onLoadByScan + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/49254333c9c5c7aed6e9c8aab89c5998.png', + name: '到车入库', + router: '/pagesHome/pages/ArrivalList/ArrivalList', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png', + name: '预入库车次', + router: '/pagesHome/pages/Preentrytrainnumber/Preentrytrainnumber', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png', + name: '回库扫描', + router: '/pagesHome/pages/BackStockScan/BackStockScan', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/d4325e620aa324658da28d7cabc6f223.png', + name: '配载滞留', + router: '/pagesHome/pages/VehicleBackStockScan/VehicleBackStockScan', + }, + ] + }, + { + type: 1, + name: '库内', + minilist: [ + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/e2604b3c97ee6001f367df87e3d0fdd1.png', + name: '分拣打托', + router: '/pagesHome/pages/scansorting/scansorting', + }, + // { + // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', + // name: '订单分拣', + // router: '/pagesHome/pages/ordersorting/ordersorting', + // }, + // { + // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', + // name: '库存品分拣', + // router: '/pagesHome/pages/lnventorysorting/lnventorysorting', + // }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/03add918888d36ce0d566da120510840.png', + name: '扫码上架', + router: '/pagesHome/pages/ScanUpType/ScanUpType', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/7b7ca70b84ebf6a2f72e74300725132c.png', + name: '手动上架', + router: '/pagesHome/pages/PeopleScanUpType/PeopleScanUpType', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/7b7e477dd35483ca7628567c609657fc.png', + name: '移库', + router: '/pagesHome/pages/RelocationType/RelocationType', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png', + name: '滞留', + router: '/pagesHome/pages/Retention/Retention', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/ce45bb522069f1fd154ca964e66069c2.png', + name: '合托', + router: '/pagesHome/pages/MergeTray/MergeTray', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/91403695005c2c65ea2c9d4ddadac9c3.png', + name: '下架', + router: '/pagesHome/pages/DownGoodsType/DownGoodsType', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231017/4ae045f95dcd923e8e8a553ccb374471.png', + name: '空置托盘', + router: '/pagesHome/pages/RemoveTray/RemoveTray', + }, + // { + // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', + // name: '复核', + // router: '/pagesHome/pages/Check/Check', + // }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231217/5d3a466a54b62a60cfb9dc53b0f6ded1.png', + name: '托盘数据同步', + router: '/pagesHome/pages/SearchTray/SearchTray', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231017/4ae045f95dcd923e8e8a553ccb374471.png', + name: '包件解托', + router: '/pagesHome/pages/PackageRelieveTray/PackageRelieveTray', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png', + name: '配送包件回库', + router: '/pagesHome/pages/PackageBackWarehouse/PackageBackWarehouse', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/b104c036fc6b6af5b635cc619731db6f.png', + name: '拆单列表', + router: '/pagesHome/pages/UnorderTask/UnorderTask', + }, + ] + }, + { + type: 1, + name: '出库', + minilist: [ + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/b58252914de56c0e3da1bdc75ac51c07.png', + name: '拣货扫描', + router: '/pagesHome/pages/pickingScan/pickingScan', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/7a9648ffdefd77f7ab8bb7861a2473e7.png', + name: '自提扫描', + router: '/pagesHome/pages/SelfPickupScan/SelfPickupScan', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/e5562240ca21316b21306d17f9394abc.png', + name: '配载装车', + router: '/pagesHome/pages/StowageList/StowageList', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/d58281e6ba1845f313d85a119107e260.png', + name: '中转装车', + router: '/pagesHome/pages/RelayScanList/RelayScanList', + }, + ] + }, + { + type: 1, + name: '配送', + minilist: [ + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/1a9bbc8c842b8b7ef555d6cd79d421be.png', + name: '装车扫描', + router: '/pagesHome/pages/LoadingScan/LoadingScan', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20231012/6956f6950cfc291e01c038ea5e13f984.png', + name: '签收扫描', + router: '/pagesHome/pages/signinScan/signinScan', + }, + { + icon: 'http://47.108.51.143:9000/basic/upload/20240429/16a9b462df1546f2fa6159df00ade62e.png', + name: '直发商家签收', + router: '/pagesHome/pages/directGoMarket/directGoMarket', + }, + ] + }, + { + type: 1, + name: '离线上传', + minilist: [ + { + icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', + name: '离线上传', + router: '/pagesHome/pages/OfflineUpload/OfflineUpload', + }, + ] + }, + { + type: 1, + name: '考核', + minilist: [ + { + icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png', + name: '考核指标', + router: '/pagesHome/pages/integral/integral', + }, + { + icon: 'http://8.137.14.82:9000/bladex/upload/20240117/fac9c4fd6c4f0bee599417fc8fbbee62.png', + name: '我的考核', + router: '/pagesHome/pages/integralMy/integralMy', + }, + ] + }, + ] + }) function gopathpage(path : string) { uni.navigateTo({ diff --git a/pages/news/news.vue b/pages/news/news.vue index 91b8aad..c777072 100644 --- a/pages/news/news.vue +++ b/pages/news/news.vue @@ -1,101 +1,227 @@ - - \ No newline at end of file diff --git a/pages/news/oldNews.vue b/pages/news/oldNews.vue new file mode 100644 index 0000000..91b8aad --- /dev/null +++ b/pages/news/oldNews.vue @@ -0,0 +1,101 @@ + + + + \ No newline at end of file diff --git a/pages/user/user.vue b/pages/user/user.vue index e7606eb..fba27e3 100644 --- a/pages/user/user.vue +++ b/pages/user/user.vue @@ -177,9 +177,9 @@ } // 关于我们 else if (item.type == 5) { - uni.navigateTo({ - url: '/pagesUser/pages/about/about' - }) + // uni.navigateTo({ + // url: '/pagesUser/pages/about/about' + // }) } else if (item.type == 6) { updateApp() } else if (item.type == 8) { diff --git a/pagesHome/pages/ArrivalList/ArrivalList.vue b/pagesHome/pages/ArrivalList/ArrivalList.vue index 6d3be30..fc25e46 100644 --- a/pagesHome/pages/ArrivalList/ArrivalList.vue +++ b/pagesHome/pages/ArrivalList/ArrivalList.vue @@ -420,9 +420,12 @@ // 现节点在始发仓, 无法操作 if (Number(iterator.loadStatus) === 100 || Number(iterator.loadStatus) === 0) continue + console.log('_nowIndex :>> ', _nowIndex); + console.log('_index :>> ', _index); // 是否显示到车按钮 - if (_nowIndex < _index && (Number(iterator.loadStatus) === 10 || Number(iterator.loadStatus) === 30)) { - iterator.showArrivalBtn = true + if (_nowIndex < _index) { + if (Number(iterator.loadStatus) === 10 || Number(iterator.loadStatus) === 30) iterator.showArrivalBtn = true + continue } diff --git a/pagesHome/pages/OrderDetailsInTheStorage/OrderDetailsInTheStorage.vue b/pagesHome/pages/OrderDetailsInTheStorage/OrderDetailsInTheStorage.vue index bec1464..f82f802 100644 --- a/pagesHome/pages/OrderDetailsInTheStorage/OrderDetailsInTheStorage.vue +++ b/pagesHome/pages/OrderDetailsInTheStorage/OrderDetailsInTheStorage.vue @@ -56,28 +56,30 @@ - - - - + + {{value.title}} - {{value.scanNum}} - / - {{value.dataList.length}} - + + + {{value.scanNum === 0 ? '未扫' : value.scanNum < value.dataList.length ? '未扫完' : '已扫完'}} + - - - {{value.scanNum === 0 ? '未扫' : value.scanNum < value.dataList.length ? '未扫完' : '已扫完'}} - - - - + + + + + 未入:{{value.dataList.length - value.scanNum}} + 已入:{{value.scanNum}} + 总数: {{value.dataList.length}} + + @@ -505,19 +507,27 @@ >.title { font-family: serif; padding: 20upx; - background: var(--subjectColor); + // background: var(--subjectColor); + background-color: var(--errColor); color: #fff; font-weight: bold; + &.active { + background-color: var(--primaryColor); + } + .tip { - font-weight: normal; + font-weight: bold; font-size: 0.8rem; - background: #d79040; + // background: #d79040; + background-color: #fff; + color: var(--errColor); padding: 10upx 20upx; border-radius: 10upx; &.perform { - color: var(--subjectColor); + // color: var(--subjectColor); + color: var(--primaryColor); background: #fff; } } diff --git a/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue b/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue index 13318a4..06af37e 100644 --- a/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue +++ b/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue @@ -6,58 +6,101 @@ - - - - {{ detauser?.trayName || '' }} - 托盘名称 + + + + + - - {{ detauser?.trayCode || details.trayCode }} - 托盘码 - - - - - {{ detauser?.orderlNum || 0 }} - 订单在托数量 - - - {{ detauser?.orderTotalNum || 0 }} - 订单总数 - - - - - {{ detauser?.stockNum || 0 }} - 库存品在托数量 - - - {{ detauser?.stockTotalNum || 0 }} - 库存品总数 - - - - - {{ detauser?.trayTypeName }} - 打托方式 - - - {{ detauser?.name || '暂无数据' }} - 名称 - - - - - {{ details.Remarktext }} - 备注 - - - 打印 + + + + + 确 认 + + + + + + + + + 定制品 @@ -85,22 +128,25 @@ - + @@ -127,7 +176,7 @@ 订单号: - {{ item.dataCode }} + {{ item.dataCode }} @@ -153,7 +202,7 @@ - 订单号: + 订单号: {{ item.dataCode }} @@ -161,22 +210,22 @@ 物料名称: - {{ item.dataName }} + {{ item.dataName }} 批次号: - {{ item.incomingBatch }} + {{ item.incomingBatch }} SKU: - {{ item.sku }} + {{ item.sku }} 物料单位: - {{ item.cargoUnit }} + {{ item.cargoUnit }} @@ -382,7 +431,7 @@ warehouseTrayTypedeleteZeroOrderByTrayCode, warehouseTrayTypeSelectStockByMaterialNameAndMarketId } from '@/api/user.js' - import { onLoad, onShow, onHide, onPullDownRefresh } from '@dcloudio/uni-app' + import { onLoad, onShow } from '@dcloudio/uni-app' import utils from '@/utils/utils.js' import { reactive, ref, toRefs, nextTick } from 'vue' import dayjs from 'dayjs' @@ -432,6 +481,8 @@ /** 搜索状态 -- 编码 | 名称 */ activeStatus: 'materialName' as 'materialCode' | 'materialName' }, + /** 搜索的值 */ + searchText: '' }) let tip = ref(null) const tiplists = ref(null) @@ -476,18 +527,7 @@ await nextTick() basicContainer.value.startPullDownRefresh() }) - /* onHide(() => { - uni.$off('scancodedate') - }) */ - // 下拉刷新 - onPullDownRefresh(() => { - const timer = setTimeout(async () => { - await initlist() - - uni.stopPullDownRefresh() - clearTimeout(timer) - }, 500) - }) + async function godetaillist(item) { uni.navigateTo({ url: @@ -497,6 +537,18 @@ details.trayCode, }) } + + /** 下拉盒状态变化时 */ + const handlePullDownChange = () => { + nextTick(() => { + const timer = setTimeout(() => { + basicContainer.value.handleSetHeaderHeight() + clearTimeout(timer) + }, 500) + }) + + } + /** * 删除 */ @@ -613,6 +665,18 @@ details.stock.marketName = res.data.data.marketName details.Remarktext = res.data.data.reamrk console.log(' details.detauser :>> ', details.detauser) + + // 正常订单 + const _normalArr = [] + // 异常订单 + const _abnormalArr = [] + + for (let item of details.detauser.packageList) { + item.isFleeing === 0 ? _normalArr.push(item) : _abnormalArr.push(item) + } + + details.detauser.packageList = [..._abnormalArr, ..._normalArr] + if (details.tabBarState === 1) details.datelist = details.detauser.packageList else if (details.tabBarState === 2) details.datelist = details.detauser.zeroList else if (details.tabBarState === 3) details.datelist = details.detauser.stockList @@ -639,6 +703,13 @@ else if (details.tabBarState === 3) return scanStock() } + const handleSearch = () => { + console.log('details.searchText :>> ', details.searchText); + if (!details.searchText) return utils.handleToast('请输入码值') + details.scancode = details.searchText + scandata() + } + /** * 扫描托盘码 */ @@ -676,6 +747,8 @@ orderPackageCode: details.scancode, } let response = await warehouseTrayTypeorderScanOrderPackageCode(submitData) + + if (response.code !== 200) return console.log('response', response) const res = await initlist() const { code } = res @@ -931,9 +1004,6 @@ */ async function confirmlur() { try { - - - if (details.stock.searchStockList.length === 0) { return uni.showToast({ title: '最少修改一项物料', @@ -1152,83 +1222,74 @@ .header_top { - width: 100vw; + background-color: #f5f5f6; + // width: 100vw; box-sizing: border-box; + margin: 0 20upx; } - .mabxtop { - position: relative; - background: #ffffff; + .header_box { + // margin: 20upx; + background-color: #fff; border-radius: 20upx; - margin: 0 20upx 20upx; padding: 20upx; - box-sizing: border-box; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - >view { - width: 100%; - display: flex; - align-items: center; - justify-content: space-between; - margin-bottom: 10upx; + .header_search { + height: 2rem; - &:nth-last-child(1) { - margin-bottom: 0; + .search_container { + height: inherit; } - >view { - &:nth-of-type(1) { - width: 60%; - } + :deep(.input_container) { + background-color: #f5f5f5; + border: none; + } + } - &:nth-of-type(2) { - width: 40%; - } + .header_title { + display: flex; + flex-wrap: wrap; - display: flex; - flex-direction: column; - align-items: flex-start; + >view { + min-width: 50%; + flex: none; + font-size: 0.8rem; + padding: 5upx; + box-sizing: border-box; + } + } - >view:nth-of-type(1) { - font-size: 32upx; - font-weight: 400; - color: #020b18; - word-wrap: break-word; - word-break: break-all; - } + .header_content { + background-color: #eee; + padding: 20upx; + border-radius: 10upx; - >view:nth-of-type(2) { - font-size: 28upx; - font-weight: 400; - color: #90a0af; - } + .number { + font-size: 1.2rem; } } - .printBtn { - background: var(--subjectColor); - color: #fff !important; - width: 100upx; - padding: 10upx; - text-align: center; - border-radius: 5upx; + .submitBtn { + padding: 0 30upx; + height: 2rem; + background-color: var(--subjectColor); + color: #fff; + box-sizing: border-box; + border-radius: 6upx; + transition: all 0.3s; } } + // 背景图 .bgimg { position: fixed; left: 0; - top: 0; + top: -100upx; width: 100%; } .scvmabx { - // width: 684rpx; - margin: auto; - margin-top: 20upx; padding: 20upx; // 商场名称 @@ -1237,135 +1298,98 @@ margin-bottom: 20upx; align-items: center; } + } - .maxboxs { - width: 100%; - display: flex; - flex-direction: column; - align-items: center; + .maxboxs { - .chuanhuo { - border: #ff0000; - } + .chuanhuo { + border: #ff0000; + } - .weiqt { - position: absolute; - right: 0; - top: 0; - width: 70upx; - height: 70upx; - } + .items { + padding: 20upx; + box-sizing: border-box; + background-color: #ffffff; + border-radius: 10upx; + margin-bottom: 20upx; + position: relative; + overflow: hidden; - .qitao { - position: absolute; - right: 0; - top: 0; - width: 70upx; - height: 70upx; - } - >.items { - width: 690upx; + .tophd { + width: 100%; display: flex; - flex-direction: column; - align-items: center; - padding: 20upx 30upx; + align-items: flex-start; + justify-content: flex-start; + padding: 20upx; box-sizing: border-box; - background-color: #ffffff; - border-radius: 10upx; - margin-bottom: 30upx; - position: relative; + border-bottom: 4upx solid #eeeeee; - &:nth-last-child(1) { - margin-bottom: 20upx; - } - - .tophd { - width: 100%; - display: flex; - align-items: flex-start; - justify-content: flex-start; - padding: 15upx 20upx; + >image { + width: 48upx; + height: 48upx; + margin-right: 10upx; box-sizing: border-box; - padding-top: 30upx; - border-bottom: 4upx solid #eeeeee; + } - >image { - width: 48upx; - height: 48upx; - margin-right: 10upx; - box-sizing: border-box; - } + >view { + font-size: 0.8rem; + color: #020b18; + word-break: break-all; + } + } - >view { - font-size: 32upx; - color: #020b18; - font-weight: 400; - word-wrap: break-word; - word-break: break-all; + .tophd1 { + width: 100%; + display: flex; + box-sizing: border-box; + padding: 15upx 20upx; + border-bottom: 4upx solid #eeeeee; - &:nth-of-type(1) { - width: 180upx; - } - } + &>view { + display: flex; + flex: 1; + align-items: center; + } - >view:nth-of-type(2) { - flex: 1; - } + image { + width: 64upx; + height: 64upx; } + } - .tophd1 { - width: 100%; - display: flex; - box-sizing: border-box; - padding: 15upx 20upx; - border-bottom: 4upx solid #eeeeee; + .numbxvie { + width: 100%; + display: flex; + align-items: center; + justify-content: space-around; + padding: 15upx 25upx; + box-sizing: border-box; - &>view { - display: flex; - flex: 1; - align-items: center; - } + .zhon { + color: var(--subjectColor); + } - image { - width: 64upx; - height: 64upx; - } + .yish { + color: #1197eb; } - .numbxvie { - width: 100%; + .weish { + color: #020b18; + } + + >view { display: flex; + flex-direction: column; align-items: center; - justify-content: space-around; - padding: 15upx 25upx; - box-sizing: border-box; - .zhon { - color: var(--subjectColor); + >view:nth-of-type(1) { + font-size: 36upx; + margin-bottom: 12upx; } - .yish { - color: #1197eb; - } - - .weish { - color: #020b18; - } - - >view { - display: flex; - flex-direction: column; - align-items: center; - - >view:nth-of-type(1) { - font-size: 36upx; - margin-bottom: 12upx; - } - - >view:nth-of-type(2) { - font-size: 28upx; - } + >view:nth-of-type(2) { + font-size: 28upx; } } } @@ -1430,8 +1454,7 @@ \ No newline at end of file diff --git a/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue b/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue index f6ba1da..51e4ffb 100644 --- a/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue +++ b/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue @@ -321,6 +321,22 @@ {{item.incomingBatch||'暂无数据'}} + + + 上架数: diff --git a/pagesHome/pages/PickUpLotList/PickUpLotList.vue b/pagesHome/pages/PickUpLotList/PickUpLotList.vue index 26a9433..740b844 100644 --- a/pagesHome/pages/PickUpLotList/PickUpLotList.vue +++ b/pagesHome/pages/PickUpLotList/PickUpLotList.vue @@ -11,58 +11,94 @@ - - 确认 - - - - - - 托盘码:{{details.pageInfo.trayCode || '暂无数据'}} - - - - 托盘名称:{{details.pageInfo.trayName || '暂无数据'}} - - - - - 打托方式:{{details.pageInfo.pageName || '暂无数据'}} - - - - 名称:{{details.detauser.name || '暂无数据'}} + + + + 确 认 + - - - 订单在托数:{{details.detauser.orderlNum }} - - - - 订单总数:{{details.detauser.orderTotalNum }} - - + + + + + @@ -77,38 +113,40 @@ - - + - 订单号: - 订单号: + {{item.dataCode || '暂无数据'}} - 服务号: + 服务号: {{item.serviceNumber || '暂无数据'}} - 总数: + + 总数: + {{item.orderTotalNum }} - 已扫: + + 已扫: + {{item.scanNum }} - 未扫: + + 未扫: + {{item.residueNum }} @@ -157,6 +195,13 @@ + + + + + + + \ No newline at end of file diff --git a/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue b/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue index d54a35c..a41366b 100644 --- a/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue +++ b/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue @@ -30,9 +30,9 @@ size='145' :clearable='true'> - + - 查询 + 查询 @@ -328,7 +328,8 @@ if (!haveData) return utils.handleToast('码值错误, 不在本计划内') if (content) return utils.handleToast(content) - + console.log('details.planNum :>> ', details.planNum); + console.log('details.signedNum :>> ', details.signedNum); if (details.planNum <= details.signedNum) return let data = { id: details.billLadingId, diff --git a/pagesHome/pages/StockUpListZero/StockUpListZero.vue b/pagesHome/pages/StockUpListZero/StockUpListZero.vue index 43e947c..b90e885 100644 --- a/pagesHome/pages/StockUpListZero/StockUpListZero.vue +++ b/pagesHome/pages/StockUpListZero/StockUpListZero.vue @@ -166,7 +166,7 @@ async function scandata() { let data = { scanType: 1, - orderCode: details.orderCode, + // orderCode: details.orderCode, packetBarCode: details.scancode, stockupArea: details.stockupArea, reservationId: details.reservationId, diff --git a/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue b/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue index 8cc9db1..8a5f9e9 100644 --- a/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue +++ b/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue @@ -86,14 +86,14 @@ const bluetoothStore = useBluetoothStore() const { bluetoothInfo } = storeToRefs(bluetoothStore) - const option = { - ttile: '备货列表', + const option = reactive({ + title: '备货列表', haveData: true, async pullDownRefreshInitPage() { console.log('1231 :>> ', 1231) return await initpage() }, - } + }) let details = reactive({ dataList: [], stockArticleId: '', @@ -274,7 +274,7 @@ if (Number(details.status) !== 0) return let data = { scanType: 1, - orderCode: details.orderCode, + // orderCode: details.orderCode, packetBarCode: details.scancode, stockupArea: details.stockupArea, reservationId: details.reservationId, diff --git a/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue b/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue index b29650c..4ca45a7 100644 --- a/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue +++ b/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue @@ -7,7 +7,9 @@