diff --git a/api/user.js b/api/user.js
index 69d2bdf..d9638e9 100644
--- a/api/user.js
+++ b/api/user.js
@@ -543,7 +543,7 @@ export function signforZeroSignfor(data, loadingObj = {}) {
);
}
/**
- * 签收订制品详情
+ * 签收定制品详情
* @param {Object} data
*/
export function signforwrap(data, loadingObj = {}) {
@@ -627,7 +627,7 @@ export function deliveryloadinginventory(data, loadingObj = {}) {
);
}
/**
- * 客户签收订制品扫描
+ * 客户签收定制品扫描
* @param {Object} data
*/
export function signforsignfor(data, loadingObj = {}) {
@@ -1833,6 +1833,36 @@ export function distributionOrderInfoInQuery(data, loadingObj = {}) {
);
}
+/**
+ * 库位详情查询
+ * @param {Object} data
+ */
+export function postFindAllocationData(data, loadingObj = {}) {
+
+ return request({
+ url: `logpm-warehouse/api/warehouseUpdownType/findAllocationData`,
+ method: "post",
+ data
+ },
+ loadingObj
+ );
+}
+
+/**
+ * 托盘详情查询
+ * @param {Object} data
+ */
+export function postFindTrayData(data, loadingObj = {}) {
+
+ return request({
+ url: `logpm-warehouse/api/warehouseTrayType/findTrayData`,
+ method: "post",
+ data
+ },
+ loadingObj
+ );
+}
+
/**
* 批量打印包件
* @param {Object} ids
diff --git a/config/host.js b/config/host.js
index 4a602f1..637a1f7 100644
--- a/config/host.js
+++ b/config/host.js
@@ -8,16 +8,16 @@
// 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
-// const devhost = 'http://192.168.6.148:9777/'
+// const devhost = 'http://192.168.6.161:9777/'
// const devhost = 'http://192.168.6.141:8777/'
// cg
// const devhost = 'http://192.168.10.57:13000/'
// 正式
-// const devhost = 'https://h5uapi.huitongys.com/'
+const devhost = 'https://h5uapi.huitongys.com/'
// cg
// const devhost = 'http://192.168.10.200:13000/'
/**
diff --git a/interfaces/pagesHome/StockUplist.ts b/interfaces/pagesHome/StockUplist.ts
index 408cc00..edbeed4 100644
--- a/interfaces/pagesHome/StockUplist.ts
+++ b/interfaces/pagesHome/StockUplist.ts
@@ -4,7 +4,7 @@ export interface detailType {
* */
reservationId : string | number;
/**
- * 备货客户列表 订制品
+ * 备货客户列表 定制品
* */
orderList : any;
/**
diff --git a/pages.json b/pages.json
index 7b7b63d..e5e308a 100644
--- a/pages.json
+++ b/pages.json
@@ -210,6 +210,25 @@
}
}
+ },
+ {
+ "path": "pages/PickUpLotList/PickUpLotList",
+ "style": {
+ "navigationBarTitleText": "提货批次列表",
+ "enablePullDownRefresh": true,
+ "onReachBottomDistance": 1,
+ "navigationStyle": "custom",
+ "app-plus": {
+ "animationDuration": 300,
+ "animationType": "zoom-fade-out",
+ "pullToRefresh": {
+ "support": true,
+ "color": "#d3832a", //小圈圈的颜色
+ "style": "circle" //小圈圈的样式
+ }
+ }
+ }
+
},
{
"path": "pages/ArrivalList/ArrivalList",
@@ -1168,7 +1187,46 @@
}
}
- }, {
+ },
+ {
+ "path": "pages/storageInquiry/storageInquiry",
+ "style": {
+ "navigationBarTitleText": "库位查询",
+ "enablePullDownRefresh": true,
+ "onReachBottomDistance": 1,
+ "navigationStyle": "custom",
+ "app-plus": {
+ "animationDuration": 300,
+ "animationType": "zoom-fade-out",
+ "pullToRefresh": {
+ "support": true,
+ "color": "#d3832a", //小圈圈的颜色
+ "style": "circle" //小圈圈的样式
+ }
+ }
+ }
+
+ },
+ {
+ "path": "pages/trayInquiry/trayInquiry",
+ "style": {
+ "navigationBarTitleText": "托盘查询",
+ "enablePullDownRefresh": true,
+ "onReachBottomDistance": 1,
+ "navigationStyle": "custom",
+ "app-plus": {
+ "animationDuration": 300,
+ "animationType": "zoom-fade-out",
+ "pullToRefresh": {
+ "support": true,
+ "color": "#d3832a", //小圈圈的颜色
+ "style": "circle" //小圈圈的样式
+ }
+ }
+ }
+
+ },
+ {
"path": "pages/CustomerTrayDetails/CustomerTrayDetails",
"style": {
"navigationBarTitleText": "客户托盘扫描",
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 2ad4b62..af737d6 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -52,6 +52,16 @@
// name: '订单查询',
// router: '/pagesHome/pages/orderInquiry/orderInquiry',
// },
+ // {
+ // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
+ // name: '库位查询',
+ // router: '/pagesHome/pages/storageInquiry/storageInquiry',
+ // },
+ // {
+ // icon: 'http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png',
+ // name: '托盘查询',
+ // router: '/pagesHome/pages/trayInquiry/trayInquiry',
+ // },
// ]
// },
// {
diff --git a/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue b/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue
index eaf35c6..8c84218 100644
--- a/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue
+++ b/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue
@@ -32,7 +32,7 @@
装车件数
- {{scannedNumber}}
+ {{details.scannedNumber}}
@@ -122,7 +122,9 @@
datalist: [],
items: {} as any,
scancode: '',
- authbuts: uni.getStorageSync('authbuts')
+ authbuts: uni.getStorageSync('authbuts'),
+ /** 装车件数 */
+ scannedNumber: 0
})
const tip = ref(null)
const tiplists = ref(null)
@@ -170,7 +172,6 @@
const scannedNumber = computed(() => {
let num = 0
details.datalist.forEach(item => {
- console.log('item.loadingNub :>> ', item.loadingNub);
num += Number(item.loadingNub)
})
return num
@@ -233,16 +234,16 @@
barcode: details.scancode
*/
- /** 扫描订制品 */
+ /** 扫描定制品 */
const scanOrder = async (loadingId) => {
- let data = {
+ let submitData = {
deliveryId: details.id,
loadingId,
type: 1,
barcode: details.scancode
}
- let res = await deliveryloadingscan(data)
- const { code, audio } = res
+ let res = await deliveryloadingscan(submitData)
+ const { code, data, audio } = res
// 异常装车
if (code === 5000) {
@@ -251,8 +252,9 @@
// 窜货
if (code === 3001) utils.ttsspke(audio)
- if (code !== 200) return
- basicContainer.value.startPullDownRefresh()
+ if (code !== 200 || !data) return
+ // basicContainer.value.startPullDownRefresh()
+ details.scannedNumber = Number(data)
}
/** 扫描库存品 */
@@ -293,7 +295,13 @@
let response = await deliverycustom(data)
if (response.code !== 200) return
console.log('response', response)
- details.datalist = response.data
+ details.datalist = response.data || []
+
+ details.scannedNumber = 0
+
+ details.datalist.forEach(item => {
+ details.scannedNumber += Number(item.loadingNub)
+ })
} catch (e) {
//TODO handle the exception
} finally {
diff --git a/pagesHome/pages/PickUpLotList/PickUpLotList.vue b/pagesHome/pages/PickUpLotList/PickUpLotList.vue
new file mode 100644
index 0000000..5c237d4
--- /dev/null
+++ b/pagesHome/pages/PickUpLotList/PickUpLotList.vue
@@ -0,0 +1,18 @@
+
+
+ 123
+
+ 333
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pagesHome/pages/RemoveTray/RemoveTray.vue b/pagesHome/pages/RemoveTray/RemoveTray.vue
index c63c474..22ea0a9 100644
--- a/pagesHome/pages/RemoveTray/RemoveTray.vue
+++ b/pagesHome/pages/RemoveTray/RemoveTray.vue
@@ -17,7 +17,7 @@
- 订制品
+ 定制品
零担
diff --git a/pagesHome/pages/ScanSortingType/ScanSortingType.vue b/pagesHome/pages/ScanSortingType/ScanSortingType.vue
index cda10d4..39b7bf4 100644
--- a/pagesHome/pages/ScanSortingType/ScanSortingType.vue
+++ b/pagesHome/pages/ScanSortingType/ScanSortingType.vue
@@ -1,6 +1,6 @@
-
+
@@ -18,10 +18,14 @@
onUnload
} from '@dcloudio/uni-app'
import { ref } from "vue";
+ import { useRoute } from 'vue-router';
import utils from '@/utils/utils.js';
let typelist = ref<{ type : number, name : string, src : string }[]>([])
let pageType = ref('')
let trayCode = ref('')
+
+ const $route = useRoute()
+
onShow(() => {
// #ifdef APP
uni.$off('scancodedate')
@@ -31,6 +35,8 @@
onLoad((op) => {
trayCode.value = op.trayCode
+ console.log('$route.query :>> ', $route.query);
+
typelist.value = [
{ type: 1, name: '服务号', src: '/pagesHome/static/scicon1.png' },
{ type: 2, name: '订单自编码', src: '/pagesHome/static/scicon2.png' },
@@ -71,13 +77,15 @@
function gotourl(item : any) {
let url = ''
console.log('item>>>>>>>', item);
- url = '/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode='
+
+ const SkipRoute = $route.query.SkipRoute
+
+ console.log('SkipRoute :>> ', SkipRoute);
+
+ url = '/pagesHome/pages' + (SkipRoute ? SkipRoute : '/OrderSortingDetail/OrderSortingDetail') + '?trayCode='
+ trayCode.value + '&trayType=' + item.dictKey + '&pageName=' + item.name
- if (Number(pageType.value) == 2) {
- url = '/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail?trayCode='
- + trayCode.value + '&trayType=' + item.dictKey + '&pageName=' + item.name
- }
+
uni.redirectTo({
url
})
diff --git a/pagesHome/pages/StowageListDetails/StowageListDetails.vue b/pagesHome/pages/StowageListDetails/StowageListDetails.vue
index c9cd9b7..543dee2 100644
--- a/pagesHome/pages/StowageListDetails/StowageListDetails.vue
+++ b/pagesHome/pages/StowageListDetails/StowageListDetails.vue
@@ -577,7 +577,7 @@
}
/**
- * 请求订制品和零担详情
+ * 请求定制品和零担详情
*/
const handleDetails = async (item : any, index : number, type : number) => {
console.log('item :>> ', item);
diff --git a/pagesHome/pages/codePlateBracket/codePlateBracket.vue b/pagesHome/pages/codePlateBracket/codePlateBracket.vue
index c887b6c..5597819 100644
--- a/pagesHome/pages/codePlateBracket/codePlateBracket.vue
+++ b/pagesHome/pages/codePlateBracket/codePlateBracket.vue
@@ -8,6 +8,7 @@
查询
+
分拣日期:
@@ -21,20 +22,6 @@
-
-
-
-
- {{details.scanStateList.map(val => val.title)[details.scanStateChooseIndex]}}
-
-
-
-
-
-
-
-
@@ -134,29 +121,29 @@
title: '已经打托列表',
// 下拉刷新回调函数
async pullDownRefreshInitPage() {
- // 重置页码
- details.pageNum = 1
- // 重置渲染列表
- details.datalist = []
- // 重置渲染列表数据请求是否结束状态
- option.isEnd = false
- // 重置是否有数据
- option.haveData = true
- await initpage()
- if (datalist.value.length === 0) {
- uni.showToast({
- title: '暂时没有数据',
- icon: 'error'
- })
- option.haveData = false
- }
- if (option.isEnd) {
- return uni.showToast({
- icon: 'success',
- title: '数据已加载完毕'
- })
- }
- return null
+ // // 重置页码
+ // details.pageNum = 1
+ // // 重置渲染列表
+ // details.datalist = []
+ // // 重置渲染列表数据请求是否结束状态
+ // option.isEnd = false
+ // // 重置是否有数据
+ // option.haveData = true
+ // await initpage()
+ // if (datalist.value.length === 0) {
+ // uni.showToast({
+ // title: '暂时没有数据',
+ // icon: 'error'
+ // })
+ // option.haveData = false
+ // }
+ // if (option.isEnd) {
+ // return uni.showToast({
+ // icon: 'success',
+ // title: '数据已加载完毕'
+ // })
+ // }
+ // return null
},
// 触底加载回到函数
reachBottomInitPage: async () => { return null },
@@ -183,17 +170,12 @@
clearTimeout(antiShake)
return antiShake = null
}
- // 显示Loading, 并阻止点击屏幕
- uni.showLoading({
- title: '正在加载',
- mask: true
- })
+
antiShake = setTimeout(async () => {
// 触发触底回调
details.pageNum += 1
const res = await initpage()
- // 关闭loading效果
- uni.hideLoading()
+
// 清空定时器
antiShake = null
// 当返回数据数组长度小于每页数量时, 数据请求完毕
@@ -206,7 +188,7 @@
return option.isEnd = true
}
clearTimeout(antiShake)
- }, 500)
+ }, 300)
} catch (err) {
//TODO handle the exception
console.log('err :>> ', err);
@@ -220,10 +202,7 @@
pageNum: 1,
pageSize: 10,
datalist: [],
- scancode: '',
- scanStateList: [{ title: '未装车', value: 1 }, { title: '已装车', value: 2 }],
- // 选中的索引 -- 默认为关闭
- scanStateChooseIndex: 0
+ scancode: ''
})
onLoad((op) => {
details.pageType = op.type
@@ -247,7 +226,6 @@
}
})
// #endif
- initpage()
})
// onHide(() => {
// uni.$off('scancodedate')
@@ -266,10 +244,10 @@
console.log('res', res);
if (Number(res.data.isHasData) === 0) {
- utils.ttsspke('请选择分拣方式')
+ // utils.ttsspke('请选择分拣方式')
uni.setStorageSync('trayCodeType', res.data.data)
uni.navigateTo({
- url: '/pagesHome/pages/ScanSortingType/ScanSortingType?trayCode=' + details.scancode
+ url: '/pagesHome/pages/ScanSortingType/ScanSortingType?trayCode=' + details.scancode + '&SkipRoute=/ScanUp/ScanUp'
})
} else {
uni.navigateTo({
@@ -303,17 +281,10 @@
function goorderdetail(item : any) {
// 去详情页
uni.navigateTo({
- url: '/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode='
+ url: '/pagesHome/pages/PickUpLotList/PickUpLotList?trayCode='
+ item.trayCode + '&trayType='
+ item.trayType
})
- if (Number(details.pageType) == 2) {
- uni.navigateTo({
- url: '/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail?trayCode='
- + item.trayCode + '&trayType='
- + item.trayType
- })
- }
}
function showCalendar() {
details.show = !details.show
@@ -338,15 +309,6 @@
date.value = []
init()
}
-
- /**
- * 处理扫描后台监听状态
- */
- function bindPickerChange(e) {
- console.log('picker发送选择改变,携带值为', e.detail.value)
- details.scanStateChooseIndex = e.detail.value
- }
-
const {
show,
datatime,
@@ -355,7 +317,7 @@
} = toRefs(details)
-
-
-
\ No newline at end of file
diff --git a/pagesHome/pages/orderInquiry/orderInquiry.vue b/pagesHome/pages/orderInquiry/orderInquiry.vue
index 4ed6ee0..30ff828 100644
--- a/pagesHome/pages/orderInquiry/orderInquiry.vue
+++ b/pagesHome/pages/orderInquiry/orderInquiry.vue
@@ -82,14 +82,14 @@
- 订制品({{packageList.length}}件)
+ 定制品({{packageList.length}}件)
库存品({{stockList.length}}件)
-
+
批量操作
@@ -222,7 +222,7 @@
// 是否开启批量操作
const isBatchOperation = ref(false)
- // 是否显示订制品
+ // 是否显示定制品
const showArticleMadeToOrder = ref(true)
// 扫码码值
@@ -366,7 +366,7 @@
}
}
- // 显示订制品模块
+ // 显示定制品模块
function showArticleMadeToOrderModule() {
showArticleMadeToOrder.value = true
isBatchOperation.value = false
diff --git a/pagesHome/pages/storageInquiry/storageInquiry.vue b/pagesHome/pages/storageInquiry/storageInquiry.vue
new file mode 100644
index 0000000..ca17edc
--- /dev/null
+++ b/pagesHome/pages/storageInquiry/storageInquiry.vue
@@ -0,0 +1,693 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 库位:
+
+ {{info.positionCode || '暂无数据'}}
+
+
+
+
+
+ 托盘名称:
+
+
+ {{info.trayInfo.palletName || '暂无数据'}}
+
+
+
+
+
+ 托盘码:
+
+
+ {{info.trayInfo.palletCode || '暂无数据'}}
+
+
+
+
+
+
+
+ 包件数:
+
+ {{info.totalNum || 0}}
+
+
+
+
+ 订单包件总数:
+
+ {{info.orderTotalNum || 0}}
+
+
+
+
+
+
+ 库存品数:
+
+ {{info.stockNum || 0}}
+
+
+
+
+ 库存品订单总数:
+
+ {{info.stockTotalNum || 0}}
+
+
+
+
+
+
+ 定制品
+
+
+ 零担
+
+
+ 库存品
+
+
+
+
+
+
+
+
+ 批量操作
+
+
+ 打印
+
+
+
+
+ selectionChange(index, 'order')">
+
+
+ 包条码
+ 合同号
+ 运单号
+ 仓库
+ 数量
+
+
+
+
+
+ {{item.orderPackageCode}}
+
+ {{item.orderCode}}
+
+ {{item.waybillNo}}
+
+ {{item.warehouseName}}
+
+ {{item.num}}
+
+
+
+
+
+
+
+
+
+
+ selectionChange(index, 'zero')">
+
+
+ 运单号
+ 合同号
+ 仓库
+ 数量
+
+
+
+
+
+ {{item.waybillNo}}
+
+ {{item.orderCode}}
+
+ {{item.warehouseName}}
+
+ {{item.num}}
+
+
+
+
+
+
+
+
+
+ selectionChange(index, 'stock')">
+
+
+ 批次号
+ 物料编码
+ 物料名称
+ 商场名称
+ 仓库
+ 在库数
+
+
+
+
+
+ {{item.incomingBatch}}
+
+ {{item.materialCode}}
+
+ {{item.materialName}}
+
+ {{item.marketName}}
+
+ {{item.warehouseName}}
+
+ {{item.num}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pagesHome/pages/trayInquiry/trayInquiry.vue b/pagesHome/pages/trayInquiry/trayInquiry.vue
new file mode 100644
index 0000000..6297666
--- /dev/null
+++ b/pagesHome/pages/trayInquiry/trayInquiry.vue
@@ -0,0 +1,648 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 托盘名称:
+
+
+ {{info.trayInfo.palletName || '暂无数据'}}
+
+
+
+
+
+ 托盘码:
+
+
+ {{info.trayInfo.palletCode || '暂无数据'}}
+
+
+
+
+
+
+
+ 打托方式:
+
+ {{info.trayType || '暂无数据'}}
+
+
+
+
+ 商场:
+
+ {{info.marketName || '暂无数据'}}
+
+
+
+
+
+
+ 包件数:
+
+ {{info.totalNum || 0}}
+
+
+
+
+ 订单包件总数:
+
+ {{info.orderTotalNum || 0}}
+
+
+
+
+
+
+ 库存品数:
+
+ {{info.stockNum || 0}}
+
+
+
+
+ 库存品订单总数:
+
+ {{info.stockTotalNum || 0}}
+
+
+
+
+
+
+ 定制品
+
+
+ 零担
+
+
+ 库存品
+
+
+
+
+
+
+
+
+ 批量操作
+
+
+ 打印
+
+
+
+
+ selectionChange(index, 'order')">
+
+
+ 包条码
+ 合同号
+ 运单号
+ 仓库
+ 数量
+
+
+
+
+
+ {{item.orderPackageCode}}
+
+ {{item.orderCode}}
+
+ {{item.waybillNo}}
+
+ {{item.warehouseName}}
+
+ {{item.num}}
+
+
+
+
+
+
+
+
+
+
+ selectionChange(index, 'zero')">
+
+
+ 运单号
+ 合同号
+ 仓库
+ 数量
+
+
+
+
+
+ {{item.waybillNo}}
+
+ {{item.orderCode}}
+
+ {{item.warehouseName}}
+
+ {{item.num}}
+
+
+
+
+
+
+
+
+
+ selectionChange(index, 'stock')">
+
+
+ 批次号
+ 物料编码
+ 物料名称
+ 商场名称
+ 仓库
+ 在库数
+
+
+
+
+
+ {{item.incomingBatch}}
+
+ {{item.materialCode}}
+
+ {{item.materialName}}
+
+ {{item.marketName}}
+
+ {{item.warehouseName}}
+
+ {{item.num}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue b/pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue
index b248ba3..7d9cc68 100644
--- a/pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue
+++ b/pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue
@@ -90,7 +90,7 @@
-
+
-
+
包条码: {{item.orderPackageCode || '暂无数据'}}
@@ -367,6 +367,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -538,7 +605,9 @@
/** 关闭扫描监听 */
stopScan: false,
/** 被移动的包条数据 */
- removeTray: {}
+ removeTray: {},
+ /** 展示详情信息 */
+ detailsInfo: {}
})
// 获取组件实例
@@ -558,6 +627,8 @@
const popUp_AddStock = ref(null)
/** 弹出层 -- 是否移托 */
const popUp_RemoveTary = ref(null)
+ /** 弹出层 -- 详情 */
+ const popUp_Details = ref(null)
// 页面初始化执行回调
onLoad((info) => {
@@ -801,10 +872,10 @@
})
return
- }
- else if(code === 5001){
+ }
+ else if (code === 5001) {
return
- }
+ }
else if (code !== 4000) {
details.addInfo.orderCode = ''
details.stopScan = true
@@ -967,6 +1038,20 @@
})
}
+ /** 开启详情弹窗 */
+ const handleShowDetails = (item) => {
+ console.log('item :>> ', item);
+ // 获取需要被展示的详情的信息
+ details.detailsInfo = item
+
+ // 开启弹窗
+ popUp_Details.value.setDetails({
+ title: '详情',
+ showPopUp: true,
+ confirmText: '关闭'
+ })
+ }
+
/** 开启控件区 */
const handleShowControl = (_type : number) => {
// 按托盘上架只能整托上架
@@ -2166,4 +2251,15 @@
transform: translateX(-50%);
font-size: 30upx;
}
+
+ // 详情
+ .popUpDetails_row {
+ display: flex;
+ font-size: 28upx;
+ margin-bottom: 10upx;
+
+ &>view {
+ flex: 1;
+ }
+ }
\ No newline at end of file
diff --git a/store/useStorageStore.js b/store/useStorageStore.js
index e13d03d..5a4311e 100644
--- a/store/useStorageStore.js
+++ b/store/useStorageStore.js
@@ -24,7 +24,7 @@ const useStorageStore = defineStore('useStorageStore', () => {
} = response
if (code !== 200) return
- storageArr.value = data
+ storageArr.value = data || []
}
/** 清空库位信息 */
diff --git a/unpackage/dist/dev/app-plus/app-config-service.js b/unpackage/dist/dev/app-plus/app-config-service.js
index 9ebae9f..4073a63 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":"pagesHome/pages/SearchTray/SearchTray","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));
+ 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/PickUpLotList/PickUpLotList","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/storageInquiry/storageInquiry","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":"pagesHome/pages/SearchTray/SearchTray","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 0ded107..77c5a18 100644
--- a/unpackage/dist/dev/app-plus/app-service.js
+++ b/unpackage/dist/dev/app-plus/app-service.js
@@ -1747,7 +1747,7 @@ if (uni.restoreGlobal) {
};
};
const Base64$1 = new Base64();
- const devhost = "http://192.168.10.57:13000/";
+ const devhost = "http://192.168.10.48:13000/";
const imghost = "";
const host = devhost;
const APPKEY = "h5u:h5u_secret";
@@ -3495,6 +3495,16 @@ if (uni.restoreGlobal) {
loadingObj
);
}
+ function postFindAllocationData(data, loadingObj = {}) {
+ return service(
+ {
+ url: `logpm-warehouse/api/warehouseUpdownType/findAllocationData`,
+ method: "post",
+ data
+ },
+ loadingObj
+ );
+ }
function BatchPrintPackages(data, loadingObj = {}) {
return service(
{
@@ -5637,7 +5647,7 @@ This will fail in production if not fixed.`);
} = response;
if (code2 !== 200)
return;
- storageArr.value = data;
+ storageArr.value = data || [];
};
const HANDLE_CLEARSTORAGE = () => {
storageArr.value.splice(0);
@@ -5659,7 +5669,7 @@ This will fail in production if not fixed.`);
HANDLE_ISSTORAGECODE
};
});
- const _sfc_main$1S = /* @__PURE__ */ vue.defineComponent({
+ const _sfc_main$1U = /* @__PURE__ */ vue.defineComponent({
__name: "login",
setup(__props) {
const { HANDLE_CLEARSTORAGE } = useStorageStore();
@@ -5985,7 +5995,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$1U, [["__file", "D:/worksp/logpm/pages/login/login.vue"]]);
const version$1 = "3";
{
formatAppLog("log", "at uni_modules/uview-plus/libs/config/config.js:5", `
@@ -7683,7 +7693,7 @@ This will fail in production if not fixed.`);
}
}
};
- const _sfc_main$1R = {
+ const _sfc_main$1T = {
name: "u-status-bar",
mixins: [mpMixin$1, mixin$1, props$i],
data() {
@@ -7712,7 +7722,7 @@ This will fail in production if not fixed.`);
/* STYLE */
);
}
- const __easycom_0$7 = /* @__PURE__ */ _export_sfc(_sfc_main$1R, [["render", _sfc_render$y], ["__scopeId", "data-v-eb8e0cdd"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-status-bar/u-status-bar.vue"]]);
+ const __easycom_0$7 = /* @__PURE__ */ _export_sfc(_sfc_main$1T, [["render", _sfc_render$y], ["__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": "",
@@ -8016,7 +8026,7 @@ This will fail in production if not fixed.`);
}
}
};
- const _sfc_main$1Q = {
+ const _sfc_main$1S = {
name: "u-icon",
data() {
return {};
@@ -8110,7 +8120,7 @@ This will fail in production if not fixed.`);
/* CLASS */
);
}
- const __easycom_0$6 = /* @__PURE__ */ _export_sfc(_sfc_main$1Q, [["render", _sfc_render$x], ["__scopeId", "data-v-ac70166d"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-icon/u-icon.vue"]]);
+ const __easycom_0$6 = /* @__PURE__ */ _export_sfc(_sfc_main$1S, [["render", _sfc_render$x], ["__scopeId", "data-v-ac70166d"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-icon/u-icon.vue"]]);
const props$g = {
props: {
// 是否开启顶部安全区适配
@@ -8195,7 +8205,7 @@ This will fail in production if not fixed.`);
}
}
};
- const _sfc_main$1P = {
+ const _sfc_main$1R = {
name: "u-navbar",
mixins: [mpMixin$1, mixin$1, props$g],
data() {
@@ -8327,7 +8337,7 @@ This will fail in production if not fixed.`);
)
]);
}
- const __easycom_0$5 = /* @__PURE__ */ _export_sfc(_sfc_main$1P, [["render", _sfc_render$w], ["__scopeId", "data-v-f631659b"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-navbar/u-navbar.vue"]]);
+ const __easycom_0$5 = /* @__PURE__ */ _export_sfc(_sfc_main$1R, [["render", _sfc_render$w], ["__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 = "";
@@ -8375,14 +8385,173 @@ This will fail in production if not fixed.`);
}
});
}
- const _sfc_main$1O = /* @__PURE__ */ vue.defineComponent({
+ const _sfc_main$1Q = /* @__PURE__ */ vue.defineComponent({
__name: "index",
setup(__props) {
const storageStore = useStorageStore();
const { HANDLE_GETSTORAGEINFO } = storageStore;
const { storageArr } = storeToRefs(storageStore);
const tip = vue.ref(null);
- let details = vue.reactive({ tablist: [] });
+ let details = vue.reactive({
+ tablist: [
+ {
+ type: 1,
+ name: "工作台",
+ minilist: [
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "订单查询",
+ router: "/pagesHome/pages/orderInquiry/orderInquiry"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "库位查询",
+ router: "/pagesHome/pages/storageInquiry/storageInquiry"
+ }
+ ]
+ },
+ {
+ type: 1,
+ name: "入库",
+ minilist: [
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "码板打托",
+ router: "/pagesHome/pages/codePlateBracket/codePlateBracket"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "入库扫描",
+ router: "/pagesHome/pages/orderInquiry/orderInquiry"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "到车入库",
+ router: "/pagesHome/pages/ArrivalList/ArrivalList"
+ }
+ ]
+ },
+ {
+ type: 1,
+ name: "库内",
+ minilist: [
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.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://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "扫码上架",
+ router: "/pagesHome/pages/ScanUpType/ScanUpType"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "手动上架",
+ router: "/pagesHome/pages/PeopleScanUpType/PeopleScanUpType"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "移库",
+ router: "/pagesHome/pages/RelocationType/RelocationType"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "滞留",
+ router: "/pagesHome/pages/Retention/Retention"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "合托",
+ router: "/pagesHome/pages/MergeTray/MergeTray"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "下架",
+ router: "/pagesHome/pages/DownGoodsType/DownGoodsType"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.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://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "托盘数据同步",
+ router: "/pagesHome/pages/SearchTray/SearchTray"
+ }
+ ]
+ },
+ {
+ type: 1,
+ name: "出库",
+ minilist: [
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "拣货扫描",
+ router: "/pagesHome/pages/pickingScan/pickingScan"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "自提扫描",
+ router: "/pagesHome/pages/SelfPickupScan/SelfPickupScan"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "配载装车",
+ router: "/pagesHome/pages/StowageList/StowageList"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "中转装车",
+ router: "/pagesHome/pages/RelayScanList/RelayScanList"
+ }
+ ]
+ },
+ {
+ type: 1,
+ name: "配送",
+ minilist: [
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "装车扫描",
+ router: "/pagesHome/pages/LoadingScan/LoadingScan"
+ },
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "签收扫描",
+ router: "/pagesHome/pages/signinScan/signinScan"
+ }
+ ]
+ },
+ {
+ type: 1,
+ name: "离线上传",
+ minilist: [
+ {
+ icon: "http://htys.oss-cn-chengdu.aliyuncs.com/htys/afb031efec7d2f8620ee68c71f87a80e.png",
+ name: "离线上传",
+ router: "/pagesHome/pages/OfflineUpload/OfflineUpload"
+ }
+ ]
+ }
+ ]
+ });
function gopathpage(path) {
uni.navigateTo({
url: path
@@ -8395,8 +8564,8 @@ This will fail in production if not fixed.`);
return;
}
let res = await appMenuroutes({});
- formatAppLog("log", "at pages/index/index.vue:213", res, "-------------");
- formatAppLog("log", "at pages/index/index.vue:214", "刷新后");
+ formatAppLog("log", "at pages/index/index.vue:218", res, "-------------");
+ formatAppLog("log", "at pages/index/index.vue:219", "刷新后");
if (res.code == 200) {
getimgcache(res.data[0]);
} else {
@@ -8408,12 +8577,12 @@ This will fail in production if not fixed.`);
}
async function initbuts() {
let authbut = uni.getStorageSync("authbuts");
- formatAppLog("log", "at pages/index/index.vue:329", "authbut :>> ", authbut);
+ formatAppLog("log", "at pages/index/index.vue:334", "authbut :>> ", authbut);
if (authbut) {
return;
}
let butres = await appbuttons({});
- formatAppLog("log", "at pages/index/index.vue:334", butres.data);
+ formatAppLog("log", "at pages/index/index.vue:339", butres.data);
let qxan = [];
butres.data.map((item) => {
item.children.map((ite) => {
@@ -8470,7 +8639,7 @@ This will fail in production if not fixed.`);
maxarr.push(arr);
}
details.tablist = maxarr;
- formatAppLog("log", "at pages/index/index.vue:447", details.tablist);
+ formatAppLog("log", "at pages/index/index.vue:452", details.tablist);
}
async function updateApp() {
let version2 = await utils.getversion();
@@ -8479,11 +8648,11 @@ This will fail in production if not fixed.`);
versionCode: version2.version.split(".").join(""),
versionType: version2.pkName.indexOf("test") != -1 ? "1" : version2.pkName.indexOf("bate") != -1 ? "2" : "3"
};
- formatAppLog("log", "at pages/index/index.vue:477", "data", data);
+ formatAppLog("log", "at pages/index/index.vue:482", "data", data);
let response = await AppPdaversiondetail(data, { isShowLoading: false });
if (response.code == 200 && response.data) {
- formatAppLog("log", "at pages/index/index.vue:480", response.data);
- formatAppLog("log", "at pages/index/index.vue:481", "有可更新包");
+ formatAppLog("log", "at pages/index/index.vue:485", response.data);
+ formatAppLog("log", "at pages/index/index.vue:486", "有可更新包");
if (response.data.noSensation == "2" && response.data.link.indexOf("wgt") != -1) {
utils.updatefile1(response.data.link);
} else {
@@ -8587,8 +8756,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$1Q, [["__file", "D:/worksp/logpm/pages/index/index.vue"]]);
+ const _sfc_main$1P = /* @__PURE__ */ vue.defineComponent({
__name: "user",
setup(__props) {
let users = vue.ref(null);
@@ -8916,8 +9085,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$1P, [["__file", "D:/worksp/logpm/pages/user/user.vue"]]);
+ const _sfc_main$1O = /* @__PURE__ */ vue.defineComponent({
__name: "news",
setup(__props) {
onPullDownRefresh(() => {
@@ -8980,8 +9149,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$1O, [["__file", "D:/worksp/logpm/pages/news/news.vue"]]);
+ const _sfc_main$1N = /* @__PURE__ */ vue.defineComponent({
__name: "taskList",
setup(__props) {
const tip = vue.ref(null);
@@ -9093,8 +9262,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$1N, [["__file", "D:/worksp/logpm/pages/taskList/taskList.vue"]]);
+ const _sfc_main$1M = /* @__PURE__ */ vue.defineComponent({
__name: "reportForms",
setup(__props) {
onPullDownRefresh(() => {
@@ -9108,7 +9277,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$1M, [["__file", "D:/worksp/logpm/pages/reportForms/reportForms.vue"]]);
let calendar = {
/**
* 农历1900-2100的润大小信息表
@@ -10028,7 +10197,7 @@ This will fail in production if not fixed.`);
solar2lunar: calendar.solar2lunar,
lunar2solar: calendar.lunar2solar
};
- const _sfc_main$1J = {
+ const _sfc_main$1L = {
name: "lCalendar",
model: {
prop: "value",
@@ -10682,7 +10851,7 @@ This will fail in production if not fixed.`);
/* HYDRATE_EVENTS */
);
}
- const __easycom_1$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1J, [["render", _sfc_render$v], ["__scopeId", "data-v-665735f1"], ["__file", "D:/worksp/logpm/uni_modules/l-calendar/components/l-calendar/l-calendar.vue"]]);
+ const __easycom_1$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1L, [["render", _sfc_render$v], ["__scopeId", "data-v-665735f1"], ["__file", "D:/worksp/logpm/uni_modules/l-calendar/components/l-calendar/l-calendar.vue"]]);
const useSearchInfoStore = defineStore("useSearchInfoStore", () => {
const searchInfo = vue.ref({});
const HANDLE_EDIT_INFO = (pageName, info) => {
@@ -10701,7 +10870,7 @@ This will fail in production if not fixed.`);
HANDLE_CLEAR
};
});
- const _sfc_main$1I = /* @__PURE__ */ vue.defineComponent({
+ const _sfc_main$1K = /* @__PURE__ */ vue.defineComponent({
__name: "pickingScan",
setup(__props) {
const option = {
@@ -11130,8 +11299,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$1K, [["__file", "D:/worksp/logpm/pagesHome/pages/pickingScan/pickingScan.vue"]]);
+ const _sfc_main$1J = /* @__PURE__ */ vue.defineComponent({
__name: "StowageList",
setup(__props) {
const option = {
@@ -11499,7 +11668,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$1J, [["__scopeId", "data-v-10679139"], ["__file", "D:/worksp/logpm/pagesHome/pages/StowageList/StowageList.vue"]]);
const useSystemSettingsStore = defineStore("useSystemSettingsStore", () => {
const scanStateList = vue.reactive([{
title: "关闭",
@@ -11519,7 +11688,7 @@ This will fail in production if not fixed.`);
HANDLE_SCANSTATE
};
});
- const _sfc_main$1G = /* @__PURE__ */ vue.defineComponent({
+ const _sfc_main$1I = /* @__PURE__ */ vue.defineComponent({
__name: "StowageListDetails",
setup(__props) {
const { scanState } = storeToRefs(useSystemSettingsStore());
@@ -12449,8 +12618,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$1I, [["__scopeId", "data-v-66cbfd20"], ["__file", "D:/worksp/logpm/pagesHome/pages/StowageListDetails/StowageListDetails.vue"]]);
+ const _sfc_main$1H = /* @__PURE__ */ vue.defineComponent({
__name: "RelayScanList",
setup(__props) {
const option = {
@@ -12814,8 +12983,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$1H, [["__file", "D:/worksp/logpm/pagesHome/pages/RelayScanList/RelayScanList.vue"]]);
+ const _sfc_main$1G = /* @__PURE__ */ vue.defineComponent({
__name: "codePlateBracket",
setup(__props) {
const { scanState } = storeToRefs(useSystemSettingsStore());
@@ -12829,25 +12998,6 @@ This will fail in production if not fixed.`);
title: "已经打托列表",
// 下拉刷新回调函数
async pullDownRefreshInitPage() {
- details.pageNum = 1;
- details.datalist = [];
- option.isEnd = false;
- option.haveData = true;
- await initpage();
- if (datalist.value.length === 0) {
- uni.showToast({
- title: "暂时没有数据",
- icon: "error"
- });
- option.haveData = false;
- }
- if (option.isEnd) {
- return uni.showToast({
- icon: "success",
- title: "数据已加载完毕"
- });
- }
- return null;
},
// 触底加载回到函数
reachBottomInitPage: async () => {
@@ -12865,20 +13015,15 @@ This will fail in production if not fixed.`);
title: "数据已加载完毕"
});
}
- formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:179", "antiShake :>> ", antiShake);
+ formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:166", "antiShake :>> ", antiShake);
if (antiShake) {
uni.hideLoading();
clearTimeout(antiShake);
return antiShake = null;
}
- uni.showLoading({
- title: "正在加载",
- mask: true
- });
antiShake = setTimeout(async () => {
details.pageNum += 1;
const res = await initpage();
- uni.hideLoading();
antiShake = null;
if (res.data && res.data.records.length < details.pageSize) {
uni.showToast({
@@ -12889,9 +13034,9 @@ This will fail in production if not fixed.`);
return option.isEnd = true;
}
clearTimeout(antiShake);
- }, 500);
+ }, 300);
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:212", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:194", "err :>> ", err);
}
}
let details = vue.reactive({
@@ -12901,10 +13046,7 @@ This will fail in production if not fixed.`);
pageNum: 1,
pageSize: 10,
datalist: [],
- scancode: "",
- scanStateList: [{ title: "未装车", value: 1 }, { title: "已装车", value: 2 }],
- // 选中的索引 -- 默认为关闭
- scanStateChooseIndex: 0
+ scancode: ""
});
onLoad((op) => {
details.pageType = op.type;
@@ -12913,14 +13055,13 @@ This will fail in production if not fixed.`);
onShow(() => {
uni.$off("scancodedate");
uni.$on("scancodedate", function(code2) {
- formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:242", "code :>> ", code2);
+ formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:221", "code :>> ", code2);
if (code2) {
- formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:244", code2);
+ formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:223", code2);
details.scancode = code2;
scandata();
}
});
- initpage();
});
const date2 = vue.ref([]);
function init() {
@@ -12934,12 +13075,11 @@ This will fail in production if not fixed.`);
let res = await warehouseTrayTypeorderScanTrayCode(data);
if (res.code !== 200)
return;
- formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:267", "res", res);
+ formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:245", "res", res);
if (Number(res.data.isHasData) === 0) {
- utils.ttsspke("请选择分拣方式");
uni.setStorageSync("trayCodeType", res.data.data);
uni.navigateTo({
- url: "/pagesHome/pages/ScanSortingType/ScanSortingType?trayCode=" + details.scancode
+ url: "/pagesHome/pages/ScanSortingType/ScanSortingType?trayCode=" + details.scancode + "&SkipRoute=/ScanUp/ScanUp"
});
} else {
uni.navigateTo({
@@ -12963,27 +13103,22 @@ This will fail in production if not fixed.`);
details.datalist = [...details.datalist, ...data.records];
if (data && data.pages <= details.pageNum)
option.isEnd = true;
- formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:295", "details.datalist :>> ", details.datalist);
+ formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:273", "details.datalist :>> ", details.datalist);
return res;
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:299", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:277", "err :>> ", err);
}
}
function goorderdetail(item) {
uni.navigateTo({
- url: "/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode=" + item.trayCode + "&trayType=" + item.trayType
+ url: "/pagesHome/pages/PickUpLotList/PickUpLotList?trayCode=" + item.trayCode + "&trayType=" + item.trayType
});
- if (Number(details.pageType) == 2) {
- uni.navigateTo({
- url: "/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail?trayCode=" + item.trayCode + "&trayType=" + item.trayType
- });
- }
}
function showCalendar() {
details.show = !details.show;
}
function onConfirm(e) {
- formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:322", e);
+ formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:293", e);
date2.value[0] = e.startDate;
date2.value[1] = e.endDate;
details.datatime = date2.value[0] + " 至 " + date2.value[1];
@@ -12999,10 +13134,6 @@ This will fail in production if not fixed.`);
date2.value = [];
init();
}
- function bindPickerChange(e) {
- formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:346", "picker发送选择改变,携带值为", e.detail.value);
- details.scanStateChooseIndex = e.detail.value;
- }
const {
show,
datatime,
@@ -13072,31 +13203,6 @@ This will fail in production if not fixed.`);
}))
])
])
- ]),
- vue.createCommentVNode(" 是否装车 "),
- vue.createElementVNode("view", { class: "choose_container" }, [
- vue.createElementVNode("view", { class: "uni-list-cell-db" }, [
- vue.createElementVNode("picker", {
- onChange: bindPickerChange,
- value: vue.unref(details).scanStateChooseIndex,
- range: vue.unref(details).scanStateList.map((val) => val.title)
- }, [
- vue.createElementVNode(
- "view",
- { class: "uni-input" },
- vue.toDisplayString(vue.unref(details).scanStateList.map((val) => val.title)[vue.unref(details).scanStateChooseIndex]),
- 1
- /* TEXT */
- )
- ], 40, ["value", "range"])
- ]),
- vue.createElementVNode("view", { class: "" }),
- vue.createElementVNode("view", { class: "uni-list-cell-left" }, [
- vue.createVNode(_component_u_icon, {
- name: "arrow-right",
- color: "#000"
- })
- ])
])
]),
body: vue.withCtx(() => [
@@ -13248,8 +13354,31 @@ 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$1G, [["__scopeId", "data-v-dd2e73fd"], ["__file", "D:/worksp/logpm/pagesHome/pages/codePlateBracket/codePlateBracket.vue"]]);
+ const _sfc_main$1F = /* @__PURE__ */ vue.defineComponent({
+ __name: "PickUpLotList",
+ setup(__props) {
+ const option = vue.reactive({
+ title: "提货批次列表",
+ haveData: true
+ });
+ return (_ctx, _cache) => {
+ const _component_BasicContainer = vue.resolveComponent("BasicContainer");
+ return vue.openBlock(), vue.createBlock(_component_BasicContainer, { option }, {
+ head: vue.withCtx(() => [
+ vue.createTextVNode("123")
+ ]),
+ body: vue.withCtx(() => [
+ vue.createTextVNode("333")
+ ]),
+ _: 1
+ /* STABLE */
+ }, 8, ["option"]);
+ };
+ }
+ });
+ const PagesHomePagesPickUpLotListPickUpLotList = /* @__PURE__ */ _export_sfc(_sfc_main$1F, [["__file", "D:/worksp/logpm/pagesHome/pages/PickUpLotList/PickUpLotList.vue"]]);
+ const _sfc_main$1E = /* @__PURE__ */ vue.defineComponent({
__name: "ArrivalList",
setup(__props) {
const { scanState } = storeToRefs(useSystemSettingsStore());
@@ -13602,7 +13731,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$f = {
props: {
color: {
@@ -13636,7 +13765,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$f],
computed: {
@@ -13673,7 +13802,7 @@ This will fail in production if not fixed.`);
/* STYLE */
);
}
- const __easycom_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1C, [["render", _sfc_render$u], ["__scopeId", "data-v-72791e59"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-line/u-line.vue"]]);
+ const __easycom_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1D, [["render", _sfc_render$u], ["__scopeId", "data-v-72791e59"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-line/u-line.vue"]]);
const props$e = {
props: {
// 是否虚线
@@ -13718,7 +13847,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$e],
computed: {
@@ -13797,8 +13926,8 @@ This will fail in production if not fixed.`);
/* STYLE */
);
}
- const __easycom_0$4 = /* @__PURE__ */ _export_sfc(_sfc_main$1B, [["render", _sfc_render$t], ["__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$4 = /* @__PURE__ */ _export_sfc(_sfc_main$1C, [["render", _sfc_render$t], ["__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$s(_ctx, _cache) {
return vue.openBlock(), vue.createElementBlock("div", { class: "template" }, [
vue.createElementVNode("view", { class: "cartoon" }, [
@@ -13813,10 +13942,10 @@ This will fail in production if not fixed.`);
])
]);
}
- const loading = /* @__PURE__ */ _export_sfc(_sfc_main$1A, [["render", _sfc_render$s], ["__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$s], ["__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
},
@@ -14525,8 +14654,8 @@ This will fail in production if not fixed.`);
/* NEED_PATCH */
);
}
- const __easycom_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1z, [["render", _sfc_render$r], ["__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$3 = /* @__PURE__ */ _export_sfc(_sfc_main$1A, [["render", _sfc_render$r], ["__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());
@@ -15512,8 +15641,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 = {
@@ -16046,8 +16175,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesSelfPickupScanSelfPickupScan = /* @__PURE__ */ _export_sfc(_sfc_main$1x, [["__scopeId", "data-v-62fd4582"], ["__file", "D:/worksp/logpm/pagesHome/pages/SelfPickupScan/SelfPickupScan.vue"]]);
- const _sfc_main$1w = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesSelfPickupScanSelfPickupScan = /* @__PURE__ */ _export_sfc(_sfc_main$1y, [["__scopeId", "data-v-62fd4582"], ["__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);
@@ -16239,6 +16368,21 @@ This will fail in production if not fixed.`);
return null;
}
async function goselscan(item) {
+ const jumpData = {
+ type_name: item.type_name,
+ deliStatus_name: item.deliStatus_name,
+ vehicleName: item.vehicleName,
+ driverName: item.driverName,
+ loadingTeamName: item.loadingTeamName,
+ isstock: item.isstock,
+ customersNumber: item.customersNumber,
+ orderNumber: item.orderNumber,
+ loadCusNub: item.loadCusNub,
+ loadOrdNub: item.loadOrdNub,
+ signNub: item.signNub,
+ signNubSr: item.signNubSr,
+ id: item.id
+ };
let data = {
deliveryId: item.id
};
@@ -16246,7 +16390,7 @@ This will fail in production if not fixed.`);
if (res.data.length == 1) {
uni.setStorageSync("checkvehicle", res.data[0]);
uni.navigateTo({
- url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item.id + "&item=" + JSON.stringify(item)
+ url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item.id + "&item=" + JSON.stringify(jumpData)
});
return;
}
@@ -16281,7 +16425,7 @@ This will fail in production if not fixed.`);
tiplists.value.setdetails({ isshow: false });
uni.setStorageSync("checkvehicle", res.data[deta.checklist[0]]);
uni.navigateTo({
- url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item.id + "&item=" + JSON.stringify(item)
+ url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item.id + "&item=" + JSON.stringify(jumpData)
});
},
cancel: (details2) => {
@@ -16293,12 +16437,12 @@ This will fail in production if not fixed.`);
});
}
async function goRetention(item) {
- formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:418", "item :>> ", item);
+ formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:436", "item :>> ", item);
let data = {
deliveryId: item.id
};
let res = await deliveryvehicle(data);
- formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:423", res);
+ formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:441", res);
if (res.data.length == 1) {
uni.setStorageSync("checkvehicle", res.data[0]);
uni.navigateTo({
@@ -16355,7 +16499,7 @@ This will fail in production if not fixed.`);
let res = await deliveryvehicle(data);
if (res.code !== 200)
return;
- formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:480", res);
+ formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:498", res);
if (res.data.length == 1) {
uni.setStorageSync("checkvehicle", res.data[0]);
uni.navigateTo({
@@ -16739,7 +16883,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$d = {
props: {
// 搜索框形状,round-圆形,square-方形
@@ -16862,7 +17006,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$d],
data() {
@@ -17044,7 +17188,7 @@ This will fail in production if not fixed.`);
/* STYLE */
);
}
- const __easycom_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1v, [["render", _sfc_render$q], ["__scopeId", "data-v-e082a34a"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-search/u-search.vue"]]);
+ const __easycom_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1w, [["render", _sfc_render$q], ["__scopeId", "data-v-e082a34a"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-search/u-search.vue"]]);
const props$c = {
props: {
// 步进器标识符,在change回调返回
@@ -17154,7 +17298,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$c],
data() {
@@ -17463,7 +17607,7 @@ This will fail in production if not fixed.`);
)) : vue.createCommentVNode("v-if", true)
]);
}
- const __easycom_2$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1u, [["render", _sfc_render$p], ["__scopeId", "data-v-eb6f6237"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-number-box/u-number-box.vue"]]);
+ const __easycom_2$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1v, [["render", _sfc_render$p], ["__scopeId", "data-v-eb6f6237"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-number-box/u-number-box.vue"]]);
const props$b = {
props: {
// 是否显示组件
@@ -17523,7 +17667,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$b],
data() {
@@ -17646,7 +17790,7 @@ This will fail in production if not fixed.`);
/* CLASS, STYLE */
)) : vue.createCommentVNode("v-if", true);
}
- const __easycom_3$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1t, [["render", _sfc_render$o], ["__scopeId", "data-v-2af81691"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue"]]);
+ const __easycom_3$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1u, [["render", _sfc_render$o], ["__scopeId", "data-v-2af81691"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-loading-icon/u-loading-icon.vue"]]);
const props$a = {
props: {
// 是否展示组件
@@ -17726,7 +17870,7 @@ This will fail in production if not fixed.`);
}
}
};
- const _sfc_main$1s = {
+ const _sfc_main$1t = {
name: "u-transition",
data() {
return {
@@ -17787,7 +17931,7 @@ This will fail in production if not fixed.`);
/* CLASS, STYLE, HYDRATE_EVENTS */
)) : vue.createCommentVNode("v-if", true);
}
- const __easycom_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1s, [["render", _sfc_render$n], ["__scopeId", "data-v-5cec8177"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-transition/u-transition.vue"]]);
+ const __easycom_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1t, [["render", _sfc_render$n], ["__scopeId", "data-v-5cec8177"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-transition/u-transition.vue"]]);
const props$9 = {
props: {
// 是否显示遮罩
@@ -17812,7 +17956,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$9],
computed: {
@@ -17851,7 +17995,7 @@ This will fail in production if not fixed.`);
/* FORWARDED */
}, 8, ["show", "duration", "custom-style", "onClick"]);
}
- const __easycom_4 = /* @__PURE__ */ _export_sfc(_sfc_main$1r, [["render", _sfc_render$m], ["__scopeId", "data-v-9112bed9"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-overlay/u-overlay.vue"]]);
+ const __easycom_4 = /* @__PURE__ */ _export_sfc(_sfc_main$1s, [["render", _sfc_render$m], ["__scopeId", "data-v-9112bed9"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-overlay/u-overlay.vue"]]);
const props$8 = {
props: {
// 是否细边框
@@ -18004,7 +18148,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$8],
data() {
@@ -18206,7 +18350,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$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["render", _sfc_render$l], ["__scopeId", "data-v-5ce41ee6"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-button/u-button.vue"]]);
+ const __easycom_6$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1r, [["render", _sfc_render$l], ["__scopeId", "data-v-5ce41ee6"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-button/u-button.vue"]]);
const props$7 = {
props: {
// 内置图标名称,或图片路径,建议绝对路径
@@ -18266,7 +18410,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$7],
data() {
@@ -18356,7 +18500,7 @@ This will fail in production if not fixed.`);
/* STYLE */
)) : vue.createCommentVNode("v-if", true);
}
- const __easycom_7$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1p, [["render", _sfc_render$k], ["__scopeId", "data-v-8dd5928e"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-empty/u-empty.vue"]]);
+ const __easycom_7$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["render", _sfc_render$k], ["__scopeId", "data-v-8dd5928e"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-empty/u-empty.vue"]]);
const props$6 = {
props: {
// 标题
@@ -18467,7 +18611,7 @@ This will fail in production if not fixed.`);
}
}
};
- const _sfc_main$1o = {
+ const _sfc_main$1p = {
name: "u-cell",
data() {
return {};
@@ -18585,7 +18729,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$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1o, [["render", _sfc_render$j], ["__scopeId", "data-v-3fd6feca"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-cell/u-cell.vue"]]);
+ const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1p, [["render", _sfc_render$j], ["__scopeId", "data-v-3fd6feca"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-cell/u-cell.vue"]]);
const props$5 = {
props: {
// 标题
@@ -18645,7 +18789,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$5],
data() {
@@ -18785,7 +18929,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$i], ["__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$i], ["__scopeId", "data-v-82f3baf9"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-collapse-item/u-collapse-item.vue"]]);
const props$4 = {
props: {
// 当前展开面板的name,非手风琴模式:[],手风琴模式:string | number
@@ -18805,7 +18949,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$4],
watch: {
@@ -18870,8 +19014,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$h], ["__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$h], ["__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());
@@ -19804,8 +19948,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());
@@ -20677,8 +20821,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesStockUplistStockUplist = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["__scopeId", "data-v-64d8d9ce"], ["__file", "D:/worksp/logpm/pagesHome/pages/StockUplist/StockUplist.vue"]]);
- const _sfc_main$1j = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesStockUplistStockUplist = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["__scopeId", "data-v-64d8d9ce"], ["__file", "D:/worksp/logpm/pagesHome/pages/StockUplist/StockUplist.vue"]]);
+ const _sfc_main$1k = /* @__PURE__ */ vue.defineComponent({
__name: "StockUplistScandetails",
setup(__props) {
const { scanState } = storeToRefs(useSystemSettingsStore());
@@ -21090,8 +21234,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(() => {
@@ -21120,8 +21264,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);
@@ -21226,14 +21370,41 @@ This will fail in production if not fixed.`);
details.show = value;
}
function gocustomersign(item) {
+ formatAppLog("log", "at pagesHome/pages/signinScan/signinScan.vue:246", "item :>> ", item);
+ const data = {
+ type_name: item.type_name,
+ deliStatus_name: item.deliStatus_name,
+ vehicleName: item.vehicleName,
+ driverName: item.driverName,
+ loadingTeamName: item.loadingTeamName,
+ isstock: item.isstock,
+ customersNumber: item.customersNumber,
+ orderNumber: item.orderNumber,
+ id: item.id
+ };
uni.navigateTo({
- url: "/pagesHome/pages/CustomerSign/CustomerSign?item=" + JSON.stringify(item)
+ url: "/pagesHome/pages/CustomerSign/CustomerSign?item=" + JSON.stringify(data)
});
}
function goSignDetailScan(item) {
- formatAppLog("log", "at pagesHome/pages/signinScan/signinScan.vue:251", "item :>> ", item);
+ formatAppLog("log", "at pagesHome/pages/signinScan/signinScan.vue:263", "item :>> ", item);
+ const data = {
+ type_name: item.type_name,
+ deliStatus_name: item.deliStatus_name,
+ vehicleName: item.vehicleName,
+ driverName: item.driverName,
+ loadingTeamName: item.loadingTeamName,
+ isstock: item.isstock,
+ customersNumber: item.customersNumber,
+ orderNumber: item.orderNumber,
+ loadCusNub: item.loadCusNub,
+ loadOrdNub: item.loadOrdNub,
+ signNub: item.signNub,
+ signNubSr: item.signNubSr,
+ id: item.id
+ };
uni.navigateTo({
- url: "/pagesHome/pages/SignDetailScan/SignDetailScan?item=" + JSON.stringify(item)
+ url: "/pagesHome/pages/SignDetailScan/SignDetailScan?item=" + JSON.stringify(data)
});
}
function cleartime() {
@@ -21514,9 +21685,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,
@@ -21764,8 +21935,8 @@ This will fail in production if not fixed.`);
/* STYLE */
);
}
- const cusSelects = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["render", _sfc_render$g], ["__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$g], ["__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());
@@ -22384,8 +22555,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
@@ -22560,8 +22731,8 @@ This will fail in production if not fixed.`);
/* CLASS, STYLE */
);
}
- const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["render", _sfc_render$f], ["__scopeId", "data-v-bf970acd"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-th/uni-th.vue"]]);
- const _sfc_main$1d = {
+ const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["render", _sfc_render$f], ["__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: {
@@ -22650,8 +22821,8 @@ This will fail in production if not fixed.`);
]))
]);
}
- const tableCheckbox = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["render", _sfc_render$e], ["__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$e], ["__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: {
@@ -22761,8 +22932,8 @@ This will fail in production if not fixed.`);
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
]);
}
- const __easycom_1 = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["render", _sfc_render$d], ["__scopeId", "data-v-b48b3e32"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-tr/uni-tr.vue"]]);
- const _sfc_main$1b = {
+ const __easycom_1 = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["render", _sfc_render$d], ["__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
@@ -22834,8 +23005,8 @@ This will fail in production if not fixed.`);
/* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
);
}
- const __easycom_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["render", _sfc_render$c], ["__scopeId", "data-v-edae4802"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-td/uni-td.vue"]]);
- const _sfc_main$1a = {
+ const __easycom_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["render", _sfc_render$c], ["__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
@@ -23126,8 +23297,8 @@ This will fail in production if not fixed.`);
/* CLASS */
);
}
- const __easycom_3 = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["render", _sfc_render$b], ["__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_3 = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["render", _sfc_render$b], ["__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());
@@ -23783,8 +23954,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);
@@ -24271,8 +24442,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());
@@ -25264,8 +25435,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesCustomerOrdersDetailsCustomerOrdersDetails = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__scopeId", "data-v-6197e305"], ["__file", "D:/worksp/logpm/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue"]]);
- const _sfc_main$16 = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesCustomerOrdersDetailsCustomerOrdersDetails = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["__scopeId", "data-v-6197e305"], ["__file", "D:/worksp/logpm/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue"]]);
+ const _sfc_main$17 = /* @__PURE__ */ vue.defineComponent({
__name: "DeliveryCustomerScan",
setup(__props) {
const { scanState } = storeToRefs(useSystemSettingsStore());
@@ -25281,7 +25452,9 @@ This will fail in production if not fixed.`);
datalist: [],
items: {},
scancode: "",
- authbuts: uni.getStorageSync("authbuts")
+ authbuts: uni.getStorageSync("authbuts"),
+ /** 装车件数 */
+ scannedNumber: 0
});
const tip = vue.ref(null);
const tiplists = vue.ref(null);
@@ -25294,7 +25467,7 @@ This will fail in production if not fixed.`);
uni.$off("scancodedate");
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:145", code2);
+ formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:147", code2);
details.scancode = code2;
scandata();
}
@@ -25316,10 +25489,9 @@ This will fail in production if not fixed.`);
});
return num;
});
- const scannedNumber = vue.computed(() => {
+ vue.computed(() => {
let num = 0;
details.datalist.forEach((item) => {
- formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:173", "item.loadingNub :>> ", item.loadingNub);
num += Number(item.loadingNub);
});
return num;
@@ -25367,7 +25539,6 @@ This will fail in production if not fixed.`);
utils.ttsspke(audio);
if (code2 !== 200)
return;
- basicContainer.value.startPullDownRefresh();
};
function scandata() {
let loadingId = uni.getStorageSync("checkvehicle").id;
@@ -25381,21 +25552,49 @@ This will fail in production if not fixed.`);
let response = await deliverycustom(data);
if (response.code !== 200)
return;
- formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:295", "response", response);
- details.datalist = response.data;
+ formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:297", "response", response);
+ details.datalist = response.data || [];
+ details.scannedNumber = 0;
+ details.datalist.forEach((item) => {
+ details.scannedNumber += Number(item.loadingNub);
+ });
} catch (e) {
} finally {
return null;
}
}
function goCustomerOrdersDetails(item) {
+ const data = {
+ isstock: item.isstock,
+ consignee: item.consignee,
+ isload: item.isload,
+ ordNub: item.ordNub,
+ reservationNum: item.reservationNum,
+ signNub: item.signNub,
+ id: item.id
+ };
uni.navigateTo({
- url: "/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails?item=" + JSON.stringify(item) + "&id=" + details.id
+ url: "/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails?item=" + JSON.stringify(data) + "&id=" + details.id
});
}
function goCustomerTrayDetails(item) {
+ const data = {
+ type_name: item.type_name,
+ deliStatus_name: item.deliStatus_name,
+ vehicleName: item.vehicleName,
+ driverName: item.driverName,
+ loadingTeamName: item.loadingTeamName,
+ isstock: item.isstock,
+ customersNumber: item.customersNumber,
+ orderNumber: item.orderNumber,
+ loadCusNub: item.loadCusNub,
+ loadOrdNub: item.loadOrdNub,
+ signNub: item.signNub,
+ signNubSr: item.signNubSr,
+ id: item.id
+ };
uni.navigateTo({
- url: "/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails?item=" + JSON.stringify(item) + "&id=" + details.id
+ url: "/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails?item=" + JSON.stringify(data) + "&id=" + details.id
});
}
const { authbuts, items, datalist } = vue.toRefs(details);
@@ -25501,7 +25700,7 @@ This will fail in production if not fixed.`);
vue.createElementVNode(
"view",
null,
- vue.toDisplayString(vue.unref(scannedNumber)),
+ vue.toDisplayString(vue.unref(details).scannedNumber),
1
/* TEXT */
)
@@ -25652,8 +25851,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({
@@ -25689,6 +25888,7 @@ This will fail in production if not fixed.`);
const tiplists = vue.ref(null);
onLoad((op) => {
utils.ttsspke("请选择签收客户");
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:152", "op.item :>> ", op.item);
details.items = JSON.parse(op.item);
details.id = JSON.parse(op.item).id;
});
@@ -25706,7 +25906,7 @@ This will fail in production if not fixed.`);
});
async function getconfig() {
let res = await dictbizdictionary({ code: "photo_type" });
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:175", "res1>>>>", res);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:177", "res1>>>>", res);
const { code: code2, data } = res;
if (code2 === 200) {
details.imgList = data.map((value) => {
@@ -25716,7 +25916,7 @@ This will fail in production if not fixed.`);
imgList: []
};
});
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:185", "details.imgList :>> ", details.imgList);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:187", "details.imgList :>> ", details.imgList);
}
}
function gosetorice(item) {
@@ -25757,9 +25957,9 @@ This will fail in production if not fixed.`);
const _arr = response.data;
const _fastArr = [];
const _commonArr = [];
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:228", "_arr :>> ", _arr);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:230", "_arr :>> ", _arr);
_arr.forEach((val) => {
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:230", "val :>> ", val);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:232", "val :>> ", val);
if (Number(val.isUrgent) === 2)
return _fastArr.push(val);
return _commonArr.push(val);
@@ -25772,7 +25972,7 @@ This will fail in production if not fixed.`);
reservationId: item.id
};
let res = await signforprices(data);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:249", "res>>>>>", res);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:251", "res>>>>>", res);
let imglis = [], rearks = "";
if (res.code == 200) {
if (Object.keys(res.data.deliverySignPictures).length !== 0 || res.data.driverRemarks) {
@@ -25784,7 +25984,7 @@ This will fail in production if not fixed.`);
return;
details.imgList[index2].imgList = imglis[item2.dictKey];
});
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:262", "details.imgList :>> ", details.imgList);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:264", "details.imgList :>> ", details.imgList);
} else {
details.isChange = false;
}
@@ -25793,8 +25993,8 @@ This will fail in production if not fixed.`);
}
}
const response = await signforSignNum({ ...data, id: details.id });
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:274", "response :>> ", response);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:276", "tiplists :>> ", tiplists.value);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:276", "response :>> ", response);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:278", "tiplists :>> ", tiplists.value);
tiplists.value.setdetails({
title: "请上传签收图片",
isshow: true,
@@ -25808,7 +26008,7 @@ This will fail in production if not fixed.`);
changeImageList: details.changeImageList,
ImagesRequiredFields: details.ImagesRequiredFields,
success: async (detail) => {
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:291", "detail :>> ", detail);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:293", "detail :>> ", detail);
let data2 = {
deliveryId: details.id,
reservationId: item.id,
@@ -25817,7 +26017,7 @@ This will fail in production if not fixed.`);
};
let res2 = null;
let isSubmit = true;
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:302", "details.ImagesRequiredFields :>> ", details.ImagesRequiredFields);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:304", "details.ImagesRequiredFields :>> ", details.ImagesRequiredFields);
if (details.isChange) {
const filterMap = detail.imglist.filter((item2) => details.changeImageList.includes(item2.dictKey));
isSubmit = filterMap.every((item2) => {
@@ -25836,11 +26036,11 @@ This will fail in production if not fixed.`);
}
res2 = await signforUpdatePicture(data2);
} else {
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:321", "details.imgList :>> ", details.imgList);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:323", "details.imgList :>> ", details.imgList);
detail.imglist.forEach((item2) => {
data2.map[item2.dictKey] = item2.imgList;
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:324", 2);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:325", "item.imgList :>> ", item2.imgList);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:326", 2);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:327", "item.imgList :>> ", item2.imgList);
if (details.ImagesRequiredFields.find((val) => val.key === item2.dictKey) && item2.imgList.length < 1)
isSubmit = false;
else
@@ -25918,7 +26118,7 @@ This will fail in production if not fixed.`);
});
}
function getLocation(item) {
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:406", "getLocation-------");
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:408", "getLocation-------");
uni.getLocation({
type: "wgs84",
geocode: true,
@@ -25929,9 +26129,9 @@ This will fail in production if not fixed.`);
title: "打卡中",
mask: true
});
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:417", JSON.stringify(res));
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:420", "当前位置的经度:" + res.longitude);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:421", "当前位置的纬度:" + res.latitude);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:419", JSON.stringify(res));
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:422", "当前位置的经度:" + res.longitude);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:423", "当前位置的纬度:" + res.latitude);
let data = {
deliveryId: details.id,
reservationId: item.id,
@@ -25939,12 +26139,12 @@ This will fail in production if not fixed.`);
positioningAdr: ""
};
let response = await signforpositioning(data);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:429", response);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:431", response);
if (response.code == 200) {
initpage();
}
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:435", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:437", "err :>> ", err);
} finally {
uni.hideLoading();
}
@@ -25954,7 +26154,7 @@ This will fail in production if not fixed.`);
title: "定位失败",
icon: "none"
});
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:447", err);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:449", err);
uni.hideLoading();
}
});
@@ -26214,8 +26414,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());
@@ -27172,8 +27372,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({
@@ -27635,8 +27835,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());
@@ -28188,8 +28388,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);
@@ -28331,8 +28531,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());
@@ -28519,8 +28719,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("订单扫描");
@@ -28583,8 +28783,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(() => {
@@ -28636,8 +28836,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());
@@ -29037,8 +29237,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$a(_ctx, _cache) {
const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0$5);
return vue.openBlock(), vue.createElementBlock(
@@ -29061,7 +29261,7 @@ This will fail in production if not fixed.`);
/* STABLE_FRAGMENT */
);
}
- const PagesHomePagesPeopleSortingPeopleSorting = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["render", _sfc_render$a], ["__file", "D:/worksp/logpm/pagesHome/pages/peopleSorting/peopleSorting.vue"]]);
+ const PagesHomePagesPeopleSortingPeopleSorting = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["render", _sfc_render$a], ["__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 = {
@@ -29362,7 +29562,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());
@@ -30794,18 +30994,46 @@ 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"]]);
+ /*!
+ * vue-router v4.1.6
+ * (c) 2022 Eduardo San Martin Morote
+ * @license MIT
+ */
+ var NavigationType;
+ (function(NavigationType2) {
+ NavigationType2["pop"] = "pop";
+ NavigationType2["push"] = "push";
+ })(NavigationType || (NavigationType = {}));
+ var NavigationDirection;
+ (function(NavigationDirection2) {
+ NavigationDirection2["back"] = "back";
+ NavigationDirection2["forward"] = "forward";
+ NavigationDirection2["unknown"] = "";
+ })(NavigationDirection || (NavigationDirection = {}));
+ var NavigationFailureType;
+ (function(NavigationFailureType2) {
+ NavigationFailureType2[NavigationFailureType2["aborted"] = 4] = "aborted";
+ NavigationFailureType2[NavigationFailureType2["cancelled"] = 8] = "cancelled";
+ NavigationFailureType2[NavigationFailureType2["duplicated"] = 16] = "duplicated";
+ })(NavigationFailureType || (NavigationFailureType = {}));
+ const routeLocationKey = Symbol("route location");
+ function useRoute() {
+ return vue.inject(routeLocationKey);
+ }
+ const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
__name: "ScanSortingType",
setup(__props) {
let typelist = vue.ref([]);
- let pageType = vue.ref("");
+ vue.ref("");
let trayCode = vue.ref("");
+ const $route = useRoute();
onShow(() => {
uni.$off("scancodedate");
});
onLoad((op) => {
trayCode.value = op.trayCode;
+ formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:38", "$route.query :>> ", $route.query);
typelist.value = [
{ type: 1, name: "服务号", src: "/pagesHome/static/scicon1.png" },
{ type: 2, name: "订单自编码", src: "/pagesHome/static/scicon2.png" },
@@ -30817,7 +31045,7 @@ This will fail in production if not fixed.`);
];
let trayCodeTypearr = uni.getStorageSync("trayCodeType");
utils.ttsspke("请选择分拣方式");
- formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:45", trayCodeTypearr);
+ formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:51", trayCodeTypearr);
trayCodeTypearr.map((item, index2) => {
typelist.value.map((ite, inde) => {
if (item.dictValue == ite.name) {
@@ -30832,7 +31060,7 @@ This will fail in production if not fixed.`);
];
utils.ttsspke("请选择分拣方式");
let trayCodeTypearr2 = uni.getStorageSync("trayCodeType");
- formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:60", trayCodeTypearr2);
+ formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:66", trayCodeTypearr2);
trayCodeTypearr2.map((item, index2) => {
typelist.value.map((ite, inde) => {
if (item.dictValue == ite.name) {
@@ -30841,15 +31069,14 @@ This will fail in production if not fixed.`);
});
});
}
- formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:69", typelist.value);
+ formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:75", typelist.value);
});
function gotourl(item) {
let url2 = "";
- formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:73", "item>>>>>>>", item);
- url2 = "/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode=" + trayCode.value + "&trayType=" + item.dictKey + "&pageName=" + item.name;
- if (Number(pageType.value) == 2) {
- url2 = "/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail?trayCode=" + trayCode.value + "&trayType=" + item.dictKey + "&pageName=" + item.name;
- }
+ formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:79", "item>>>>>>>", item);
+ const SkipRoute = $route.query.SkipRoute;
+ formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:83", "SkipRoute :>> ", SkipRoute);
+ url2 = "/pagesHome/pages" + (SkipRoute ? SkipRoute : "/OrderSortingDetail/OrderSortingDetail") + "?trayCode=" + trayCode.value + "&trayType=" + item.dictKey + "&pageName=" + item.name;
uni.redirectTo({
url: url2
});
@@ -30861,14 +31088,14 @@ This will fail in production if not fixed.`);
null,
[
vue.createVNode(_component_u_navbar, {
- title: vue.unref(pageType) == 1 ? "扫描分拣" : "人工分拣",
+ title: "分拣方式",
bgColor: "#D3832A",
leftIconColor: "#ffffff",
titleStyle: "color:#ffffff",
placeholder: "",
autoBack: true,
leftIconSize: "35"
- }, null, 8, ["title"]),
+ }),
vue.createElementVNode("view", { class: "maxbxview" }, [
(vue.openBlock(true), vue.createElementBlock(
vue.Fragment,
@@ -30901,8 +31128,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());
@@ -31493,8 +31720,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([]);
@@ -31579,8 +31806,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());
@@ -31790,8 +32017,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);
@@ -31970,8 +32197,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);
@@ -32574,8 +32801,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());
@@ -32946,8 +33173,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);
@@ -33419,8 +33646,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([]);
@@ -33499,8 +33726,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 { HANDLE_ISSTORAGECODE } = useStorageStore();
@@ -34193,8 +34420,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("请选择移库方式");
@@ -34283,8 +34510,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 { HANDLE_ISSTORAGECODE } = useStorageStore();
@@ -35024,8 +35251,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesRelocationRelocation = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-6e763ec5"], ["__file", "D:/worksp/logpm/pagesHome/pages/Relocation/Relocation.vue"]]);
- const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesRelocationRelocation = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-6e763ec5"], ["__file", "D:/worksp/logpm/pagesHome/pages/Relocation/Relocation.vue"]]);
+ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
__name: "PeopleScanUpType",
setup(__props) {
let typelist = vue.ref([]);
@@ -35098,8 +35325,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());
@@ -36278,8 +36505,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());
@@ -36627,8 +36854,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesPickingScanListPickingScanList = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-5628bd90"], ["__file", "D:/worksp/logpm/pagesHome/pages/PickingScanList/PickingScanList.vue"]]);
- const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesPickingScanListPickingScanList = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__scopeId", "data-v-5628bd90"], ["__file", "D:/worksp/logpm/pagesHome/pages/PickingScanList/PickingScanList.vue"]]);
+ const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
__name: "Retention",
setup(__props) {
const { scanState } = storeToRefs(useSystemSettingsStore());
@@ -36784,8 +37011,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());
@@ -37270,8 +37497,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("");
@@ -37568,8 +37795,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([]);
@@ -37643,8 +37870,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());
@@ -38756,8 +38983,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({
@@ -39058,8 +39285,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());
@@ -39252,7 +39479,7 @@ This will fail in production if not fixed.`);
class: vue.normalizeClass({ "tabBar_item": true, "active": vue.unref(details).tabBarState === 1 }),
onClick: _cache[1] || (_cache[1] = ($event) => setTabBarState(1))
},
- " 订制品 ",
+ " 定制品 ",
2
/* CLASS */
),
@@ -39544,8 +39771,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({});
@@ -39566,8 +39793,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());
@@ -40176,8 +40403,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(() => {
@@ -40197,8 +40424,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());
@@ -40766,8 +40993,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);
@@ -41036,7 +41263,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$3 = {
props: {
// 绑定的值
@@ -41223,7 +41450,7 @@ This will fail in production if not fixed.`);
}
}
};
- const _sfc_main$v = {
+ const _sfc_main$w = {
name: "u-input",
mixins: [mpMixin$1, mixin$1, props$3],
data() {
@@ -41445,8 +41672,8 @@ This will fail in production if not fixed.`);
/* CLASS, STYLE */
);
}
- const __easycom_2 = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["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$u = {
+ const __easycom_2 = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["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$v = {
name: "u--input",
mixins: [mpMixin$1, props$3, mixin$1],
components: {
@@ -41502,7 +41729,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_5 = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["render", _sfc_render$8], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u--input/u--input.vue"]]);
+ const __easycom_5 = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["render", _sfc_render$8], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u--input/u--input.vue"]]);
const props$2 = {
props: {
// input的label提示语
@@ -41546,7 +41773,7 @@ This will fail in production if not fixed.`);
}
}
};
- const _sfc_main$t = {
+ const _sfc_main$u = {
name: "u-form-item",
mixins: [mpMixin$1, mixin$1, props$2],
data() {
@@ -41704,7 +41931,7 @@ This will fail in production if not fixed.`);
}, null, 8, ["color", "customStyle"])) : vue.createCommentVNode("v-if", true)
]);
}
- const __easycom_6 = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["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_6 = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["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的需要验证字段的集合
@@ -42643,7 +42870,7 @@ This will fail in production if not fixed.`);
Schema.messages = messages;
Schema.warning = function() {
};
- const _sfc_main$s = {
+ const _sfc_main$t = {
name: "u-form",
mixins: [mpMixin$1, mixin$1, props$1],
provide() {
@@ -42809,8 +43036,8 @@ This will fail in production if not fixed.`);
vue.renderSlot(_ctx.$slots, "default")
]);
}
- const uvForm = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["render", _sfc_render$6], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-form/u-form.vue"]]);
- const _sfc_main$r = {
+ const uvForm = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["render", _sfc_render$6], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-form/u-form.vue"]]);
+ const _sfc_main$s = {
name: "u--form",
mixins: [mpMixin$1, props$1, mixin$1],
components: {
@@ -42862,8 +43089,8 @@ This will fail in production if not fixed.`);
/* FORWARDED */
}, 8, ["model", "rules", "errorType", "borderBottom", "labelPosition", "labelWidth", "labelAlign", "labelStyle", "customStyle"]);
}
- const __easycom_7 = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["render", _sfc_render$5], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u--form/u--form.vue"]]);
- const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
+ const __easycom_7 = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["render", _sfc_render$5], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u--form/u--form.vue"]]);
+ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
__name: "orderInquiry",
setup(__props) {
const { scanState } = storeToRefs(useSystemSettingsStore());
@@ -43196,7 +43423,7 @@ This will fail in production if not fixed.`);
class: vue.normalizeClass({ "active": showArticleMadeToOrder.value })
},
[
- vue.createTextVNode(" 订制品("),
+ vue.createTextVNode(" 定制品("),
vue.createElementVNode(
"text",
{ class: "title__number" },
@@ -43230,7 +43457,7 @@ This will fail in production if not fixed.`);
/* CLASS */
)
]),
- vue.createCommentVNode(" 订制品 "),
+ vue.createCommentVNode(" 定制品 "),
packageList.value.length !== 0 && showArticleMadeToOrder.value ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
class: "packagesList"
@@ -43586,116 +43813,891 @@ This will fail in production if not fixed.`);
512
/* NEED_PATCH */
),
- vue.createVNode(
- _component_PopUp,
- {
- ref_key: "MaterialReplenishment",
- ref: MaterialReplenishment
- },
- {
- default: vue.withCtx(() => [
- vue.createVNode(_component_u__form, {
- labelPosition: "left",
- "label-width": "80px",
- model: form.value,
- ref: "uForm"
- }, {
- default: vue.withCtx(() => [
- vue.createVNode(
- _component_u_form_item,
- {
- label: "物料名称",
- borderBottom: "",
- ref: "item1"
- },
- {
- default: vue.withCtx(() => [
- vue.createVNode(_component_u__input, {
- modelValue: form.value.name,
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => form.value.name = $event),
- border: "bottom"
- }, null, 8, ["modelValue"])
- ]),
- _: 1
- /* STABLE */
- },
- 512
- /* NEED_PATCH */
- ),
- vue.createVNode(
- _component_u_form_item,
- {
- label: "物料名称",
- borderBottom: "",
- ref: "item1"
- },
- {
- default: vue.withCtx(() => [
- vue.createVNode(_component_u__input, {
- modelValue: form.value.name,
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => form.value.name = $event),
- border: "bottom"
- }, null, 8, ["modelValue"])
- ]),
- _: 1
- /* STABLE */
- },
- 512
- /* NEED_PATCH */
- ),
- vue.createVNode(
- _component_u_form_item,
- {
- label: "物料名称",
- borderBottom: "",
- ref: "item1"
- },
- {
- default: vue.withCtx(() => [
- vue.createVNode(_component_u__input, {
- modelValue: form.value.name,
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => form.value.name = $event),
- border: "bottom"
- }, null, 8, ["modelValue"])
- ]),
- _: 1
- /* STABLE */
- },
- 512
- /* NEED_PATCH */
- ),
- vue.createVNode(
- _component_u_form_item,
- {
- label: "物料名称",
- borderBottom: "",
- ref: "item1"
- },
- {
- default: vue.withCtx(() => [
- vue.createVNode(_component_u__input, {
- modelValue: form.value.name,
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => form.value.name = $event),
- border: "bottom"
- }, null, 8, ["modelValue"])
- ]),
- _: 1
- /* STABLE */
- },
- 512
- /* NEED_PATCH */
- )
- ]),
- _: 1
- /* STABLE */
- }, 8, ["model"])
- ]),
- _: 1
- /* STABLE */
- },
- 512
- /* NEED_PATCH */
- ),
+ vue.createVNode(
+ _component_PopUp,
+ {
+ ref_key: "MaterialReplenishment",
+ ref: MaterialReplenishment
+ },
+ {
+ default: vue.withCtx(() => [
+ vue.createVNode(_component_u__form, {
+ labelPosition: "left",
+ "label-width": "80px",
+ model: form.value,
+ ref: "uForm"
+ }, {
+ default: vue.withCtx(() => [
+ vue.createVNode(
+ _component_u_form_item,
+ {
+ label: "物料名称",
+ borderBottom: "",
+ ref: "item1"
+ },
+ {
+ default: vue.withCtx(() => [
+ vue.createVNode(_component_u__input, {
+ modelValue: form.value.name,
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => form.value.name = $event),
+ border: "bottom"
+ }, null, 8, ["modelValue"])
+ ]),
+ _: 1
+ /* STABLE */
+ },
+ 512
+ /* NEED_PATCH */
+ ),
+ vue.createVNode(
+ _component_u_form_item,
+ {
+ label: "物料名称",
+ borderBottom: "",
+ ref: "item1"
+ },
+ {
+ default: vue.withCtx(() => [
+ vue.createVNode(_component_u__input, {
+ modelValue: form.value.name,
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => form.value.name = $event),
+ border: "bottom"
+ }, null, 8, ["modelValue"])
+ ]),
+ _: 1
+ /* STABLE */
+ },
+ 512
+ /* NEED_PATCH */
+ ),
+ vue.createVNode(
+ _component_u_form_item,
+ {
+ label: "物料名称",
+ borderBottom: "",
+ ref: "item1"
+ },
+ {
+ default: vue.withCtx(() => [
+ vue.createVNode(_component_u__input, {
+ modelValue: form.value.name,
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => form.value.name = $event),
+ border: "bottom"
+ }, null, 8, ["modelValue"])
+ ]),
+ _: 1
+ /* STABLE */
+ },
+ 512
+ /* NEED_PATCH */
+ ),
+ vue.createVNode(
+ _component_u_form_item,
+ {
+ label: "物料名称",
+ borderBottom: "",
+ ref: "item1"
+ },
+ {
+ default: vue.withCtx(() => [
+ vue.createVNode(_component_u__input, {
+ modelValue: form.value.name,
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => form.value.name = $event),
+ border: "bottom"
+ }, null, 8, ["modelValue"])
+ ]),
+ _: 1
+ /* STABLE */
+ },
+ 512
+ /* NEED_PATCH */
+ )
+ ]),
+ _: 1
+ /* STABLE */
+ }, 8, ["model"])
+ ]),
+ _: 1
+ /* STABLE */
+ },
+ 512
+ /* NEED_PATCH */
+ ),
+ vue.createVNode(_component_saomiao2, {
+ ishidestop: vue.unref(scanState) !== 0
+ }, null, 8, ["ishidestop"]),
+ vue.createVNode(
+ _component_BluetoothList,
+ {
+ ref_key: "bluetoothList",
+ ref: bluetoothList
+ },
+ null,
+ 512
+ /* NEED_PATCH */
+ )
+ ],
+ 64
+ /* STABLE_FRAGMENT */
+ );
+ };
+ }
+ });
+ const PagesHomePagesOrderInquiryOrderInquiry = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-e1375c52"], ["__file", "D:/worksp/logpm/pagesHome/pages/orderInquiry/orderInquiry.vue"]]);
+ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
+ __name: "storageInquiry",
+ setup(__props) {
+ const { scanState } = storeToRefs(useSystemSettingsStore());
+ const bluetoothList = vue.ref(null);
+ const bluetoothStore = useBluetoothStore();
+ storeToRefs(bluetoothStore);
+ const dataInfo = vue.shallowRef({});
+ const isBatchOperation = vue.ref(false);
+ vue.ref(true);
+ const scancode = vue.ref("");
+ const packageList = vue.shallowRef([]);
+ const zeroList = vue.shallowRef([]);
+ const stockList = vue.shallowRef([]);
+ const info = vue.ref({ trayInfo: {} });
+ vue.reactive({
+ "10": "部分入库",
+ "20": "已入库",
+ "30": "部分出库",
+ "40": "已出库",
+ "50": "部分装车",
+ "60": "已装车",
+ "70": "部分签收",
+ "80": "已签收"
+ });
+ const tabBarCode = vue.ref(1);
+ vue.ref({});
+ const tiplists = vue.ref(null);
+ onLoad(() => {
+ utils.ttsspke("库位查询, 请扫描或输入库位码");
+ });
+ onShow(async () => {
+ uni.$off("scancodedate");
+ uni.$on("scancodedate", function(code2) {
+ if (code2) {
+ scancode.value = code2;
+ scandata();
+ }
+ });
+ });
+ onPullDownRefresh(() => {
+ const timer = setTimeout(() => {
+ dataInfo.value = {};
+ scancode.value = "";
+ packageList.value = [];
+ uni.stopPullDownRefresh();
+ clearTimeout(timer);
+ }, 300);
+ });
+ async function scandata() {
+ const res = await postFindAllocationData({ allocationId: scancode.value });
+ formatAppLog("log", "at pagesHome/pages/storageInquiry/storageInquiry.vue:302", "res :>> ", res);
+ const { code: code2, data } = res;
+ if (code2 !== 200 || !data)
+ return;
+ info.value = data.updownTypeEntity || {};
+ info.value.trayInfo = data.trayEntity || {};
+ packageList.value = data.packageList;
+ zeroList.value = data.zeroOrderList;
+ stockList.value = data.stockOrderList;
+ }
+ const handleTabBarState = (code2) => {
+ tabBarCode.value = code2;
+ };
+ const selectionChange = () => {
+ };
+ return (_ctx, _cache) => {
+ const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0$5);
+ const _component_uni_th = resolveEasycom(vue.resolveDynamicComponent("uni-th"), __easycom_0);
+ const _component_uni_tr = resolveEasycom(vue.resolveDynamicComponent("uni-tr"), __easycom_1);
+ const _component_uni_td = resolveEasycom(vue.resolveDynamicComponent("uni-td"), __easycom_2$1);
+ const _component_uni_table = resolveEasycom(vue.resolveDynamicComponent("uni-table"), __easycom_3);
+ const _component_tiplist = vue.resolveComponent("tiplist");
+ const _component_saomiao2 = vue.resolveComponent("saomiao2");
+ const _component_BluetoothList = vue.resolveComponent("BluetoothList");
+ return vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ [
+ vue.createCommentVNode(" 顶部导航栏 "),
+ vue.createVNode(_component_u_navbar, {
+ title: "库位查询",
+ placeholder: "",
+ autoBack: true,
+ leftIconSize: "35",
+ bgColor: "#d3832a",
+ leftIconColor: "#ffffff",
+ titleStyle: "color:#ffffff"
+ }),
+ vue.createElementVNode("view", { class: "container" }, [
+ vue.createCommentVNode(" 顶部搜索栏 "),
+ vue.createElementVNode("view", { class: "header-search" }, [
+ vue.createElementVNode("view", { class: "search" }, [
+ vue.withDirectives(vue.createElementVNode(
+ "input",
+ {
+ class: "searchInput",
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => scancode.value = $event),
+ type: "text"
+ },
+ null,
+ 512
+ /* NEED_PATCH */
+ ), [
+ [vue.vModelText, scancode.value]
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "search" }, [
+ vue.createElementVNode("view", {
+ class: "searchType",
+ onClick: scandata
+ }, " 搜索 ")
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "orderInfo" }, [
+ vue.createCommentVNode(" 库位数据 "),
+ vue.createElementVNode("view", { class: "orderInfo_title" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", { class: "row_title1" }, " 库位: "),
+ vue.createTextVNode(
+ " " + vue.toDisplayString(info.value.positionCode || "暂无数据"),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "orderInfo_title_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("view", { class: "row_title1" }, " 托盘名称: "),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(info.value.trayInfo.palletName || "暂无数据"),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("view", { class: "row_title2" }, " 托盘码: "),
+ vue.createElementVNode(
+ "view",
+ { class: "" },
+ vue.toDisplayString(info.value.trayInfo.palletCode || "暂无数据"),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "orderInfo_title_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", { class: "row_title1" }, " 包件数: "),
+ vue.createTextVNode(
+ " " + vue.toDisplayString(info.value.totalNum || 0),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", { class: "row_title2" }, " 订单包件总数: "),
+ vue.createTextVNode(
+ " " + vue.toDisplayString(info.value.orderTotalNum || 0),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "orderInfo_title_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", { class: "row_title1" }, " 库存品数: "),
+ vue.createTextVNode(
+ " " + vue.toDisplayString(info.value.stockNum || 0),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", { class: "row_title2" }, " 库存品订单总数: "),
+ vue.createTextVNode(
+ " " + vue.toDisplayString(info.value.stockTotalNum || 0),
+ 1
+ /* TEXT */
+ )
+ ])
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "title" }, [
+ vue.createElementVNode(
+ "view",
+ {
+ onClick: _cache[1] || (_cache[1] = ($event) => handleTabBarState(1)),
+ class: vue.normalizeClass({ "active": tabBarCode.value === 1 })
+ },
+ " 定制品 ",
+ 2
+ /* CLASS */
+ ),
+ vue.createElementVNode(
+ "view",
+ {
+ onClick: _cache[2] || (_cache[2] = ($event) => handleTabBarState(2)),
+ class: vue.normalizeClass({ "active": tabBarCode.value === 2 })
+ },
+ " 零担 ",
+ 2
+ /* CLASS */
+ ),
+ vue.createElementVNode(
+ "view",
+ {
+ onClick: _cache[3] || (_cache[3] = ($event) => handleTabBarState(3)),
+ class: vue.normalizeClass({ "active": tabBarCode.value === 3 })
+ },
+ " 库存品 ",
+ 2
+ /* CLASS */
+ )
+ ]),
+ vue.createCommentVNode(" 定制品 "),
+ tabBarCode.value === 1 ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 0,
+ class: "packagesList"
+ }, [
+ vue.createCommentVNode(" 控件 "),
+ vue.createElementVNode("view", { class: "control" }, [
+ !isBatchOperation.value ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [
+ vue.createElementVNode("view", {
+ class: "batchOperationBtn",
+ onClick: _cache[4] || (_cache[4] = ($event) => isBatchOperation.value = true)
+ }, "批量操作")
+ ])) : (vue.openBlock(), vue.createElementBlock("view", {
+ key: 1,
+ style: { "display": "flex" }
+ }, [
+ vue.createElementVNode("view", {
+ class: "batchOperationBtn",
+ onClick: _cache[5] || (_cache[5] = //@ts-ignore
+ (...args) => _ctx.batchPrint && _ctx.batchPrint(...args))
+ }, "打印")
+ ]))
+ ]),
+ vue.createElementVNode("scroll-view", {
+ "scroll-y": "true",
+ style: { "height": "60vh", "margin-top": "10px" }
+ }, [
+ vue.createVNode(_component_uni_table, {
+ type: "selection",
+ border: "",
+ stripe: "",
+ emptyText: "暂无更多数据",
+ onSelectionChange: selectionChange
+ }, {
+ default: vue.withCtx(() => [
+ vue.createCommentVNode(" 表头行 "),
+ vue.createVNode(_component_uni_tr, null, {
+ default: vue.withCtx(() => [
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("包条码")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("库位信息")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("托盘信息")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("三级品")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "center" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("是否签收")
+ ]),
+ _: 1
+ /* STABLE */
+ })
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createCommentVNode(" 表格数据行 "),
+ (vue.openBlock(true), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ vue.renderList(vue.unref(packageList), (item) => {
+ return vue.openBlock(), vue.createBlock(
+ _component_uni_tr,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createCommentVNode(" 包条码 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.orderPackageCode),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createCommentVNode(" 库位信息 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.goodsAllocation),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createCommentVNode(" 托盘信息 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.pallet),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createCommentVNode(" 三级品 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.thirdProduct),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createVNode(
+ _component_uni_td,
+ { align: "center" },
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.orderPackageStatus === "70" ? "已签" : "未签"),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ );
+ }),
+ 256
+ /* UNKEYED_FRAGMENT */
+ ))
+ ]),
+ _: 1
+ /* STABLE */
+ })
+ ])
+ ])) : tabBarCode.value === 2 ? (vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ { key: 1 },
+ [
+ vue.createCommentVNode(" 零担 "),
+ vue.createElementVNode("view", { class: "packagesList" }, [
+ vue.createElementVNode("scroll-view", {
+ "scroll-y": "true",
+ style: { "height": "60vh", "margin-top": "10px" }
+ }, [
+ vue.createVNode(_component_uni_table, {
+ type: "selection",
+ border: "",
+ stripe: "",
+ emptyText: "暂无更多数据",
+ onSelectionChange: selectionChange
+ }, {
+ default: vue.withCtx(() => [
+ vue.createCommentVNode(" 表头行 "),
+ vue.createVNode(_component_uni_tr, null, {
+ default: vue.withCtx(() => [
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("物料编码")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("物料名称")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("商场名称")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "center" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("是否签收")
+ ]),
+ _: 1
+ /* STABLE */
+ })
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createCommentVNode(" 表格数据行 "),
+ (vue.openBlock(true), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ vue.renderList(vue.unref(zeroList), (item) => {
+ return vue.openBlock(), vue.createBlock(
+ _component_uni_tr,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createCommentVNode(" 物料编码 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.cargoNumber),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createCommentVNode(" 物料名称 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.descriptionGoods),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createCommentVNode(" 商场名称 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.marketName),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createVNode(
+ _component_uni_td,
+ { align: "center" },
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.orderPackageStatus === "70" ? "已签" : "未签"),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ );
+ }),
+ 256
+ /* UNKEYED_FRAGMENT */
+ ))
+ ]),
+ _: 1
+ /* STABLE */
+ })
+ ])
+ ])
+ ],
+ 2112
+ /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
+ )) : tabBarCode.value === 3 ? (vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ { key: 2 },
+ [
+ vue.createCommentVNode(" 库存品 "),
+ vue.createElementVNode("view", { class: "packagesList" }, [
+ vue.createElementVNode("scroll-view", {
+ "scroll-y": "true",
+ style: { "height": "60vh", "margin-top": "10px" }
+ }, [
+ vue.createVNode(_component_uni_table, {
+ type: "selection",
+ border: "",
+ stripe: "",
+ emptyText: "暂无更多数据",
+ onSelectionChange: selectionChange
+ }, {
+ default: vue.withCtx(() => [
+ vue.createCommentVNode(" 表头行 "),
+ vue.createVNode(_component_uni_tr, null, {
+ default: vue.withCtx(() => [
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("批次号")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("物料编码")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("物料名称")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "left" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("商场名称")
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createVNode(_component_uni_th, { align: "center" }, {
+ default: vue.withCtx(() => [
+ vue.createTextVNode("在库数")
+ ]),
+ _: 1
+ /* STABLE */
+ })
+ ]),
+ _: 1
+ /* STABLE */
+ }),
+ vue.createCommentVNode(" 表格数据行 "),
+ (vue.openBlock(true), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ vue.renderList(vue.unref(stockList), (item) => {
+ return vue.openBlock(), vue.createBlock(
+ _component_uni_tr,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createCommentVNode(" 批次号 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.incomingBatch),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createCommentVNode(" 物料编码 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.materialCode),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createCommentVNode(" 物料名称 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.materialName),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createCommentVNode(" 商场名称 "),
+ vue.createVNode(
+ _component_uni_td,
+ null,
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.marketName),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ ),
+ vue.createVNode(
+ _component_uni_td,
+ { align: "center" },
+ {
+ default: vue.withCtx(() => [
+ vue.createTextVNode(
+ vue.toDisplayString(item.num),
+ 1
+ /* TEXT */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ )
+ ]),
+ _: 2
+ /* DYNAMIC */
+ },
+ 1024
+ /* DYNAMIC_SLOTS */
+ );
+ }),
+ 256
+ /* UNKEYED_FRAGMENT */
+ ))
+ ]),
+ _: 1
+ /* STABLE */
+ })
+ ])
+ ])
+ ],
+ 2112
+ /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
+ )) : vue.createCommentVNode("v-if", true)
+ ])
+ ]),
+ vue.createVNode(
+ _component_tiplist,
+ {
+ ref_key: "tiplists",
+ ref: tiplists
+ },
+ null,
+ 512
+ /* NEED_PATCH */
+ ),
vue.createVNode(_component_saomiao2, {
ishidestop: vue.unref(scanState) !== 0
}, null, 8, ["ishidestop"]),
@@ -43716,7 +44718,7 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesOrderInquiryOrderInquiry = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-e1375c52"], ["__file", "D:/worksp/logpm/pagesHome/pages/orderInquiry/orderInquiry.vue"]]);
+ const PagesHomePagesStorageInquiryStorageInquiry = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-5d7d7545"], ["__file", "D:/worksp/logpm/pagesHome/pages/storageInquiry/storageInquiry.vue"]]);
const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
__name: "CustomerTrayDetails",
setup(__props) {
@@ -46436,7 +47438,9 @@ This will fail in production if not fixed.`);
/** 关闭扫描监听 */
stopScan: false,
/** 被移动的包条数据 */
- removeTray: {}
+ removeTray: {},
+ /** 展示详情信息 */
+ detailsInfo: {}
});
const basicContainer = vue.ref(null);
const popUp_Up = vue.ref(null);
@@ -46446,10 +47450,11 @@ This will fail in production if not fixed.`);
const popUp_AddZero = vue.ref(null);
const popUp_AddStock = vue.ref(null);
const popUp_RemoveTary = vue.ref(null);
+ const popUp_Details = vue.ref(null);
onLoad((info) => {
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:564", "info :>> ", info);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:635", "info :>> ", info);
const infos = JSON.parse(info.info);
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:566", "object :>> ", JSON.parse(info.info));
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:637", "object :>> ", JSON.parse(info.info));
option.title = infos.title;
details.pageType = infos.pageType;
details.pageInfos = infos;
@@ -46477,7 +47482,7 @@ This will fail in production if not fixed.`);
const orderRes = initOrder();
const stockRes = initStock();
const _promiseAll = Promise.all([orderRes, stockRes]);
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:608", "_promiseAll :>> ", _promiseAll);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:679", "_promiseAll :>> ", _promiseAll);
return _promiseAll;
} catch (e) {
}
@@ -46588,9 +47593,9 @@ This will fail in production if not fixed.`);
questNum: details.pageInfos.questNum
};
const res = await postWarehouseTaskSelectPackageInfo(queryData);
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:736", "res :>> ", res);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:807", "res :>> ", res);
const { code: code2, data } = res;
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:738", "code :>> ", code2);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:809", "code :>> ", code2);
if (code2 === 200 && data && data.length !== 0) {
data.forEach((val) => {
if (details.pageType === 4 && val.trayCode) {
@@ -46608,7 +47613,7 @@ This will fail in production if not fixed.`);
val.trayId = details.pageInfos.trayId;
val.isChange = true;
details.orderList.push(val);
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:760", "val :>> ", val);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:831", "val :>> ", val);
popUp_RemoveTary.value.details.showPopUp = false;
utils.ttsspke(details.scanNum + "件");
}
@@ -46691,7 +47696,7 @@ This will fail in production if not fixed.`);
});
}
} catch (err) {
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:859", "err :>> ", err);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:930", "err :>> ", err);
} finally {
}
}
@@ -46793,6 +47798,15 @@ This will fail in production if not fixed.`);
}
});
};
+ const handleShowDetails = (item) => {
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1043", "item :>> ", item);
+ details.detailsInfo = item;
+ popUp_Details.value.setDetails({
+ title: "详情",
+ showPopUp: true,
+ confirmText: "关闭"
+ });
+ };
const handleShowControl = (_type) => {
if (_type === 3 && details.pageType === 4) {
details.scancode = "";
@@ -46857,7 +47871,7 @@ This will fail in production if not fixed.`);
}
};
const initState = (cargoName) => {
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1053", "cargoName :>> ", cargoName);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1138", "cargoName :>> ", cargoName);
if (details.tabBarCode === 1) {
if (cargoName) {
details.stateArr.forEach((val) => {
@@ -46884,8 +47898,8 @@ This will fail in production if not fixed.`);
if (cargoName.stockNum || cargoName.wornNum || cargoName.lossNum || cargoName.noRepairNum || cargoName.deliveNum || cargoName.noReceivedNum) {
details.stateArr.forEach((val) => {
const _value = cargoName[val.name];
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1088", "val.name :>> ", val.name);
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1089", "_value :>> ", _value);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1173", "val.name :>> ", val.name);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1174", "_value :>> ", _value);
if (_value > 0 && _value)
val.value = _value;
else
@@ -46904,7 +47918,7 @@ This will fail in production if not fixed.`);
utils.ttsspke("取消当前操作");
};
const batchEditState = () => {
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1114", "修改");
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1199", "修改");
initState();
popUp_EditState.value.setDetails({
title: "状态修改",
@@ -46928,7 +47942,7 @@ This will fail in production if not fixed.`);
utils.ttsspke("成功修改" + _number + "件");
popUp_EditState.value.details.showPopUp = false;
details.showControl = false;
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1149", "111 :>> ", 111);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1234", "111 :>> ", 111);
}
});
};
@@ -47119,7 +48133,7 @@ This will fail in production if not fixed.`);
if (_item.title === "破损" || _item.title === "不可修复")
details.stateArr[0].value = 1;
} else {
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1391", "details.stateArr[0].value :>> ", details.stateArr[0].value);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1476", "details.stateArr[0].value :>> ", details.stateArr[0].value);
if (_item.title === "在库")
return;
if (details.stateArr[0].value === 0 && _item.title === "破损" || details.stateArr[0].value === 0 && _item.title === "不可修复")
@@ -47149,7 +48163,7 @@ This will fail in production if not fixed.`);
_item[val.name] = Number(val.value);
});
}
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1423", "_item :>> ", _item);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1508", "_item :>> ", _item);
if (_item.questStatus !== 1)
details.scanNum++;
_item.questStatus = 1;
@@ -47367,7 +48381,7 @@ This will fail in production if not fixed.`);
if (Number(val.questStatus) !== 1)
return;
if (!val.isManuallyAdd && Number(val.cargoName) === 10) {
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1684", "1 :>> ", 1);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1769", "1 :>> ", 1);
submitData.questDetailIds.push(val.questDetailId);
if (!val.isChange)
return;
@@ -47472,9 +48486,9 @@ This will fail in production if not fixed.`);
}
submitData.questDetailList.push(_item);
});
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1812", "submitData :>> ", submitData);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1897", "submitData :>> ", submitData);
const res = await postWarehouseTaskAddDataInfo(submitData);
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1814", "res :>> ", res);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1899", "res :>> ", res);
const { code: code2 } = res;
if (code2 === 200) {
utils.ttsspke("盘点成功");
@@ -47484,7 +48498,7 @@ This will fail in production if not fixed.`);
}, 1e3);
}
} catch (err) {
- formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1825", "err :>> ", err);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1910", "err :>> ", err);
} finally {
uni.hideLoading();
}
@@ -47749,7 +48763,7 @@ This will fail in production if not fixed.`);
vue.Fragment,
{ key: item },
[
- vue.createCommentVNode(" 订制品 "),
+ vue.createCommentVNode(" 定制品 "),
vue.createElementVNode("view", {
class: vue.normalizeClass({
"main_render": true,
@@ -47796,7 +48810,8 @@ This will fail in production if not fixed.`);
vue.createCommentVNode(" 有数据 "),
vue.unref(tabBarCode) === 1 ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
- class: "main_render_item"
+ class: "main_render_item",
+ onClick: ($event) => handleShowDetails(item)
}, [
vue.createElementVNode(
"view",
@@ -47809,7 +48824,7 @@ This will fail in production if not fixed.`);
style: vue.normalizeStyle({ color: item.isManuallyAdd ? "#f00" : "#000" }),
onClick: ($event) => editOrderCode(item)
}, " 合同号: " + vue.toDisplayString(item.orderCode || "暂无数据"), 13, ["onClick"])
- ])) : vue.unref(tabBarCode) === 2 && Number(item.questTarget) === 2 ? (vue.openBlock(), vue.createElementBlock(
+ ], 8, ["onClick"])) : vue.unref(tabBarCode) === 2 && Number(item.questTarget) === 2 ? (vue.openBlock(), vue.createElementBlock(
vue.Fragment,
{ key: 1 },
[
@@ -48483,6 +49498,170 @@ This will fail in production if not fixed.`);
512
/* NEED_PATCH */
),
+ vue.createCommentVNode(" 弹出层 -- 详情 "),
+ vue.createVNode(
+ _component_PopUp,
+ {
+ ref_key: "popUp_Details",
+ ref: popUp_Details
+ },
+ {
+ default: vue.withCtx(() => [
+ vue.createElementVNode("view", { class: "popUpDetails_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "订单号:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.orderCode),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "popUpDetails_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "包条码:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.orderPackageCode),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "popUpDetails_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "批次号:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.incomingBatch),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "popUpDetails_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "库位:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.allocation),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "popUpDetails_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "托盘名称:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.trayName),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "托盘码:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.trayCode),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "popUpDetails_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "商场名称:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.marketName),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "品牌:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.brandName),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "popUpDetails_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "运单号:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.waybillNumber),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "一级品:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.firsts),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "popUpDetails_row" }, [
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "二级品:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.second),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "" }, [
+ vue.createElementVNode("text", null, "三级品:"),
+ vue.createTextVNode(),
+ vue.createElementVNode(
+ "text",
+ null,
+ vue.toDisplayString(details.detailsInfo.thirdProduct),
+ 1
+ /* TEXT */
+ )
+ ])
+ ])
+ ]),
+ _: 1
+ /* STABLE */
+ },
+ 512
+ /* NEED_PATCH */
+ ),
vue.createVNode(_component_saomiao2, {
ishidestop: vue.unref(scanState) !== 0
}, null, 8, ["ishidestop"])
@@ -51944,6 +53123,7 @@ This will fail in production if not fixed.`);
__definePage("pagesHome/pages/StowageListDetails/StowageListDetails", PagesHomePagesStowageListDetailsStowageListDetails);
__definePage("pagesHome/pages/RelayScanList/RelayScanList", PagesHomePagesRelayScanListRelayScanList);
__definePage("pagesHome/pages/codePlateBracket/codePlateBracket", PagesHomePagesCodePlateBracketCodePlateBracket);
+ __definePage("pagesHome/pages/PickUpLotList/PickUpLotList", PagesHomePagesPickUpLotListPickUpLotList);
__definePage("pagesHome/pages/ArrivalList/ArrivalList", PagesHomePagesArrivalListArrivalList);
__definePage("pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails", PagesHomePagesVehicleArrivalDetailsVehicleArrivalDetails);
__definePage("pagesHome/pages/SelfPickupScan/SelfPickupScan", PagesHomePagesSelfPickupScanSelfPickupScan);
@@ -51997,6 +53177,7 @@ This will fail in production if not fixed.`);
__definePage("pagesHome/pages/RelocationAllocationId/RelocationAllocationId", PagesHomePagesRelocationAllocationIdRelocationAllocationId);
__definePage("pagesHome/pages/orderDetails/orderDetails", PagesHomePagesOrderDetailsOrderDetails);
__definePage("pagesHome/pages/orderInquiry/orderInquiry", PagesHomePagesOrderInquiryOrderInquiry);
+ __definePage("pagesHome/pages/storageInquiry/storageInquiry", PagesHomePagesStorageInquiryStorageInquiry);
__definePage("pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails", PagesHomePagesCustomerTrayDetailsCustomerTrayDetails);
__definePage("pagesHome/pages/StockUpListZero/StockUpListZero", PagesHomePagesStockUpListZeroStockUpListZero);
__definePage("pagesHome/pages/SearchTray/SearchTray", PagesHomePagesSearchTraySearchTray);
diff --git a/unpackage/dist/dev/app-plus/manifest.json b/unpackage/dist/dev/app-plus/manifest.json
index da79087..fe24378 100644
--- a/unpackage/dist/dev/app-plus/manifest.json
+++ b/unpackage/dist/dev/app-plus/manifest.json
@@ -7,8 +7,8 @@
"id": "__UNI__EB22F37",
"name": "货无忧",
"version": {
- "name": "1.1.07",
- "code": 1107
+ "name": "1.1.08",
+ "code": 1108
},
"description": "",
"developer": {
diff --git a/unpackage/dist/dev/mp-weixin/compoment/tiplist/tiplist.wxss b/unpackage/dist/dev/mp-weixin/compoment/tiplist/tiplist.wxss
index 1e0efa8..b61d1fb 100644
--- a/unpackage/dist/dev/mp-weixin/compoment/tiplist/tiplist.wxss
+++ b/unpackage/dist/dev/mp-weixin/compoment/tiplist/tiplist.wxss
@@ -33,7 +33,7 @@
color: #f00;
}
.tpstitl.showTitle::after {
- content: "最少传入三张图片";
+ content: "最少传入一张图片";
margin-left: 20rpx;
color: #f00;
}
diff --git a/unpackage/dist/dev/mp-weixin/config/host.js b/unpackage/dist/dev/mp-weixin/config/host.js
index e57e12d..ddfeb51 100644
--- a/unpackage/dist/dev/mp-weixin/config/host.js
+++ b/unpackage/dist/dev/mp-weixin/config/host.js
@@ -1,5 +1,5 @@
"use strict";
-const devhost = "https://h5uapi.huitongys.com/";
+const devhost = "http://192.168.10.48:13000/";
const imghost = "";
const host = devhost;
const APPKEY = "h5u:h5u_secret";
diff --git a/unpackage/dist/dev/mp-weixin/pages/user/user.wxml b/unpackage/dist/dev/mp-weixin/pages/user/user.wxml
index 9f25632..b669839 100644
--- a/unpackage/dist/dev/mp-weixin/pages/user/user.wxml
+++ b/unpackage/dist/dev/mp-weixin/pages/user/user.wxml
@@ -1 +1 @@
-个人中心未登录{{d}}{{e}}-{{f}}{{item.b}} 退出登录 选择仓库{{item.a}}确认选择
\ No newline at end of file
+个人中心未登录{{d}}{{e}}-{{f}}{{item.b}} 退出登录 选择仓库{{item.a}}确认选择
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/user/user.wxss b/unpackage/dist/dev/mp-weixin/pages/user/user.wxss
index 4d92e30..fee0e90 100644
--- a/unpackage/dist/dev/mp-weixin/pages/user/user.wxss
+++ b/unpackage/dist/dev/mp-weixin/pages/user/user.wxss
@@ -262,4 +262,8 @@
width: 100%;
height: 400rpx;
background-color: #FA8C16da;
+}
+.profilePhoto {
+ background: #fff;
+ border-radius: 10rpx;
}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.js b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.js
index 1597b4b..a1e41a2 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.js
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.js
@@ -168,6 +168,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
});
}
async function initpage() {
+ details.listcheckindex = -1;
try {
let data = {
reservationId: details.items.id,
@@ -289,6 +290,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
reatchBootomStock();
}
async function scandata() {
+ let code = 0;
try {
let loadingId = common_vendor.index.getStorageSync("checkvehicle").id;
if (details.orderStatus == 1) {
@@ -300,7 +302,8 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
barcode: details.scancode
};
let res = await api_user.deliveryloadingscan(data);
- const { code, audio } = res;
+ const { audio } = res;
+ code = res.code;
if (code === 5e3) {
utils.ttsspke("不在本次计划, 是否继续装车");
tiplists.value.setdetails({
@@ -319,6 +322,9 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
barcode: details.scancode
};
const res2 = await api_user.postAbnormalTruckLoading(data2);
+ if (res2.code !== 200)
+ return;
+ basicContainer.value.startPullDownRefresh();
console.log("res :>> ", res2);
tiplists.value.setdetails({ isshow: false });
},
@@ -483,15 +489,16 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
o: common_vendor.f(item.distributionAppParcelListVOS, (ite, k1, i1) => {
return {
a: common_vendor.t(ite.orderPackageCode),
- b: "6197e305-9-" + i0 + "-" + i1 + "," + ("6197e305-8-" + i0 + "-" + i1),
- c: common_vendor.t(ite.thirdProduct),
- d: "6197e305-10-" + i0 + "-" + i1 + "," + ("6197e305-8-" + i0 + "-" + i1),
- e: common_vendor.t(ite.isScan),
- f: "6197e305-11-" + i0 + "-" + i1 + "," + ("6197e305-8-" + i0 + "-" + i1),
- g: common_vendor.t(ite.isAbnnormalSigningName || ite.isAbnormalLoadingName || "/"),
- h: "6197e305-12-" + i0 + "-" + i1 + "," + ("6197e305-8-" + i0 + "-" + i1),
- i: Number(ite.isAbnormalLoading) === 1 || Number(ite.isAbnnormalSigning) === 1 ? 1 : "",
- j: "6197e305-8-" + i0 + "-" + i1 + "," + ("6197e305-2-" + i0)
+ b: ite.orderPackageLoadingStatus !== "20" ? 1 : "",
+ c: "6197e305-9-" + i0 + "-" + i1 + "," + ("6197e305-8-" + i0 + "-" + i1),
+ d: common_vendor.t(ite.thirdProduct),
+ e: "6197e305-10-" + i0 + "-" + i1 + "," + ("6197e305-8-" + i0 + "-" + i1),
+ f: common_vendor.t(ite.isScan),
+ g: "6197e305-11-" + i0 + "-" + i1 + "," + ("6197e305-8-" + i0 + "-" + i1),
+ h: common_vendor.t(ite.isAbnnormalSigningName || ite.isAbnormalLoadingName || "/"),
+ i: "6197e305-12-" + i0 + "-" + i1 + "," + ("6197e305-8-" + i0 + "-" + i1),
+ j: Number(ite.isAbnormalLoading) === 1 || Number(ite.isAbnnormalSigning) === 1 ? 1 : "",
+ k: "6197e305-8-" + i0 + "-" + i1 + "," + ("6197e305-2-" + i0)
};
}),
p: common_vendor.p({
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.wxml b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.wxml
index 0970575..28ae38f 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.wxml
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.wxml
@@ -1 +1 @@
- 客户:{{a}} 录入包条码 备货是否完成:{{c}}装车是否完成:{{d}}订单总数{{e}}计划件数{{f}}装车件数{{g}}签收件数{{h}}齐套状态查询定制品零担库存品订单编号:{{item.b}}配送数:{{item.c}}已扫码数:{{item.d}}包条码:{{ite.a}}货物品类:{{ite.b}}扫描状态:{{ite.c}}{{item.h}}{{item.k}}订单编号:{{item.n}}产品名称:{{item.p}}计划数量:{{item.q}}装车数量:{{item.r}}{{item.t}}SKU:{{item.x}}物品:{{item.y}}规格:{{item.z}}备货状态:{{item.B}}二维码:{{item.C}}单位:{{item.D}}{{item.F}}
\ No newline at end of file
+ 客户:{{a}} 录入包条码 备货是否完成:{{c}}装车是否完成:{{d}}订单总数{{e}}计划件数{{f}}装车件数{{g}}签收件数{{h}}齐套状态查询定制品零担库存品订单编号:{{item.b}}配送数:{{item.c}}已扫码数:{{item.d}}包条码货物品类扫描状态异常状态{{ite.a}}{{ite.d}}{{ite.f}}{{ite.h}}{{item.w}}{{item.z}}订单编号:{{item.C}}产品名称:{{item.E}}计划数量:{{item.F}}装车数量:{{item.G}}{{item.I}}SKU:{{item.L}}物品:{{item.M}}规格:{{item.N}}备货状态:{{item.P}}二维码:{{item.Q}}单位:{{item.R}}{{item.T}}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.wxss b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.wxss
index 9139663..a9336d9 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.wxss
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.wxss
@@ -274,4 +274,8 @@
}
.uni-scroll-view.data-v-6197e305 {
overflow: hidden;
+}
+.isScan.data-v-6197e305 {
+ background: var(--subjectColor);
+ color: #fff;
}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerSign/CustomerSign.js b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerSign/CustomerSign.js
index eadca88..8b37da9 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerSign/CustomerSign.js
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerSign/CustomerSign.js
@@ -53,6 +53,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
details.authbuts = common_vendor.index.getStorageSync("authbuts") || [];
const tiplists = common_vendor.ref(null);
common_vendor.onLoad((op) => {
+ console.log("op.item :>> ", op.item);
details.items = JSON.parse(op.item);
details.id = JSON.parse(op.item).id;
});
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerSign/CustomerSign.wxml b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerSign/CustomerSign.wxml
index c0b6edd..de5eb38 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerSign/CustomerSign.wxml
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/CustomerSign/CustomerSign.wxml
@@ -1 +1 @@
-配车类型:{{b}}配车状态:{{c}}车牌号:{{d}}司机:{{e}}装卸班组:{{f}}备货是否完成:{{g}}配送客户数{{h}}订单总数{{i}}计划件数{{j}}装车数量{{k}}签收件数{{l}}客户:{{item.a}} {{item.b}}{{item.d}}订单总数{{item.e}}配送件数{{item.f}}扫描件数{{item.g}} 客户电话: {{item.h}} 客户地址: {{item.i}}{{item.k}}签收扫描上传签收图片 设置增值服务 批量签收
\ No newline at end of file
+配车类型:{{b}}配车状态:{{c}}车牌号:{{d}}司机:{{e}}装卸班组:{{f}}备货是否完成:{{g}}配送客户数{{h}}订单总数{{i}}计划件数{{j}}装车数量{{k}}签收件数{{l}}客户:{{item.a}} {{item.b}}{{item.d}}订单总数{{item.e}}计划件数{{item.f}}扫描件数{{item.g}} 客户电话: {{item.h}} 客户地址: {{item.i}}{{item.k}}签收扫描上传签收图片 设置增值服务 批量签收
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.js b/unpackage/dist/dev/mp-weixin/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.js
index 3978b81..462e4dc 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.js
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.js
@@ -109,13 +109,37 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}
}
function goCustomerOrdersDetails(item) {
+ const data = {
+ isstock: item.isstock,
+ consignee: item.consignee,
+ isload: item.isload,
+ ordNub: item.ordNub,
+ reservationNum: item.reservationNum,
+ signNub: item.signNub,
+ id: item.id
+ };
common_vendor.index.navigateTo({
- url: "/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails?item=" + JSON.stringify(item) + "&id=" + details.id
+ url: "/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails?item=" + JSON.stringify(data) + "&id=" + details.id
});
}
function goCustomerTrayDetails(item) {
+ const data = {
+ type_name: item.type_name,
+ deliStatus_name: item.deliStatus_name,
+ vehicleName: item.vehicleName,
+ driverName: item.driverName,
+ loadingTeamName: item.loadingTeamName,
+ isstock: item.isstock,
+ customersNumber: item.customersNumber,
+ orderNumber: item.orderNumber,
+ loadCusNub: item.loadCusNub,
+ loadOrdNub: item.loadOrdNub,
+ signNub: item.signNub,
+ signNubSr: item.signNubSr,
+ id: item.id
+ };
common_vendor.index.navigateTo({
- url: "/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails?item=" + JSON.stringify(item) + "&id=" + details.id
+ url: "/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails?item=" + JSON.stringify(data) + "&id=" + details.id
});
}
const { authbuts, items, datalist } = common_vendor.toRefs(details);
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/LoadingScan/LoadingScan.js b/unpackage/dist/dev/mp-weixin/pagesHome/pages/LoadingScan/LoadingScan.js
index e450150..b71ba3b 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/LoadingScan/LoadingScan.js
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/LoadingScan/LoadingScan.js
@@ -212,6 +212,21 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
return null;
}
async function goselscan(item) {
+ const jumpData = {
+ type_name: item.type_name,
+ deliStatus_name: item.deliStatus_name,
+ vehicleName: item.vehicleName,
+ driverName: item.driverName,
+ loadingTeamName: item.loadingTeamName,
+ isstock: item.isstock,
+ customersNumber: item.customersNumber,
+ orderNumber: item.orderNumber,
+ loadCusNub: item.loadCusNub,
+ loadOrdNub: item.loadOrdNub,
+ signNub: item.signNub,
+ signNubSr: item.signNubSr,
+ id: item.id
+ };
let data = {
deliveryId: item.id
};
@@ -219,7 +234,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
if (res.data.length == 1) {
common_vendor.index.setStorageSync("checkvehicle", res.data[0]);
common_vendor.index.navigateTo({
- url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item.id + "&item=" + JSON.stringify(item)
+ url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item.id + "&item=" + JSON.stringify(jumpData)
});
return;
}
@@ -254,7 +269,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
tiplists.value.setdetails({ isshow: false });
common_vendor.index.setStorageSync("checkvehicle", res.data[deta.checklist[0]]);
common_vendor.index.navigateTo({
- url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item.id + "&item=" + JSON.stringify(item)
+ url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item.id + "&item=" + JSON.stringify(jumpData)
});
},
cancel: (details2) => {
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.js b/unpackage/dist/dev/mp-weixin/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.js
index e05fe24..bd83d0c 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.js
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.js
@@ -59,7 +59,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
if (response.code !== 200)
return;
details.list = response.data.parcelList;
- details.detaobj = response.data;
+ details.detaobj = response.data || [];
let set = /* @__PURE__ */ new Set();
response.data.parcelList.map((item) => {
set.add(item.trayName);
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/StockUplist/StockUplist.js b/unpackage/dist/dev/mp-weixin/pagesHome/pages/StockUplist/StockUplist.js
index 34bc0b3..72d2df8 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/StockUplist/StockUplist.js
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/StockUplist/StockUplist.js
@@ -126,10 +126,6 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}
async function ckscanningCode(item) {
let content = "请扫描托盘码";
- if (!details.goodsStockupAllocationId) {
- content = "请先扫描库位码";
- return;
- }
details.isscan = item.taryLean;
details.trayId = item.trayId;
common_vendor.index.showToast({
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.js b/unpackage/dist/dev/mp-weixin/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.js
index 7e9bda2..a3d9647 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.js
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.js
@@ -140,6 +140,8 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
});
}
async function scandata() {
+ if (Number(details.planNum) === Number(details.scanNum))
+ return utils_utils.utils.handleToast("该客户已齐套, 请返回上一级页面");
if (Number(details.status) !== 0)
return;
let data = {
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.js b/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.js
index 30a5b3c..6fd12e1 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.js
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.js
@@ -61,32 +61,20 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
orderType: "",
inputtxt: "",
listcheckindex: -1,
- scrollHeight: ""
+ scrollHeight: "",
+ /** 计划件数 */
+ Plannednub: 0,
+ /** 签收数 */
+ signNub: 0
});
const tiplists = common_vendor.ref(null);
const tip = common_vendor.ref(null);
- const Plannednub = common_vendor.computed(() => {
- let num = 0;
- num += details.orderArr.reduce((curr, item) => curr + item.reservationNum, 0);
- num += details.zeroArr.reduce((curr, item) => curr + item.reservationNum, 0);
- num += details.stockArr.reduce((curr, item) => curr + item.reservationNum, 0);
- return num;
- });
const ordNub = common_vendor.computed(() => {
let num = 0;
num += details.orderArr.length;
num += details.zeroArr.length;
return num;
});
- const signNub = common_vendor.computed(() => {
- let num = 0;
- details.datalist.map((item) => {
- if (item.signforNub) {
- num += item.signforNub;
- }
- });
- return num;
- });
common_vendor.onLoad(async (op) => {
details.items = JSON.parse(op.item);
details.id = JSON.parse(op.item).id;
@@ -100,14 +88,16 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
orderCode: details.inputtxt
};
details.datalist = [];
- let response = null;
- response = await api_user.signfororder(data);
+ const promise1 = api_user.signfororder(data, { isShowLoading: false });
+ const promise2 = api_user.signforinventory(data, { isShowLoading: false });
+ common_vendor.index.showLoading();
+ const [response, response1] = await Promise.all([promise1, promise2]);
if (response.code !== 200)
return;
details.zeroArr = [];
details.orderArr = [];
- if (response.data && response.data.records)
- response.data.records.forEach((val) => {
+ if (response.data && response.data)
+ response.data.forEach((val) => {
if (val.isZero === "1")
return details.zeroArr.push(val);
val.abnormalSignature = 0;
@@ -120,13 +110,11 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
});
details.orderArr.push(val);
});
- let response1 = await api_user.signforinventory(data);
if (response1.code !== 200)
return;
if (response1.data)
- details.stockArr = response1.data.records || [];
- console.log("response :>> ", response);
- console.log("response1 :>> ", response1);
+ details.stockArr = response1.data || [];
+ computedNum();
if (details.orderStatus === 1)
details.datalist = details.orderArr;
else if (details.orderStatus === 2)
@@ -135,6 +123,9 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
details.datalist = details.stockArr;
} catch (err) {
console.log("err :>> ", err);
+ } finally {
+ await common_vendor.nextTick$1();
+ common_vendor.index.hideLoading();
}
});
common_vendor.onMounted(async () => {
@@ -149,12 +140,18 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode
});
}
- common_vendor.onPullDownRefresh(() => {
- const timer = setTimeout(() => {
- initpage();
- common_vendor.index.stopPullDownRefresh();
- clearTimeout(timer);
- }, 500);
+ function computedNum() {
+ const _arr = [...details.orderArr, ...details.zeroArr, ...details.stockArr];
+ details.Plannednub = 0;
+ details.signNub = 0;
+ for (let item of _arr) {
+ details.Plannednub += item.reservationNum;
+ details.signNub += item.signforNub;
+ }
+ }
+ common_vendor.onPullDownRefresh(async () => {
+ await initpage();
+ common_vendor.index.stopPullDownRefresh();
});
async function scandata() {
let data = {
@@ -185,6 +182,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
title: response2.msg,
icon: "none"
});
+ initpage();
tip.value.setdetails({ isshow: false });
},
cancel: () => {
@@ -194,6 +192,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
tip.value.setdetails({ isshow: false });
}
});
+ return;
} else {
common_vendor.index.showToast({
title: response.msg,
@@ -221,6 +220,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
title: response2.msg,
icon: "none"
});
+ initpage();
tip.value.setdetails({ isshow: false });
},
cancel: () => {
@@ -230,6 +230,7 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
tip.value.setdetails({ isshow: false });
}
});
+ return;
} else {
common_vendor.index.showToast({
title: response.msg,
@@ -270,45 +271,53 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
}
}
async function initpage() {
- let data = {
- reservationId: details.id,
- completecode: details.orderType,
- orderCode: details.inputtxt
- };
- details.datalist = [];
- let response = null;
- if (details.orderStatus == 1 || details.orderStatus === 2) {
- response = await api_user.signfororder(data);
- if (response.code !== 200)
- return;
- details.zeroArr = [];
- details.orderArr = [];
- response.data.records.forEach((val) => {
- if (val.isZero === "1")
- return details.zeroArr.push(val);
- val.abnormalSignature = 0;
- val.abnormalLoading = 0;
- val.distributionAppParcelListVOS.forEach((value) => {
- if (value.isAbnnormalSigning === 1)
- val.abnormalSignature += 1;
- if (value.isAbnormalLoading === 1)
- val.abnormalLoading += 1;
+ try {
+ details.listcheckindex = -1;
+ let data = {
+ reservationId: details.id,
+ completecode: details.orderType,
+ orderCode: details.inputtxt
+ };
+ details.datalist = [];
+ let response = null;
+ if (details.orderStatus == 1 || details.orderStatus === 2) {
+ response = await api_user.signfororder(data);
+ if (response.code !== 200)
+ return;
+ details.zeroArr = [];
+ details.orderArr = [];
+ response.data.forEach((val) => {
+ if (val.isZero === "1")
+ return details.zeroArr.push(val);
+ val.abnormalSignature = 0;
+ val.abnormalLoading = 0;
+ val.distributionAppParcelListVOS.forEach((value) => {
+ if (value.isAbnnormalSigning === 1)
+ val.abnormalSignature += 1;
+ if (value.isAbnormalLoading === 1)
+ val.abnormalLoading += 1;
+ });
+ console.log("val :>> ", val);
+ details.orderArr.push(val);
});
- console.log("val :>> ", val);
- details.orderArr.push(val);
- });
- } else if (details.orderStatus == 3) {
- response = await api_user.signforinventory(data);
- if (response.code !== 200)
- return;
- details.stockArr = response.data.records || [];
+ } else if (details.orderStatus == 3) {
+ response = await api_user.signforinventory(data);
+ if (response.code !== 200)
+ return;
+ details.stockArr = response.data || [];
+ }
+ if (details.orderStatus === 1)
+ details.datalist = details.orderArr;
+ else if (details.orderStatus === 2)
+ details.datalist = details.zeroArr;
+ else
+ details.datalist = details.stockArr;
+ } catch (err) {
+ console.log("err :>> ", err);
+ } finally {
+ computedNum();
+ return null;
}
- if (details.orderStatus === 1)
- details.datalist = details.orderArr;
- else if (details.orderStatus === 2)
- details.datalist = details.zeroArr;
- else
- details.datalist = details.stockArr;
}
function setcheckindex(index) {
if (details.listcheckindex == index) {
@@ -425,9 +434,9 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
d: common_vendor.t(common_vendor.unref(items).deliveryPhone),
e: common_vendor.o(showsdqs),
f: common_vendor.t(common_vendor.unref(ordNub)),
- g: common_vendor.t(common_vendor.unref(Plannednub)),
+ g: common_vendor.t(common_vendor.unref(details).Plannednub),
h: common_vendor.t(common_vendor.unref(items).reservationNum),
- i: common_vendor.t(common_vendor.unref(signNub)),
+ i: common_vendor.t(common_vendor.unref(details).signNub),
j: common_vendor.o(checktype),
k: common_vendor.p({
data: common_vendor.unref(typearr),
@@ -453,78 +462,78 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
c: common_vendor.t(item.reservationNum),
d: common_vendor.t(item.loadingNub),
e: common_vendor.t(item.signforNub),
- f: common_vendor.t(item.reservationNum),
- g: common_vendor.t(item.abnormalLoading),
- h: common_vendor.t(item.abnormalSignature),
- i: common_vendor.unref(listcheckindex) == index
+ f: common_vendor.t(item.abnormalLoading),
+ g: common_vendor.t(item.abnormalSignature),
+ h: common_vendor.unref(listcheckindex) == index
}, common_vendor.unref(listcheckindex) == index ? {
- j: "fb393026-4-" + i0 + "," + ("fb393026-3-" + i0),
- k: common_vendor.p({
+ i: "fb393026-4-" + i0 + "," + ("fb393026-3-" + i0),
+ j: common_vendor.p({
align: "left"
}),
- l: "fb393026-5-" + i0 + "," + ("fb393026-3-" + i0),
- m: common_vendor.p({
+ k: "fb393026-5-" + i0 + "," + ("fb393026-3-" + i0),
+ l: common_vendor.p({
align: "left"
}),
- n: "fb393026-6-" + i0 + "," + ("fb393026-3-" + i0),
- o: common_vendor.p({
+ m: "fb393026-6-" + i0 + "," + ("fb393026-3-" + i0),
+ n: common_vendor.p({
align: "left"
}),
- p: "fb393026-7-" + i0 + "," + ("fb393026-3-" + i0),
- q: common_vendor.p({
+ o: "fb393026-7-" + i0 + "," + ("fb393026-3-" + i0),
+ p: common_vendor.p({
align: "center"
}),
- r: "fb393026-3-" + i0 + "," + ("fb393026-2-" + i0),
- s: common_vendor.f(item.distributionAppParcelListVOS, (ite, k1, i1) => {
+ q: "fb393026-3-" + i0 + "," + ("fb393026-2-" + i0),
+ r: common_vendor.f(item.distributionAppParcelListVOS, (ite, k1, i1) => {
return {
a: common_vendor.t(ite.orderPackageCode),
- b: "fb393026-9-" + i0 + "-" + i1 + "," + ("fb393026-8-" + i0 + "-" + i1),
- c: common_vendor.t(ite.thirdProduct),
- d: "fb393026-10-" + i0 + "-" + i1 + "," + ("fb393026-8-" + i0 + "-" + i1),
- e: common_vendor.t(ite.orderPackageStatus === "70" ? "已扫" : "未扫"),
- f: "fb393026-11-" + i0 + "-" + i1 + "," + ("fb393026-8-" + i0 + "-" + i1),
- g: common_vendor.t(ite.isAbnnormalSigningName || ite.isAbnormalLoadingName || "/"),
- h: "fb393026-12-" + i0 + "-" + i1 + "," + ("fb393026-8-" + i0 + "-" + i1),
- i: Number(ite.isAbnormalLoading) === 1 || Number(ite.isAbnnormalSigning) === 1 ? 1 : "",
- j: "fb393026-8-" + i0 + "-" + i1 + "," + ("fb393026-2-" + i0)
+ b: ite.orderPackageStatus !== "70" ? 1 : "",
+ c: "fb393026-9-" + i0 + "-" + i1 + "," + ("fb393026-8-" + i0 + "-" + i1),
+ d: common_vendor.t(ite.thirdProduct),
+ e: "fb393026-10-" + i0 + "-" + i1 + "," + ("fb393026-8-" + i0 + "-" + i1),
+ f: common_vendor.t(ite.orderPackageStatus === "70" ? "已扫" : "未扫"),
+ g: "fb393026-11-" + i0 + "-" + i1 + "," + ("fb393026-8-" + i0 + "-" + i1),
+ h: common_vendor.t(ite.isAbnnormalSigningName || ite.isAbnormalLoadingName || "/"),
+ i: "fb393026-12-" + i0 + "-" + i1 + "," + ("fb393026-8-" + i0 + "-" + i1),
+ j: Number(ite.isAbnormalLoading) === 1 || Number(ite.isAbnnormalSigning) === 1 ? 1 : "",
+ k: "fb393026-8-" + i0 + "-" + i1 + "," + ("fb393026-2-" + i0)
};
}),
- t: common_vendor.p({
+ s: common_vendor.p({
align: "center"
}),
- v: common_vendor.sr("uniTable1", "fb393026-2-" + i0, {
+ t: common_vendor.sr("uniTable1", "fb393026-2-" + i0, {
"f": 1
}),
- w: common_vendor.o(() => {
+ v: common_vendor.o(() => {
}),
- x: "fb393026-2-" + i0,
- y: common_vendor.p({
+ w: "fb393026-2-" + i0,
+ x: common_vendor.p({
border: true,
emptyText: "暂无更多数据"
})
} : {}, {
- z: common_vendor.t(item.signforNub == 0 ? "未扫" : item.signforNub == item.reservationNum ? "齐套" : "部分扫"),
- A: common_vendor.n(item.signforNub == 0 ? "tip tp2" : item.signforNub == item.reservationNum ? "tip tp1" : "tip tp3"),
- B: common_vendor.o(($event) => setcheckindex(index))
+ y: common_vendor.t(item.signforNub == 0 ? "未扫" : item.signforNub == item.reservationNum ? "齐套" : "部分扫"),
+ z: common_vendor.n(item.signforNub == 0 ? "tip tp2" : item.signforNub == item.reservationNum ? "tip tp1" : "tip tp3"),
+ A: common_vendor.o(($event) => setcheckindex(index))
}) : {}, common_vendor.unref(orderStatus) === 2 ? common_vendor.e({
- C: common_vendor.o(($event) => goorderdetail(item)),
- D: common_vendor.t(item.orderCode),
- E: common_vendor.o(($event) => goorderdetail(item)),
- F: common_vendor.t(item.descriptionGoods),
- G: common_vendor.t(item.reservationNum),
- H: common_vendor.t(item.loadingNub),
- I: item.complete
+ B: common_vendor.o(($event) => goorderdetail(item)),
+ C: common_vendor.t(item.orderCode),
+ D: common_vendor.o(($event) => goorderdetail(item)),
+ E: common_vendor.t(item.descriptionGoods),
+ F: common_vendor.t(item.reservationNum),
+ G: common_vendor.t(item.loadingNub),
+ H: item.complete
}, item.complete ? {
- J: common_vendor.t(item.complete),
- K: common_vendor.n(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3")
+ I: common_vendor.t(item.complete),
+ J: common_vendor.n(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3")
} : {}, {
- L: common_vendor.o(($event) => checkphon(item, index))
+ K: common_vendor.o(($event) => checkphon(item, index))
}) : {}, common_vendor.unref(orderStatus) === 3 ? {
- M: common_vendor.t(item.sku),
- N: common_vendor.t(item.descriptionGoods),
- O: common_vendor.t(item.specification),
- P: common_vendor.t(item.logpmUnit),
- Q: common_vendor.o(($event) => setcheckindex(index))
+ L: common_vendor.t(item.sku),
+ M: common_vendor.t(item.descriptionGoods),
+ N: common_vendor.t(item.specification),
+ O: common_vendor.t(item.logpmUnit),
+ P: common_vendor.o(($event) => setcheckindex(index))
} : {});
}),
w: common_vendor.unref(orderStatus) === 1,
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.wxml b/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.wxml
index 34cc710..cce89b0 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.wxml
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.wxml
@@ -1 +1 @@
-客户:{{b}}地址:{{c}}电话:{{d}} 录入包条码 订单总数{{f}}计划件数{{g}}配送件数{{h}}签收件数{{i}}齐套状态查询定制品零担库存品订单编号:{{item.b}}总数:{{item.c}}计划:{{item.d}}装车:{{item.e}}签收:{{item.f}}包条码:{{ite.a}}货物品类:{{ite.b}}扫描状态:{{ite.c}}{{item.i}}订单编号:{{item.m}}产品名称:{{item.o}}计划签收:{{item.p}}实际签收:{{item.q}}{{item.s}}SKU:{{item.w}}物品:{{item.x}}规格:{{item.y}}单位:{{item.z}}
\ No newline at end of file
+客户:{{b}}地址:{{c}}电话:{{d}} 录入包条码 订单总数{{f}}计划件数{{g}}配送件数{{h}}签收件数{{i}}齐套状态查询定制品零担库存品订单编号:{{item.b}}计划:{{item.c}}装车:{{item.d}}签收:{{item.e}}异常装车:{{item.f}}异常签收:{{item.g}}包条码货物品类扫描状态异常状态{{ite.a}}{{ite.d}}{{ite.f}}{{ite.h}}{{item.y}}订单编号:{{item.C}}产品名称:{{item.E}}计划签收:{{item.F}}实际签收:{{item.G}}{{item.I}}SKU:{{item.L}}物品:{{item.M}}规格:{{item.N}}单位:{{item.O}}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.wxss b/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.wxss
index 0618f26..2b941c3 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.wxss
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/signOrderScan/signOrderScan.wxss
@@ -250,6 +250,10 @@
.active td.data-v-fb393026 {
color: #fff;
}
+.isScan.data-v-fb393026 {
+ background: var(--subjectColor);
+ color: #fff;
+}
.uni-table .active.data-v-fb393026:hover {
background: #ff4344 !important;
}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pagesHome/pages/signinScan/signinScan.js b/unpackage/dist/dev/mp-weixin/pagesHome/pages/signinScan/signinScan.js
index 9e350b1..e5710a9 100644
--- a/unpackage/dist/dev/mp-weixin/pagesHome/pages/signinScan/signinScan.js
+++ b/unpackage/dist/dev/mp-weixin/pagesHome/pages/signinScan/signinScan.js
@@ -122,14 +122,41 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
details.show = value;
}
function gocustomersign(item) {
+ console.log("item :>> ", item);
+ const data = {
+ type_name: item.type_name,
+ deliStatus_name: item.deliStatus_name,
+ vehicleName: item.vehicleName,
+ driverName: item.driverName,
+ loadingTeamName: item.loadingTeamName,
+ isstock: item.isstock,
+ customersNumber: item.customersNumber,
+ orderNumber: item.orderNumber,
+ id: item.id
+ };
common_vendor.index.navigateTo({
- url: "/pagesHome/pages/CustomerSign/CustomerSign?item=" + JSON.stringify(item)
+ url: "/pagesHome/pages/CustomerSign/CustomerSign?item=" + JSON.stringify(data)
});
}
function goSignDetailScan(item) {
console.log("item :>> ", item);
+ const data = {
+ type_name: item.type_name,
+ deliStatus_name: item.deliStatus_name,
+ vehicleName: item.vehicleName,
+ driverName: item.driverName,
+ loadingTeamName: item.loadingTeamName,
+ isstock: item.isstock,
+ customersNumber: item.customersNumber,
+ orderNumber: item.orderNumber,
+ loadCusNub: item.loadCusNub,
+ loadOrdNub: item.loadOrdNub,
+ signNub: item.signNub,
+ signNubSr: item.signNubSr,
+ id: item.id
+ };
common_vendor.index.navigateTo({
- url: "/pagesHome/pages/SignDetailScan/SignDetailScan?item=" + JSON.stringify(item)
+ url: "/pagesHome/pages/SignDetailScan/SignDetailScan?item=" + JSON.stringify(data)
});
}
function cleartime() {
diff --git a/unpackage/dist/dev/mp-weixin/utils/request.js b/unpackage/dist/dev/mp-weixin/utils/request.js
index 4fe1cea..5b078fb 100644
--- a/unpackage/dist/dev/mp-weixin/utils/request.js
+++ b/unpackage/dist/dev/mp-weixin/utils/request.js
@@ -192,7 +192,8 @@ const HandleRequest = (params, key, loadingObj) => {
utils_functions.api.error("请检查是否连接到无线网络");
}).finally(async (res) => {
await common_vendor.nextTick$1();
- common_vendor.index.hideLoading();
+ if (loadingObj.isShowLoading !== false)
+ common_vendor.index.hideLoading();
});
});
};