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 @@
- 切换环境
-
- 请输入需要设置的IP环境
- 例:http://192.168.10.12:1086/
-
-
+
+
+
+
+
+
+ handleTabbar(index)">
+
+ {{item.label}}
+
+
+
+
+
+
+
- 确认
+
+
+
+
+
+
+
+
+
+
+
+ {{item.type}}
+
+
+
+
+ {{item.time}}
+
+
+
+
+
+
+
+ {{item.title}}
+
+
+
+
+
+
+
+
+
+
+ 查看详情
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
\ 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 @@
+
+ 切换环境
+
+ 请输入需要设置的IP环境
+ 例:http://192.168.10.12:1086/
+
+
+
+ 确认
+
+
+
+
+
\ 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 @@
- handleIdnex(index)">
-
-
-
+ handleIdnex(index)">
+
{{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 @@