diff --git a/App.vue b/App.vue
index c07f033..99a91b4 100644
--- a/App.vue
+++ b/App.vue
@@ -7,6 +7,8 @@
import {
inject
} from "vue"
+ // 引入水印
+ import watermark from '@/utils/watermark.js'
export default {
setup() {
onLaunch(() => {
@@ -15,17 +17,12 @@
console.log(utils);
utils.inittts()
utils.setting()
- // setTimeout(()=>{
- // utils.ttsspke('12313123')
- // },5000)
+
// #endif
- // setTimeout(()=>{
- // uni.hideTabBar({})
- // },1200)
console.log('onLaunch');
-
+ // watermark.set('/static/check.png')
})
-
+
onShow(() => {
console.log('onshow');
@@ -40,9 +37,11 @@
\ No newline at end of file
diff --git a/compoment/saomiao2.vue b/compoment/saomiao2.vue
index 53874ff..8e278a4 100644
--- a/compoment/saomiao2.vue
+++ b/compoment/saomiao2.vue
@@ -9,10 +9,14 @@
onHide,
onUnload
} from '@dcloudio/uni-app'
+ // import { storeToRefs } from 'pinia';
import {
reactive,
defineProps
} from "vue";
+ // import usePdaStore from '../store/uaePdaStore';
+ // const pdaStore = usePdaStore()
+ // const { pdaBroadcas } = storeToRefs(pdaStore)
let details = reactive({
activity: null,
receiver: null,
@@ -41,18 +45,44 @@
// console.log('扫描的--------------onUnload');
})
+ // uni.getSystemInfoSync().deviceBrand
function initScan() {
+ const pdaBroadcastList = {
+ 'seuic': {
+ // 广播动作
+ broadcastAction: 'com.android.server.scannerservice.broadcast',
+ // 广播标签
+ broadcastTag: 'scannerdata'
+ },
+ 'ubx': {
+ // 广播动作
+ broadcastAction: 'android.intent.ACTION_DECODE_DATA',
+ // 广播标签
+ broadcastTag: 'barcode_string'
+ }
+ }
// #ifdef APP
+ console.log('广播')
if (plus) {
+ console.log('getDeviceBrand() :>> ', uni.getSystemInfoSync());
+ const { brand } = uni.getSystemInfoSync()
+ console.log('进入')
details.activity = plus.android.runtimeMainActivity(); //获取activity
+ console.log('details.activity :>> ', details.activity);
var IntentFilter = (plus.android.importClass('android.content.IntentFilter') as any);
+ // console.log('IntentFilter :>> ', IntentFilter);
details.intentFilter = new IntentFilter();
- details.intentFilter.addAction('com.android.server.scannerservice.broadcast') // 换你的广播动作
+ // 检测PDA厂家信息, 配置不同的广播动作
+ details.intentFilter.addAction(pdaBroadcastList[brand].broadcastAction) // 换你的广播动作
+ // details.intentFilter.addAction('com.android.server.scannerservice.broadcast') // 换你的广播动作
details.receiver = plus.android.implements('io.dcloud.feature.internal.reflect.BroadcastReceiver', {
onReceive: function (context, intent) {
+ console.log('111 :>> ', 111);
console.log("intent", intent)
plus.android.importClass(intent);
- let content = intent.getStringExtra('scannerdata'); // 换你的广播标签
+ // Pinia控制广播标签
+ let content = intent.getStringExtra(pdaBroadcastList[brand].broadcastTag); // 换你的广播标签
+ // let content = intent.getStringExtra('scannerdata'); // 换你的广播标签
uni.$emit('scancodedate', content.replace(/\n/g, ""))
}
});
diff --git a/compoment/tiplist/tiplist.vue b/compoment/tiplist/tiplist.vue
index 11f8434..b7d5408 100644
--- a/compoment/tiplist/tiplist.vue
+++ b/compoment/tiplist/tiplist.vue
@@ -264,6 +264,7 @@
}
}
function checkitem(index : number) {
+ console.log('123 :>> ', 123);
if (details.isonecheck) {
if (details.checklist.indexOf(index) == -1) {
details.checklist = [index]
@@ -272,6 +273,7 @@
}
return
}
+ console.log('222 :>> ', 222);
if (details.checklist.indexOf(index) == -1) {
details.checklist.push(index)
} else {
@@ -329,13 +331,14 @@
});
}
function checkall() {
+ console.log('111 :>> ', 111);
details.list.map((item, index) => {
details.checklist.push(index)
})
}
function removeall() {
+ console.log('111 :>> ', 111);
details.checklist = []
-
}
// 复选框全选
@@ -385,6 +388,8 @@
if (item.value <= 0 || isNaN(item.value)) item.value = 0
if (item.value >= maxNum) item.value = maxNum
isInputN = null
+ // 清除定时器
+ clearTimeout(isInputN)
}, 500)
}
@@ -397,6 +402,7 @@
item.value = parseInt(item.value)
if (item.value <= item.minNum || isNaN(item.value)) item.value = item.minNum
if (item.value >= item.maxNum) item.value = item.maxNum
+ clearTimeout(isInput)
}, 300)
}
@@ -414,6 +420,7 @@
console.log('res :>> ', res);
const { code } = res
if (code === 200) details.materialName = res.data
+ clearTimeout(_atn)
}, 1000)
}
diff --git a/config/host.js b/config/host.js
index c9eb660..9392d3c 100644
--- a/config/host.js
+++ b/config/host.js
@@ -8,9 +8,9 @@
// lmy
// const devhost = 'http://192.168.10.123:8889/'
// zhy
-const devhost = 'http://192.168.10.48:8888/'
+// const devhost = 'http://192.168.10.48:8888/'
// tjj
-// const devhost = 'http://192.168.10.29:13000/'
+const devhost = 'http://192.168.10.29:13000/'
// cyz
// const devhost = 'http://192.168.10.75:8777/'
// 正式
diff --git a/manifest.json b/manifest.json
index fc5b4b5..52d6fbe 100644
--- a/manifest.json
+++ b/manifest.json
@@ -2,8 +2,8 @@
"name" : "货无忧",
"appid" : "__UNI__EB22F37",
"description" : "",
- "versionName" : "1.0.16",
- "versionCode" : 1016,
+ "versionName" : "1.0.17",
+ "versionCode" : 1017,
"transformPx" : false,
/* 5+App特有相关 */
"app-plus" : {
diff --git a/pages.json b/pages.json
index fbcb6ba..5b96d15 100644
--- a/pages.json
+++ b/pages.json
@@ -1076,24 +1076,42 @@
{
"root": "pagesUser",
"pages": [{
- "path": "pages/about/about",
- "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/about/about",
+ "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/systemSettings/systemSettings",
+ "style": {
+ "navigationBarTitleText": "系统设置",
+ "enablePullDownRefresh": true,
+ "onReachBottomDistance": 1,
+ "navigationStyle": "custom",
+ "app-plus": {
+ "animationDuration": 300,
+ "animationType": "zoom-fade-out",
+ "pullToRefresh": {
+ "support": true,
+ "color": "#d3832a", //小圈圈的颜色
+ "style": "circle" //小圈圈的样式
+ }
}
}
}
-
- }]
+ ]
},
{
"root": "pagesTask",
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 4daa0d9..1debf26 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -317,12 +317,13 @@
// 下拉刷新
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
init()
initbuts()
// 关闭刷新动画
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
})
diff --git a/pages/login/login.vue b/pages/login/login.vue
index 78aafa3..45db016 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -95,19 +95,21 @@
}
})
onShow(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
settips()
+ clearTimeout(timer)
}, 2000)
})
// 下拉刷新
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
details.username = ''
details.tenantId = ''
details.password = ''
// 关闭刷新动画
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
})
diff --git a/pages/news/news.vue b/pages/news/news.vue
index f0c827d..0de1fa3 100644
--- a/pages/news/news.vue
+++ b/pages/news/news.vue
@@ -19,10 +19,11 @@
// 下拉刷新
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
iptis.value = ('http://192.168.10.75:8777/')
// 关闭刷新动画
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
})
diff --git a/pages/reportForms/reportForms.vue b/pages/reportForms/reportForms.vue
index 33e6908..c0e4f23 100644
--- a/pages/reportForms/reportForms.vue
+++ b/pages/reportForms/reportForms.vue
@@ -11,9 +11,10 @@
// 下拉刷新
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
// 关闭刷新动画
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
})
diff --git a/pages/taskList/taskList.vue b/pages/taskList/taskList.vue
index 96368a8..6c029e0 100644
--- a/pages/taskList/taskList.vue
+++ b/pages/taskList/taskList.vue
@@ -67,9 +67,10 @@
})
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
// 关闭刷新动画
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
})
diff --git a/pages/user/user.vue b/pages/user/user.vue
index 909814a..8da210e 100644
--- a/pages/user/user.vue
+++ b/pages/user/user.vue
@@ -97,10 +97,10 @@
// 下拉刷新
onPullDownRefresh(() => {
- setTimeout(() => {
-
+ const timer = setTimeout(() => {
// 关闭刷新动画
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
})
@@ -144,8 +144,15 @@
}
function checkitem(item) {
if (item.type == 1) {
-
- } else if (item.type == 5) {
+ }
+ // 系统设置
+ else if (item.type == 3) {
+ uni.navigateTo({
+ url: '/pagesUser/pages/systemSettings/systemSettings'
+ })
+ }
+ // 关于我们
+ else if (item.type == 5) {
uni.navigateTo({
url: '/pagesUser/pages/about/about'
})
@@ -173,7 +180,7 @@
// 获取版本信息
// let version = await utils.getversion()
let version = {
- version: '1.0.16',
+ version: '1.0.17',
pkName: 'com.hwy.pda'
}
console.log("version 版本>>>>", version)
diff --git a/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue b/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue
index c29d217..e37a111 100644
--- a/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue
+++ b/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue
@@ -55,7 +55,7 @@
库存品
-
+
@@ -125,16 +125,24 @@
物品:{{item.descriptionGoods}}
- 规格:{{item.specification}}
+ 规格:{{item.cargoNorms}}
- 单位:{{item.logpmUnit}}
-
+
+
+ 备货状态:{{item.signingStatusName}}
+
+
+ 二维码:{{item.stockPackageCode || '暂无数据'}}
+
+
+ 单位:{{item.cargoUnit}}
+
+
+ {{item.loadingStatusName}}
-
-
@@ -156,10 +164,11 @@
onLoad,
onShow,
onHide,
- onUnload
+ onUnload,
+ onPullDownRefresh
} from '@dcloudio/uni-app'
import cusSelects from '@/compoment/cus-selects-fan/cus-selects-fan.vue'
- import { computed, inject, reactive, ref, toRefs, watchEffect } from "vue";
+ import { computed, inject, reactive, ref, toRefs, } from "vue";
const utils = inject('utils') as any
let details = reactive({
schanvalue: '',
@@ -188,14 +197,56 @@
orderType: 0,
inputtxt: '',
listcheckindex: -1,
- isscan: false
+ isscan: false,
+ order: {
+ page: {
+ size: 10,
+ current: 1,
+ },
+ // 分页总页数
+ pages: 1,
+ data: []
+ },
+ zero: {
+ page: {
+ size: 10,
+ current: 1,
+ },
+ // 分页总页数
+ pages: 1,
+ data: []
+ },
+ stock: {
+ page: {
+ size: 10,
+ current: 1,
+ },
+ // 分页总页数
+ pages: 1,
+ data: []
+ }
})
const tiplists = ref(null)
- onLoad(async (op) => {
+ onLoad((op) => {
details.items = JSON.parse(op.item)
details.id = op.id
- console.log('details.items :>> ', details.items);
+ })
+ function goorderdetail(item) {
+ uni.navigateTo({
+ url: '/pagesHome/pages/orderDetails/orderDetails?orderCode=' + item.orderCode
+ })
+ }
+ onShow(async () => {
+ uni.$on('scancodedate', function (code) {
+ if (code) {
+ console.log('code', code);
+ details.scancode = code
+ details.isscan = true
+ scandata()
+ }
+ })
+ // 请求页面
let data = {
reservationId: details.items.id,
completecode: details.orderType,
@@ -205,53 +256,56 @@
// 零担和定制品
let response = null
response = await deliveryorder(data)
- details.zeroArr = []
- details.orderArr = []
- response.data.records.forEach(val => {
- // 零担订单
- if (val.isZero === '1') return details.zeroArr.push(val)
- details.orderArr.push(val)
- })
+ details.zero.data = []
+ details.order.data = []
+ if (response.data) {
+ response.data.forEach(val => {
+ // 零担订单
+ if (val.isZero === '1') return details.zero.data.push(val)
+ details.order.data.push(val)
+ })
+ }
// 库存品
let response1 = await signforinventory(data)
- details.stockArr = response1.data.records || []
+ details.stock.data = response1.data || []
console.log('response :>> ', response);
// 定制品
- if (details.orderStatus === 1) details.datalist = details.orderArr
+ if (details.orderStatus === 1) details.datalist = details.order.data
// 零担
- else if (details.orderStatus === 2) details.datalist = details.zeroArr
+ else if (details.orderStatus === 2) details.datalist = details.zero.data
// 库存品
- else details.datalist = details.stockArr
-
- console.log('details.stockArr :>> ', details.stockArr);
- })
- function goorderdetail(item) {
- uni.navigateTo({
- url: '/pagesHome/pages/orderDetails/orderDetails?orderCode=' + item.orderCode
- })
- }
- onShow(() => {
- uni.$on('scancodedate', function (code) {
- if (code) {
- console.log('code', code);
- details.scancode = code
- details.isscan = true
- scandata()
- }
- })
- // initpage()
+ else details.datalist = details.stock.data
})
onHide(() => {
uni.$off('scancodedate')
})
+ // 下拉刷新
+ onPullDownRefresh(() => {
+ details.datalist = []
+ details.order.page.current = 1
+ details.zero.page.current = 1
+ details.stock.page.current = 1
+ const timer = setTimeout(async () => {
+ await initpage()
+
+ // 关闭下拉动画
+ uni.stopPullDownRefresh()
+ // 清除定时器
+ clearTimeout(timer)
+ }, 1000)
+ })
+
const loadingNub = computed(() => {
// 计算三种品类的装车件数和
let num = 0
- num += details.orderArr.reduce((curr, item) => curr + item.loadingNub, 0)
- num += details.zeroArr.reduce((curr, item) => curr + item.loadingNub, 0)
- num += details.stockArr.reduce((curr, item) => curr + item.loadingNub, 0)
+ num += details.order.data.reduce((curr, item) => curr + item.loadingNub, 0)
+ num += details.zero.data.reduce((curr, item) => curr + item.loadingNub, 0)
+ num += details.stock.data.reduce((curr, item) => {
+ if (item.loadingStatusName !== '未装车') return curr += 1
+ return curr
+ }, 0)
return num
})
@@ -277,36 +331,68 @@
}
async function initpage() {
- let data = {
- reservationId: details.items.id,
- completecode: details.orderType,
- orderCode: details.inputtxt
+ try {
+ let data = {
+ reservationId: details.items.id,
+ completecode: details.orderType,
+ orderCode: details.inputtxt
+ }
+ details.datalist = []
+ // 请求定制品和零担数据
+ if (details.orderStatus == 1 || details.orderStatus === 2) await initPageOrder(data)
+ // 请求库存品数据
+ else if (details.orderStatus == 3) await initPageStock(data)
+
+ // 定制品
+ if (details.orderStatus === 1) details.datalist = details.order.data
+ // 零担
+ else if (details.orderStatus === 2) details.datalist = details.zero.data
+ // 库存品
+ else details.datalist = details.stock.data
+ } catch (err) {
+ console.log('err :>> ', err);
+ //TODO handle the exception
+ } finally {
+ return null
}
- details.datalist = []
- let response = null
- // 定制品和零担
- if (details.orderStatus == 1 || details.orderStatus === 2) {
- response = await deliveryorder(data)
- details.zeroArr = []
- details.orderArr = []
- response.data.records.forEach(val => {
+ }
+
+ /**
+ * 初始化请求定制品和零担数据
+ */
+ async function initPageOrder(submitData) {
+ try {
+ const response = await deliveryorder(submitData)
+ const { data } = response
+ details.zero.data = []
+ details.order.data = []
+ data.forEach(val => {
// 零担订单
- if (val.isZero === '1') return details.zeroArr.push(val)
- details.orderArr.push(val)
+ if (val.isZero === '1') return details.zero.data.push(val)
+ details.order.data.push(val)
})
+ } catch (err) {
+ console.log('err :>> ', err);
+ //TODO handle the exception
}
- // 库存品
- else if (details.orderStatus == 3) {
- response = await signforinventory(data)
- details.stockArr = response.data.records || []
+ }
+
+ /**
+ * 请求库存品数据
+ */
+ async function initPageStock(submitData) {
+ try {
+ details.stock.data = []
+ const response = await signforinventory(submitData)
+ const { data } = response
+ details.stock.data = data
+ return response
+ } catch (err) {
+ //TODO handle the exception
+ console.log('err :>> ', err);
}
- // 定制品
- if (details.orderStatus === 1) details.datalist = details.orderArr
- // 零担
- else if (details.orderStatus === 2) details.datalist = details.zeroArr
- // 库存品
- else details.datalist = details.stockArr
}
+
function checktype(e) {
if (e == '') {
details.schanvalue = ''
@@ -323,12 +409,69 @@
details.orderStatus = state
// initpage()
// 定制品
- if (details.orderStatus === 1) details.datalist = details.orderArr
+ if (details.orderStatus === 1) details.datalist = details.order.data
// 零担
- else if (details.orderStatus === 2) details.datalist = details.zeroArr
+ else if (details.orderStatus === 2) details.datalist = details.zero.data
// 库存品
- else details.datalist = details.stockArr
+ else details.datalist = details.stock.data
+ console.log(' details.datalist :>> ', details.datalist);
+ }
+
+ /**
+ * 触底加载 -- 定制品
+ */
+ function reatchBootomOrder() {
+ if (details.order.pages <= details.order.page.current) {
+ return uni.showToast({
+ title: '数据加载完毕',
+ icon: 'none'
+ })
+ }
+ details.order.page.current += 1
+ initpage()
+ }
+
+ /**
+ * 触底加载 -- 零担
+ */
+ function reatchBootomZero() {
+ if (details.zero.pages <= details.zero.page.current) {
+ return uni.showToast({
+ title: '数据加载完毕',
+ icon: 'none'
+ })
+ }
+ details.zero.page.current += 1
+ initpage()
}
+
+ /**
+ * 触底加载 -- 库存品
+ */
+ function reatchBootomStock() {
+ if (details.stock.pages <= details.stock.page.current) {
+ return uni.showToast({
+ title: '数据加载完毕',
+ icon: 'none'
+ })
+ }
+ details.stock.page.current += 1
+ initpage()
+ }
+
+ /**
+ * 触底加载
+ */
+ function reatchBottom() {
+ console.log('111 :>> ', 111);
+ // 定制品
+ if (details.orderStatus === 1) reatchBootomOrder()
+ // 零担
+ else if (details.orderStatus === 2) reatchBootomZero()
+ // 库存品
+ else if (details.orderStatus === 3) reatchBootomStock()
+ }
+
/** 扫描接口
* */
async function scandata() {
@@ -390,12 +533,19 @@
barcode: details.scancode
}
let res = await deliveryloadinginventory(data)
+ const { audio } = res
+ console.log('res :>> ', res);
+ if (!audio) return
+ // #ifdef APP
+ utils.ttsspke(res.audio)
+ // #endif
}
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
} finally {
- initpage()
+ // 刷新
+ uni.startPullDownRefresh()
}
}
@@ -406,7 +556,7 @@
return {
id: val.id,
title: val.firsts,
- value: val.loadingNum,
+ value: val.loadingNum || val.reservationNum,
maxNum: val.reservationNum,
minNum: 0,
type: 'Number',
@@ -456,7 +606,8 @@
utils.ttsspke(res.audio)
// #endif
}
- initpage()
+ // 刷新
+ uni.startPullDownRefresh()
} catch (err) {
console.log('err :>> ', err);
//TODO handle the exception
@@ -474,8 +625,6 @@
}
})
-
-
return
}
// details.listcheckindex=index
diff --git a/pagesHome/pages/CustomerSign/CustomerSign.vue b/pagesHome/pages/CustomerSign/CustomerSign.vue
index c3f8ac7..aa297fd 100644
--- a/pagesHome/pages/CustomerSign/CustomerSign.vue
+++ b/pagesHome/pages/CustomerSign/CustomerSign.vue
@@ -25,9 +25,13 @@
{{items.orderNumber}}
- 配送件数
+ 计划件数
{{deliveryNumber}}
+
+ 装车数量
+ {{truckLoadingNum}}
+
签收件数
{{signNub}}
@@ -95,7 +99,8 @@
onLoad,
onShow,
onHide,
- onUnload
+ onUnload,
+ onPullDownRefresh
} from '@dcloudio/uni-app'
import { computed, reactive, ref, toRefs } from "vue";
import utils from '@/utils/utils.js';
@@ -142,6 +147,16 @@
initpage()
getconfig()
})
+
+ // 下拉刷新
+ onPullDownRefresh(() => {
+ const timer = setTimeout(async () => {
+ await initpage()
+ uni.stopPullDownRefresh()
+ clearTimeout(timer)
+ }, 1000)
+ })
+
async function getconfig() {
let res = await dictbizdictionary({ code: 'photo_type' })
console.log('res1>>>>', res);
@@ -172,21 +187,39 @@
})
return num
})
+ // 计算计划件数和
const deliveryNumber = computed(() => {
- let num = 0
- details.datalist.map(item => {
- if (item.reservationNum) {
- num += item.reservationNum
- }
- })
- return num
+ return details.datalist.reduce((curr, item) => {
+ if (item.reservationNum) return curr + item.reservationNum
+ return curr
+ }, 0)
+ })
+ // 计算装车件数和
+ const truckLoadingNum = computed(() => {
+ return details.datalist.reduce((curr, item) => {
+ if (item.loadedNumber) return curr + item.loadedNumber
+ return curr
+ }, 0)
})
async function initpage() {
let data = {
id: details.id
}
let response = await signforcustom(data)
- details.datalist = response.data.records
+ const _arr = response.data.records
+ // 加急客户
+ const _fastArr = []
+ // 正常客户
+ const _commonArr = []
+ console.log('_arr :>> ', _arr);
+ _arr.forEach((val) => {
+ console.log('val :>> ', val);
+ if (Number(val.isUrgent) === 2) return _fastArr.push(val)
+ return _commonArr.push(val)
+ })
+ // 排序, 将加急客户排在前面
+ details.datalist = [..._fastArr, ..._commonArr]
+ return null
}
// function gosindetascan(item){
// uni.navigateTo({
diff --git a/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue b/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue
index e742cba..e2058f3 100644
--- a/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue
+++ b/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue
@@ -1,9 +1,7 @@
-
+
配车类型:{{items.type_name}}
@@ -49,14 +47,14 @@
备货区:{{item.stockupArea||'无备货区'}}
-
+
订单总数
{{item.ordNub}}
-
+
计划件数
{{item.reservationNum}}
@@ -91,156 +89,166 @@
onLoad,
onShow,
onHide,
- onUnload
+ onUnload,
+ onPullDownRefresh
} from '@dcloudio/uni-app'
import { computed, reactive, ref, toRefs } from "vue";
- let details=reactive({
- id:'',
- datalist:[],
- items:{} as any,
- scancode:'',
- authbuts:uni.getStorageSync('authbuts')
+ let details = reactive({
+ id: '',
+ datalist: [],
+ items: {} as any,
+ scancode: '',
+ authbuts: uni.getStorageSync('authbuts')
})
- const tip=ref(null)
- const tiplists=ref(null)
- onLoad((op)=>{
- details.id=op.id
- details.items=JSON.parse(op.item)
+ const tip = ref(null)
+ const tiplists = ref(null)
+ onLoad((op) => {
+ details.id = op.id
+ details.items = JSON.parse(op.item)
})
- onHide(()=>{
+ onHide(() => {
uni.$off('scancodedate')
- console.log("uni",uni)
+ console.log("uni", uni)
})
- onShow(()=>{
+ onShow(() => {
initpage()
- uni.$on('scancodedate', function(code) {
+ uni.$on('scancodedate', function (code) {
if (code) {
console.log(code);
- details.scancode=code
+ details.scancode = code
scandata()
}
})
})
- const ordernumber=computed(()=>{
- let num=0
- details.datalist.map(item=>{
- num+=Number(item.ordNub)
+ onPullDownRefresh(() => {
+ const timer = setTimeout(() => {
+ initpage()
+ uni.stopPullDownRefresh()
+ clearTimeout(timer)
+ }, 1000)
+ })
+ const ordernumber = computed(() => {
+ let num = 0
+ details.datalist.map(item => {
+ num += Number(item.ordNub)
})
return num
})
- const deliveryNumber=computed(()=>{
- let num=0
- details.datalist.map(item=>{
- num+=Number(item.reservationNum)
+ const deliveryNumber = computed(() => {
+ let num = 0
+ details.datalist.map(item => {
+ num += Number(item.reservationNum)
})
return num
})
- const scannedNumber=computed(()=>{
- let num=0
- details.datalist.map(item=>{
- num+=Number(item.loadingNub)
+ const scannedNumber = computed(() => {
+ let num = 0
+ details.datalist.map(item => {
+ num += Number(item.loadingNub)
})
return num
})
- function showsdqs(){
+ function showsdqs() {
tiplists.value.setdetails({
- isshow:true,
- tipstate:1,
- title:'请输入扫描的码',
- placeholder:'请输入扫描的码',
- inputtext:'',
- success:(detail)=>{
- details.scancode=detail.inputtext
+ isshow: true,
+ tipstate: 1,
+ title: '请输入扫描的码',
+ placeholder: '请输入扫描的码',
+ inputtext: '',
+ success: (detail) => {
+ details.scancode = detail.inputtext
scandata()
- tiplists.value.setdetails({isshow:false})
+ tiplists.value.setdetails({ isshow: false })
},
- cancel:()=>{
- tiplists.value.setdetails({isshow:false})
+ cancel: () => {
+ tiplists.value.setdetails({ isshow: false })
},
- close:()=>{
- tiplists.value.setdetails({isshow:false})
+ close: () => {
+ tiplists.value.setdetails({ isshow: false })
}
})
}
- async function ckoneloading(item){
+ async function ckoneloading(item) {
tip.value.setdetails({
- title:'提示',
- content:'确认一键装车?',
- confirmTxt:'确认',
- isshow:true,
- isshowcancel:true,
- success:async ()=>{
- let loadingId=uni.getStorageSync('checkvehicle').id
- let data={
- reservationId:item.id,
+ title: '提示',
+ content: '确认一键装车?',
+ confirmTxt: '确认',
+ isshow: true,
+ isshowcancel: true,
+ success: async () => {
+ let loadingId = uni.getStorageSync('checkvehicle').id
+ let data = {
+ reservationId: item.id,
loadingId,
- deliveryId:details.id
+ deliveryId: details.id
}
- let response=await deliveryoneloading(data)
- if(response.code==200){
-
+ let response = await deliveryoneloading(data)
+ if (response.code == 200) {
+
}
tip.value.setisshow(false)
},
- cancel:()=>{
+ cancel: () => {
tip.value.setisshow(false)
},
- close:()=>{
+ close: () => {
tip.value.setisshow(false)
}
})
-
+
}
- async function scandata(){
- let loadingId=uni.getStorageSync('checkvehicle').id
- let data={
- deliveryId:details.id,
+ async function scandata() {
+ let loadingId = uni.getStorageSync('checkvehicle').id
+ let data = {
+ deliveryId: details.id,
loadingId,
- type:1,
- barcode:details.scancode
+ type: 1,
+ barcode: details.scancode
}
- let res=await deliveryloadingscan(data)
+ let res = await deliveryloadingscan(data)
console.log(res);
- if(res.code==200){
-
+ if (res.code == 200) {
+
}
}
- async function initpage(){
- let data={
- id:details.id
+ async function initpage() {
+ let data = {
+ id: details.id
}
- let response=await deliverycustom(data)
+ let response = await deliverycustom(data)
console.log('response', response)
- details.datalist=response.data.records
+ details.datalist = response.data.records
}
- function goCustomerOrdersDetails(item){
+ function goCustomerOrdersDetails(item) {
uni.navigateTo({
- url:'/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails?item='+JSON.stringify(item)+'&id='+details.id
+ url: '/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails?item=' + JSON.stringify(item) + '&id=' + details.id
})
}
- function goCustomerTrayDetails(item){
+ function goCustomerTrayDetails(item) {
uni.navigateTo({
- url:'/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails?item='+JSON.stringify(item)+'&id='+details.id
+ url: '/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails?item=' + JSON.stringify(item) + '&id=' + details.id
})
}
- function goLoadingDetails(item){
+ function goLoadingDetails(item) {
uni.navigateTo({
- url:'/pagesHome/pages/LoadingDetails/LoadingDetails?id='+item.id
+ url: '/pagesHome/pages/LoadingDetails/LoadingDetails?id=' + item.id
})
}
- const { authbuts,items,datalist }=toRefs(details)
+ const { authbuts, items, datalist } = toRefs(details)
+
\ No newline at end of file
diff --git a/pagesHome/pages/DownGoods/DownGoods.vue b/pagesHome/pages/DownGoods/DownGoods.vue
index a1fd6ee..e598dba 100644
--- a/pagesHome/pages/DownGoods/DownGoods.vue
+++ b/pagesHome/pages/DownGoods/DownGoods.vue
@@ -309,7 +309,7 @@
checkmarkindex: 0,
allocaTitle: ''
})
- onLoad(async (op) => {
+ onLoad((op) => {
// details.upshelfScanType = op.type
details.pageType = op.type
if (op.type === '1') utils.ttsspke(`当前下架方式为${op.pageName}, 请扫描下架的托盘`)
@@ -322,10 +322,10 @@
details.typelist = ['订单号', '运单号']
utils.ttsspke(`当前下架方式为${op.pageName}, 请录入订单号或运单号`)
}
- await initmarke()
})
- onShow(() => {
+ onShow(async () => {
+ await initmarke()
// app 适配
// #ifdef APP
uni.$on('scancodedate', function (code) {
@@ -343,7 +343,7 @@
})
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
details.scancode = ''
details.datalist = []
details.codelist = []
@@ -353,6 +353,7 @@
// 关闭刷新动画
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
})
diff --git a/pagesHome/pages/LoadingScan/LoadingScan.vue b/pagesHome/pages/LoadingScan/LoadingScan.vue
index 919424e..22153ee 100644
--- a/pagesHome/pages/LoadingScan/LoadingScan.vue
+++ b/pagesHome/pages/LoadingScan/LoadingScan.vue
@@ -1,9 +1,7 @@
-
+
商配
@@ -17,10 +15,12 @@
配车日期:
-
+
-
-
+
+
@@ -77,7 +77,8 @@
- 车次号:{{item.trainNumber}}
+ 车次号:{{item.trainNumber}}
@@ -104,13 +105,14 @@
- 发车
装车扫描
+ 发车
-
+
@@ -122,50 +124,59 @@
onLoad,
onShow,
onHide,
- onUnload
+ onUnload,
+ onPullDownRefresh
} from '@dcloudio/uni-app'
- import {
+ import {
deliverypage,
deliverystart,
deliveryvehicle,
} from '@/api/user.js'
import { detailType } from '@/interfaces/pagesHome/LoadingScan'
- import { reactive, toRefs,ref,watchEffect } from "vue";
+ import { reactive, toRefs, ref, watchEffect } from "vue";
let details = reactive({
datatime: '',
show: false,
- recordsList:[],
- current:1,
- size:10,
- checkstate:1,
+ recordsList: [],
+ current: 1,
+ size: 10,
+ checkstate: 1,
})
const tip = ref(null)
const tiplists = ref(null)
- const date = ref([])
- onShow(()=>{
+ const date = ref([])
+ onShow(() => {
initpage()
})
- function showCalendar(){
- details.show=!details.show
+ function showCalendar() {
+ details.show = !details.show
}
- function stop(){
-
+ function stop() {
+
}
- function setstates(state:number){
- if(details.checkstate==state){
+ onPullDownRefresh(() => {
+ const timer = setTimeout(async () => {
+ // 停止刷新动画
+ await initpage()
+ uni.stopPullDownRefresh()
+ clearTimeout(timer)
+ }, 1000)
+ })
+ function setstates(state : number) {
+ if (details.checkstate == state) {
return
}
- details.checkstate=state
+ details.checkstate = state
init()
}
- async function startld(item){
+ async function startld(item) {
tip.value.setdetails({
title: '提示',
- content:'确认发车?',
+ content: '确认发车?',
confirmTxt: '发车',
isshow: true,
isshowcancel: true,
- success:async () => {
+ success: async () => {
Departure(item)
},
cancel: () => {
@@ -176,131 +187,132 @@
}
})
}
- async function Departure(item){
+ async function Departure(item) {
tip.value.setisshow(false)
- let data={
- deliveryId:item.id
+ let data = {
+ deliveryId: item.id
}
- let res=await deliveryvehicle(data)
- if(res.data.length == 1 ){
- let data={
- deliveryId:item.id,
- loadingId:res.data[0].id
+ let res = await deliveryvehicle(data)
+ if (res.data.length == 1) {
+ let data = {
+ deliveryId: item.id,
+ loadingId: res.data[0].id
}
- let response=await deliverystart(data)
- if(response.code==200){
+ let response = await deliverystart(data)
+ if (response.code == 200) {
uni.showToast({
- title:'发车成功',
- icon:'none'
+ title: '发车成功',
+ icon: 'none'
})
init()
}
return
}
- if(res.data.length == 0 ){
+ if (res.data.length == 0) {
uni.showToast({
- title:'没有司机数据',
- icon:'none'
+ title: '没有司机数据',
+ icon: 'none'
})
return
}
- let list=[]
- res.data.map(item=>{
- list.push(item.driverName+'---'+item.vehicleNub)
+ let list = []
+ res.data.map(item => {
+ list.push(item.driverName + '---' + item.vehicleNub)
})
tiplists.value.setdetails({
- title:'请选择车辆',
- isshow:true,
- tipstate:2,
+ title: '请选择车辆',
+ isshow: true,
+ tipstate: 2,
list,
- checklist:[],
- inputtext:'',
- confirmTxt:'确认选择',
- isonecheck:true,
- success:async (deta)=>{
- if(deta.checklist.length==0){
+ checklist: [],
+ inputtext: '',
+ confirmTxt: '确认选择',
+ isonecheck: true,
+ success: async (deta) => {
+ if (deta.checklist.length == 0) {
uni.showToast({
- title:'请选择车辆',
- icon:'none'
+ title: '请选择车辆',
+ icon: 'none'
})
return
}
- tiplists.value.setdetails({isshow:false})
- let data={
- deliveryId:item.id,
- loadingId:res.data[deta.checklist[0]].id
+ tiplists.value.setdetails({ isshow: false })
+ let data = {
+ deliveryId: item.id,
+ loadingId: res.data[deta.checklist[0]].id
}
- let response=await deliverystart(data)
- if(response.code==200){
+ let response = await deliverystart(data)
+ if (response.code == 200) {
init()
uni.showToast({
- title:'发车成功',
- icon:'none'
+ title: '发车成功',
+ icon: 'none'
})
-
+
}
},
- cancel:(details)=>{
- tiplists.value.setdetails({isshow:false})
+ cancel: (details) => {
+ tiplists.value.setdetails({ isshow: false })
},
- close:(details)=>{
- tiplists.value.setdetails({isshow:false})
+ close: (details) => {
+ tiplists.value.setdetails({ isshow: false })
}
})
}
- function init(){
- details.current=1
- details.recordsList=[]
+ function init() {
+ details.current = 1
+ details.recordsList = []
initpage()
}
- function jiazai(){
+ function jiazai() {
details.current++
initpage()
}
- watchEffect(()=>{
- if((date.value as []).length!=0){
- details.datatime=date.value[0]+' 至 '+date.value[1]
+ watchEffect(() => {
+ if ((date.value as []).length != 0) {
+ details.datatime = date.value[0] + ' 至 ' + date.value[1]
}
})
- function onConfirm(e:any) {
+ function onConfirm(e : any) {
console.log(e);
- date.value[0]=e.startDate
- date.value[1]=e.endDate
- details.datatime=date.value[0]+' 至 '+date.value[1]
+ date.value[0] = e.startDate
+ date.value[1] = e.endDate
+ details.datatime = date.value[0] + ' 至 ' + date.value[1]
// details.datatime=(uni as any).$u.timeFormat(date.value[0], 'yyyy-mm-dd')+' 至 '+(uni as any).$u.timeFormat(date.value[1], 'yyyy-mm-dd')
}
- onLoad(()=>{
- date.value[0]=(uni as any).$u.timeFormat((new Date().valueOf()-1000*60*60*24*3), 'yyyy-mm-dd')
- date.value[1]=(uni as any).$u.timeFormat((new Date().valueOf()), 'yyyy-mm-dd')
- details.current=1
+ onLoad(() => {
+ date.value[0] = (uni as any).$u.timeFormat((new Date().valueOf() - 1000 * 60 * 60 * 24 * 3), 'yyyy-mm-dd')
+ date.value[1] = (uni as any).$u.timeFormat((new Date().valueOf()), 'yyyy-mm-dd')
+ details.current = 1
})
function showtime(value : boolean) {
console.log(value);
details.show = value
}
- async function initpage(){
- let data={
- current:details.current,
- size:details.size,
- taskTime_start:date.value[0]||'',
- taskTime_end:date.value[1]||'',
- type:details.checkstate
+ async function initpage() {
+ let data = {
+ current: details.current,
+ size: details.size,
+ taskTime_start: date.value[0] || '',
+ taskTime_end: date.value[1] || '',
+ type: details.checkstate
}
- let response=await deliverypage(data)
- console.log(response);
- if(details.current==1){
- details.recordsList=response.data.records
- }else{
- if(response.data.records.lngth==0){
+ let response = await deliverypage(data)
+ console.log(response);
+ if (details.current == 1) {
+ details.recordsList = response.data.records
+ } else {
+ if (response.data.records.lngth == 0) {
uni.showToast({
- title:'已经到底了。',
- icon:'none'
+ title: '已经到底了。',
+ icon: 'none'
})
details.current--
- return
+ return null
}
- details.recordsList=details.recordsList.concat(response.data.records)
+ details.recordsList = details.recordsList.concat(response.data.records)
}
+ return null
// details.recordsList=response.data.records
}
function checktime(event : any) {
@@ -309,141 +321,144 @@
details.show = false
console.log(details.datatime);
}
- async function goselscan(item:any) {
- let data={
- deliveryId:item.id
+ async function goselscan(item : any) {
+ let data = {
+ deliveryId: item.id
}
- let res=await deliveryvehicle(data)
- if(res.data.length == 1 ){
- uni.setStorageSync('checkvehicle',res.data[0])
+ let res = await deliveryvehicle(data)
+ 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(item)
})
return
}
- if(res.data.length == 0 ){
+ if (res.data.length == 0) {
uni.showToast({
- title:'没有司机数据',
- icon:'none'
+ title: '没有司机数据',
+ icon: 'none'
})
return
}
- let list=[]
- res.data.map(item=>{
- list.push(item.driverName+'---'+item.vehicleNub)
+ let list = []
+ res.data.map(item => {
+ list.push(item.driverName + '---' + item.vehicleNub)
})
tiplists.value.setdetails({
- title:'请选择车辆',
- isshow:true,
- tipstate:2,
+ title: '请选择车辆',
+ isshow: true,
+ tipstate: 2,
list,
- checklist:[],
- inputtext:'',
- confirmTxt:'确认选择',
- isonecheck:true,
- success:(deta)=>{
- if(deta.checklist.length==0){
+ checklist: [],
+ inputtext: '',
+ confirmTxt: '确认选择',
+ isonecheck: true,
+ success: (deta) => {
+ if (deta.checklist.length == 0) {
uni.showToast({
- title:'请选择车辆',
- icon:'none'
+ title: '请选择车辆',
+ icon: 'none'
})
return
}
- tiplists.value.setdetails({isshow:false})
- uni.setStorageSync('checkvehicle',res.data[deta.checklist[0]])
+ 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(item)
})
},
- cancel:(details)=>{
- tiplists.value.setdetails({isshow:false})
+ cancel: (details) => {
+ tiplists.value.setdetails({ isshow: false })
},
- close:(details)=>{
- tiplists.value.setdetails({isshow:false})
+ close: (details) => {
+ tiplists.value.setdetails({ isshow: false })
}
})
}
- async function goloddeta(item){
- let data={
- deliveryId:item.id
+ async function goloddeta(item) {
+ let data = {
+ deliveryId: item.id
}
- let res=await deliveryvehicle(data)
+ let res = await deliveryvehicle(data)
console.log(res);
- if(res.data.length==1){
- uni.setStorageSync('checkvehicle',res.data[0])
+ if (res.data.length == 1) {
+ uni.setStorageSync('checkvehicle', res.data[0])
uni.navigateTo({
- url: '/pagesHome/pages/LoadingDetails/LoadingDetails?item='+JSON.stringify(item)
+ url: '/pagesHome/pages/LoadingDetails/LoadingDetails?item=' + JSON.stringify(item)
})
return
}
- if(res.data.length == 0 ){
+ if (res.data.length == 0) {
uni.showToast({
- title:'没有司机数据',
- icon:'none'
+ title: '没有司机数据',
+ icon: 'none'
})
return
}
- let list=[]
- res.data.map(item=>{
- list.push(item.driverName+'---'+item.vehicleNub)
+ let list = []
+ res.data.map(item => {
+ list.push(item.driverName + '---' + item.vehicleNub)
})
tiplists.value.setdetails({
- title:'请选择车辆',
- isshow:true,
- tipstate:2,
+ title: '请选择车辆',
+ isshow: true,
+ tipstate: 2,
list,
- checklist:[],
- inputtext:'',
- confirmTxt:'确认选择',
- isonecheck:true,
- success:(deta)=>{
- if(deta.checklist.length==0){
+ checklist: [],
+ inputtext: '',
+ confirmTxt: '确认选择',
+ isonecheck: true,
+ success: (deta) => {
+ if (deta.checklist.length == 0) {
uni.showToast({
- title:'请选择车辆',
- icon:'none'
+ title: '请选择车辆',
+ icon: 'none'
})
return
}
- tiplists.value.setdetails({isshow:false})
- uni.setStorageSync('checkvehicle',res.data[deta.checklist[0]])
+ tiplists.value.setdetails({ isshow: false })
+ uni.setStorageSync('checkvehicle', res.data[deta.checklist[0]])
uni.navigateTo({
- url: '/pagesHome/pages/LoadingDetails/LoadingDetails?item='+JSON.stringify(item)
+ url: '/pagesHome/pages/LoadingDetails/LoadingDetails?item=' + JSON.stringify(item)
})
},
- cancel:(details)=>{
- tiplists.value.setdetails({isshow:false})
+ cancel: (details) => {
+ tiplists.value.setdetails({ isshow: false })
},
- close:(details)=>{
- tiplists.value.setdetails({isshow:false})
+ close: (details) => {
+ tiplists.value.setdetails({ isshow: false })
}
})
// return
-
+
}
- function cleartime(){
+ function cleartime() {
// console.log(cleartime);
- details.datatime=''
- date.value=[]
+ details.datatime = ''
+ date.value = []
init()
}
- const { checkstate,datatime, recordsList, show } = toRefs(details)
+ const { checkstate, datatime, recordsList, show } = toRefs(details)
+
\ No newline at end of file
diff --git a/pagesHome/pages/signOrderScan/signOrderScan.vue b/pagesHome/pages/signOrderScan/signOrderScan.vue
index 3819853..95184fd 100644
--- a/pagesHome/pages/signOrderScan/signOrderScan.vue
+++ b/pagesHome/pages/signOrderScan/signOrderScan.vue
@@ -191,7 +191,10 @@
return num
})
const ordNub = computed(() => {
- return details.datalist.length
+ let num = 0
+ num += details.orderArr.length
+ num += details.zeroArr.length
+ return num
})
const signNub = computed(() => {
let num = 0
@@ -202,22 +205,27 @@
})
return num
})
- // watchEffect(() => {
- // if (signNub.value != 0) {
- // console.log(signNub.value + '件')
- // utils.ttsspke(signNub.value + '件')
- // }
- // })
- onLoad(async (op) => {
- try {
- // #ifdef APP
- utils.ttsspke('请扫描包条码')
- // #endif
+ onLoad((op) => {
+ // #ifdef APP
+ utils.ttsspke('请扫描包条码')
+ // #endif
+
+ // 获取路由中传递数据
+ details.items = JSON.parse(op.item)
+ details.id = JSON.parse(op.item).id
+ details.deliveryId = op.deliveryId
- // 获取路由中传递数据
- details.items = JSON.parse(op.item)
- details.id = JSON.parse(op.item).id
- details.deliveryId = op.deliveryId
+ })
+
+ onShow(async () => {
+ try {
+ uni.$on('scancodedate', function (code) {
+ if (code) {
+ console.log(code);
+ details.scancode = code
+ scandata()
+ }
+ })
// 初始化请求页面数据
let data = {
@@ -239,7 +247,7 @@
})
// 库存品
let response1 = await signforinventory(data)
- details.stockArr = response1.data.records || []
+ if (response1.data) details.stockArr = response1.data.records || []
console.log('response :>> ', response);
console.log('response1 :>> ', response1);
@@ -255,16 +263,6 @@
}
})
- onShow(() => {
- uni.$on('scancodedate', function (code) {
- if (code) {
- console.log(code);
- details.scancode = code
- scandata()
- }
- })
- })
-
onHide(() => {
uni.$off('scancodedate')
})
@@ -276,10 +274,11 @@
// 页面下拉刷新
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
initpage()
// 关闭下拉动画
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
})
async function scandata() {
@@ -289,12 +288,13 @@
reservationId: details.id,
}
// 定制品
- if (details.orderStatus == 1) {
+ if (Number(details.orderStatus) == 1) {
let response = await signforsignfor(data)
console.log(response);
if (response.code === 200) {
+ // const num = details.datalist.reduce((curr, item) => curr + item.signforNub, 0)
// #ifdef APP
- utils.ttsspke(signNub.value + '件')
+ // utils.ttsspke(num + '件')
// #endif
}
else if (response.code == 3006) {
@@ -328,7 +328,7 @@
icon: 'none'
})
}
- } else if (details.orderStatus == 2) {
+ } else if (Number(details.orderStatus) === 3) {
// data.barcode="23072405915-2"
let response = await signforsignforIn(data)
console.log(response);
diff --git a/pagesHome/pages/signinScan/signinScan.vue b/pagesHome/pages/signinScan/signinScan.vue
index bebc051..f326c89 100644
--- a/pagesHome/pages/signinScan/signinScan.vue
+++ b/pagesHome/pages/signinScan/signinScan.vue
@@ -81,7 +81,7 @@
{{ item?.orderNumber||0 }}
- 配送件数
+ 计划件数
{{ item?.deliveryNumber||0 }}
diff --git a/pagesTask/pages/checkTaskList/checkTaskList.vue b/pagesTask/pages/checkTaskList/checkTaskList.vue
index b3fb2aa..5ef17f1 100644
--- a/pagesTask/pages/checkTaskList/checkTaskList.vue
+++ b/pagesTask/pages/checkTaskList/checkTaskList.vue
@@ -214,21 +214,10 @@
details.id = data.id
details.warehouseId = data.warehouseId
details.marketName = data.marketName
- // 库位盘点时, 允许扫码
if (details.pageType === 3) {
infodata.value = data
}
-
- if (details.pageType === 1) details.isscan = false
-
- // 初始化请求页面数据
- initPage()
-
- if (details.pageType === 1) return
- else if (details.pageType === 2) return utils.ttsspke('请扫描库位码')
- else if (details.pageType === 3) return utils.ttsspke('请扫描包条码或输入订单自编码')
- else if (details.pageType === 4) return utils.ttsspke('请扫描托盘')
})
// 开启监听扫描
@@ -241,6 +230,16 @@
scandata()
}
})
+ // 库位盘点时, 允许扫码
+ if (details.pageType === 1) details.isscan = false
+
+ // 初始化请求页面数据
+ initPage()
+
+ if (details.pageType === 1) return
+ else if (details.pageType === 2) return utils.ttsspke('请扫描库位码')
+ else if (details.pageType === 3) return utils.ttsspke('请扫描包条码或输入订单自编码')
+ else if (details.pageType === 4) return utils.ttsspke('请扫描托盘')
})
// 关闭扫描监听
@@ -284,9 +283,10 @@
details.isEnd = false
// 清空渲染列表
details.renderList = []
- setTimeout(async () => {
+ const timer = setTimeout(async () => {
const res = await initPage()
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
})
diff --git a/pagesTask/pages/contracts/contracts.vue b/pagesTask/pages/contracts/contracts.vue
index c11dbb4..97dc1c2 100644
--- a/pagesTask/pages/contracts/contracts.vue
+++ b/pagesTask/pages/contracts/contracts.vue
@@ -396,11 +396,11 @@
infos.value = info
details.marketName = JSON.parse(info.marketName)
console.log(info, 'infos==========');
- Tjinfo()//初始化请求数据
})
// 开启监听扫描
onShow(() => {
+ Tjinfo()//初始化请求数据
uni.$on('scancodedate', function (code) {
if (code) {
details.scancode = code
diff --git a/pagesTask/pages/dynamicCheck/dynamicCheck.vue b/pagesTask/pages/dynamicCheck/dynamicCheck.vue
index ca8d03b..c32e19e 100644
--- a/pagesTask/pages/dynamicCheck/dynamicCheck.vue
+++ b/pagesTask/pages/dynamicCheck/dynamicCheck.vue
@@ -143,9 +143,10 @@
const res = await initPage()
// if (res) {
- setTimeout(() => {
+ const timer = setTimeout(() => {
// 关闭刷新动画
uni.stopPullDownRefresh()
+ clearTimeout(timer)
}, 1000)
// }
})
diff --git a/pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue b/pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue
index 739e738..e316b66 100644
--- a/pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue
+++ b/pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue
@@ -145,8 +145,7 @@
details.title = data.title
details.pageType = pageType
- // 初始化请求页面数据
- initPage()
+
})
// 开启监听扫描
@@ -158,6 +157,8 @@
scandata()
}
})
+ // 初始化请求页面数据
+ initPage()
})
// 关闭扫描监听
diff --git a/pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue b/pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue
index 7b0bfd2..79d06c0 100644
--- a/pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue
+++ b/pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue
@@ -384,9 +384,7 @@
details.questId = info.questId
console.log('info :>> ', info.marketName);
details.marketName = JSON.parse(info.marketName)
- initArticle()
- initZero()
- initStock()
+
})
// 开启监听扫描
@@ -399,6 +397,9 @@
scandata()
}
})
+ initArticle()
+ initZero()
+ initStock()
})
// 关闭扫描监听
diff --git a/pagesTask/pages/trayCheckDetails/trayCheckDetails.vue b/pagesTask/pages/trayCheckDetails/trayCheckDetails.vue
index 6d9fb52..0e88155 100644
--- a/pagesTask/pages/trayCheckDetails/trayCheckDetails.vue
+++ b/pagesTask/pages/trayCheckDetails/trayCheckDetails.vue
@@ -305,8 +305,7 @@
// 是否阻止初始化请求
details.holdBackFirstPost = details.pageInfo.holdBackFirstPost
console.log('pageInfo :>> ', details.pageInfo);
- if (details.holdBackFirstPost) return
- initPage()
+
})
// 开启监听扫描
@@ -319,6 +318,8 @@
scandata()
}
})
+ if (details.holdBackFirstPost) return
+ initPage()
})
// 关闭扫描监听
diff --git a/pagesUser/pages/systemSettings/systemSettings.vue b/pagesUser/pages/systemSettings/systemSettings.vue
new file mode 100644
index 0000000..8f588c1
--- /dev/null
+++ b/pagesUser/pages/systemSettings/systemSettings.vue
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/store/uaePdaStore.js b/store/uaePdaStore.js
new file mode 100644
index 0000000..1b1101f
--- /dev/null
+++ b/store/uaePdaStore.js
@@ -0,0 +1,52 @@
+import {
+ defineStore
+} from 'pinia';
+import {
+ reactive,
+ ref,
+ shallowRef
+} from 'vue';
+
+export const usePdaStore = defineStore('usePdaStore', () => {
+ // pda广播标签和广播动作数组
+ const pdaBroadcastList = reactive({
+ 'newPdaVersion': {
+ title: '新版本',
+ // 广播动作
+ broadcastAction: 'com.android.server.scannerservice.broadcast',
+ // 广播标签
+ broadcastTag: 'scannerdata'
+ },
+ 'oldPdaVersion': {
+ title: '老版本',
+ // 广播动作
+ broadcastAction: 'android.intent.ACTION_DECODE_DATA',
+ // 广播标签
+ broadcastTag: 'barcode_string'
+ }
+ })
+
+ const pdaBroadcas = reactive({
+ broadcastAction: 'com.android.server.scannerservice.broadcast',
+ // 广播标签
+ broadcastTag: 'scannerdata'
+ })
+
+ /**
+ * 选择Pda的广播标签和广播动作
+ */
+ const HANDLE_PDABROADCAS = (choosePda) => {
+ pdaBroadcas.broadcastAction = pdaBroadcastList[choosePda].broadcastAction
+ pdaBroadcas.broadcastTag = pdaBroadcastList[choosePda].broadcastTag
+ console.log('pdaBroadcas :>> ', pdaBroadcas);
+ }
+
+ return {
+ pdaBroadcastList,
+ pdaBroadcas,
+ HANDLE_PDABROADCAS
+ }
+})
+
+// 暴露仓库实例
+export default usePdaStore
\ No newline at end of file
diff --git a/uni_modules/fant-mini-plus/components/hd-collapse-item/INDEX.md b/uni_modules/fant-mini-plus/components/hd-collapse-item/INDEX.md
index 654732d..ecf75d3 100644
--- a/uni_modules/fant-mini-plus/components/hd-collapse-item/INDEX.md
+++ b/uni_modules/fant-mini-plus/components/hd-collapse-item/INDEX.md
@@ -82,11 +82,12 @@ const loading = useLoading() // loading
function beforeExpend(name, index) {
return new Promise((reslove, reject) => {
loading.showLoading({})
- setTimeout(() => {
+ const timer = setTimeout(() => {
loading.hideLoading()
content2.value = '通过传入 `beforeExpend` 函数可以在打开面板前进行校验和处理,返回 true 表示允许打开,返回 false 表示禁止打开。支持返回 Promise 进行例如调用接口获取面板数据的操作。'
reslove(true)
- }, 500)
+ clearTimeout(timer)
+ }, 500)
})
}
```
diff --git a/unpackage/dist/build/app-plus/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.css b/unpackage/dist/build/app-plus/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.css
index 2463f1d..060829a 100644
--- a/unpackage/dist/build/app-plus/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.css
+++ b/unpackage/dist/build/app-plus/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.css
@@ -1 +1 @@
-.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.butys{display:flex;align-items:center;margin-top:.625rem;justify-content:space-around}.butys>.conf{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff;background-color:#d3832a}.butys>.qut{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#5a6875;background-color:#fff}.scvorder{width:100%;margin-top:.625rem;height:64vh}.scvorder .itembox{width:21.4375rem;border-radius:.625rem;padding:0 .625rem;box-sizing:border-box;background-color:#fff;margin:auto;margin-bottom:.625rem}.scvorder .itembox>.topon1{display:flex;align-items:center;justify-content:space-between;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvorder .itembox>.topon1>uni-view:nth-of-type(1){width:1.5625rem;height:1.5625rem;background:#178AF220;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:500;color:#178af2}.scvorder .itembox>.topon1>uni-view:nth-of-type(2){display:flex;align-items:center}.scvorder .itembox>.topon1>uni-view:nth-of-type(2)>uni-view{width:4.25rem;height:2rem;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#90a0af;background-color:#f5f5f6;margin-right:.625rem}.scvorder .itembox>.topon1>uni-view:nth-of-type(2)>uni-view:nth-last-child(1){margin-right:0}.scvorder .itembox>.topon1>uni-view:nth-of-type(2) .xzc{background-color:#178af2!important;color:#fff!important}.scvorder .itembox>.topon1>uni-view:nth-of-type(2) .xze{background-color:#f8544b!important;color:#fff!important}.scvorder .itembox>.topon1>uni-view:nth-of-type(2)>uni-image{width:2rem;height:2rem}.scvorder .itembox>.topon2{display:flex;align-items:center;justify-content:flex-start;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvorder .itembox>.topon2>uni-image{width:2rem;height:2rem;margin-right:.625rem}.scvorder .itembox>.topon2>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.tarynumvw{width:100%;padding:.75rem 2.1875rem;background-color:#fff;margin-top:.125rem;box-sizing:border-box}.tabsetnumb{display:flex;align-items:center;justify-content:space-between;background-color:#fff;margin-top:.625rem}.tabsetnumb .xz>uni-view:nth-of-type(1){color:#d3832a!important}.tabsetnumb .xz>uni-view:nth-of-type(2){background-color:#d3832a!important}.tabsetnumb>uni-view{width:50%;display:flex;flex-direction:column;align-items:center}.tabsetnumb>uni-view>uni-view:nth-of-type(1){font-size:1rem;font-weight:400;color:#020b18;padding:.9375rem 0}.tabsetnumb>uni-view>uni-view:nth-of-type(2){width:3rem;height:.25rem;background-color:rgba(211,131,42,0);border-radius:.125rem}.topbos{display:flex;flex-direction:column}.topbos>.srview{display:flex;align-items:center;padding:.8125rem 1rem;box-sizing:border-box;background-color:#fff;margin-bottom:.125rem}.topbos>.srview:nth-last-child(1){margin-bottom:0}.topbos>.srview>uni-view:nth-of-type(1){width:5.9375rem;font-size:.875rem}.topbos>.srview>uni-view:nth-of-type(2){font-size:.875rem;flex:1}.topbos>.srview>uni-view:nth-of-type(2)>uni-input{flex:1}
+.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.butys{display:flex;align-items:center;margin-top:.625rem;justify-content:space-around}.butys>.conf{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff;background-color:#d3832a}.butys>.qut{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#5a6875;background-color:#fff}.scvorder{width:100%;margin-top:.625rem;height:64vh}.scvorder .itembox{width:21.4375rem;border-radius:.625rem;padding:0 .625rem;box-sizing:border-box;background-color:#fff;margin:auto;margin-bottom:.625rem}.scvorder .itembox>.topon1{display:flex;align-items:center;justify-content:space-between;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvorder .itembox>.topon1>uni-view:nth-of-type(1){width:1.5625rem;height:1.5625rem;background:#178AF220;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:500;color:#178af2}.scvorder .itembox>.topon1>uni-view:nth-of-type(2){display:flex;align-items:center}.scvorder .itembox>.topon1>uni-view:nth-of-type(2)>uni-view{width:4.25rem;height:2rem;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#90a0af;background-color:#f5f5f6;margin-right:.625rem}.scvorder .itembox>.topon1>uni-view:nth-of-type(2)>uni-view:nth-last-child(1){margin-right:0}.scvorder .itembox>.topon1>uni-view:nth-of-type(2) .xzc{background-color:#178af2!important;color:#fff!important}.scvorder .itembox>.topon1>uni-view:nth-of-type(2) .xze{background-color:#f8544b!important;color:#fff!important}.scvorder .itembox>.topon1>uni-view:nth-of-type(2)>uni-image{width:1rem;height:1rem}.scvorder .itembox>.topon2{display:flex;align-items:center;justify-content:flex-start;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvorder .itembox>.topon2>uni-image{width:1rem;height:1rem;margin-right:.625rem}.scvorder .itembox>.topon2>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.tarynumvw{width:100%;padding:.75rem 2.1875rem;background-color:#fff;margin-top:.125rem;box-sizing:border-box}.tabsetnumb{display:flex;align-items:center;justify-content:space-between;background-color:#fff;margin-top:.625rem}.tabsetnumb .xz>uni-view:nth-of-type(1){color:#d3832a!important}.tabsetnumb .xz>uni-view:nth-of-type(2){background-color:#d3832a!important}.tabsetnumb>uni-view{width:50%;display:flex;flex-direction:column;align-items:center}.tabsetnumb>uni-view>uni-view:nth-of-type(1){font-size:1rem;font-weight:400;color:#020b18;padding:.9375rem 0}.tabsetnumb>uni-view>uni-view:nth-of-type(2){width:3rem;height:.25rem;background-color:rgba(211,131,42,0);border-radius:.125rem}.topbos{display:flex;flex-direction:column}.topbos>.srview{display:flex;align-items:center;padding:.8125rem 1rem;box-sizing:border-box;background-color:#fff;margin-bottom:.125rem}.topbos>.srview:nth-last-child(1){margin-bottom:0}.topbos>.srview>uni-view:nth-of-type(1){width:5.9375rem;font-size:.875rem}.topbos>.srview>uni-view:nth-of-type(2){font-size:.875rem;flex:1}.topbos>.srview>uni-view:nth-of-type(2)>uni-input{flex:1}.tpbx{display:flex;align-items:center;padding:.5625rem .75rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.tpbx>uni-image{flex:none;width:1rem;height:1rem;margin-right:.46875rem}.tpbx>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.tpbx>uni-view .numb{font-size:.875rem;color:#178af2}.viewnum{height:3.125rem;display:flex;align-items:center;justify-content:space-around}.viewnum>uni-view{font-size:.875rem;font-weight:400;color:#020b18}
diff --git a/unpackage/dist/build/app-plus/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.css b/unpackage/dist/build/app-plus/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.css
index 6c71bc7..2a2d7fe 100644
--- a/unpackage/dist/build/app-plus/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.css
+++ b/unpackage/dist/build/app-plus/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.css
@@ -1 +1 @@
-.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.mabxtop{position:relative;width:21.375rem;background:#FFFFFF;border-radius:.625rem;margin:auto;margin-top:.625rem;padding:1.875rem;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center}.mabxtop>uni-view{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5625rem}.mabxtop>uni-view:nth-last-child(1){margin-bottom:0}.mabxtop>uni-view>uni-view{display:flex;flex-direction:column;align-items:flex-start}.mabxtop>uni-view>uni-view:nth-of-type(1){width:70%}.mabxtop>uni-view>uni-view:nth-of-type(2){width:30%}.mabxtop>uni-view>uni-view>uni-view:nth-of-type(1){font-size:1rem;font-weight:400;color:#020b18;word-wrap:break-word;word-break:break-all}.mabxtop>uni-view>uni-view>uni-view:nth-of-type(2){font-size:.875rem;font-weight:400;color:#90a0af}.bgimg{position:fixed;left:0;top:0;width:100%}.scvmabx{width:21.375rem;height:45vh;margin:auto;margin-top:.625rem}.scvmabx .maxboxs{width:100%;display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs .chuanhuo{border:#ff0000}.scvmabx .maxboxs .weiqt,.scvmabx .maxboxs .qitao{position:absolute;right:0;top:0;width:2.1875rem;height:2.1875rem}.scvmabx .maxboxs>.items{width:21.5625rem;display:flex;flex-direction:column;align-items:center;padding:.625rem .9375rem;box-sizing:border-box;background-color:#fff;border-radius:.3125rem;margin-bottom:.9375rem;position:relative}.scvmabx .maxboxs>.items:nth-last-child(1){margin-bottom:.625rem}.scvmabx .maxboxs>.items .tophd{width:100%;display:flex;align-items:flex-start;justify-content:flex-start;padding:.9375rem .625rem .46875rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvmabx .maxboxs>.items .tophd>uni-image{width:1.5rem;height:1.5rem;margin-right:.3125rem;box-sizing:border-box}.scvmabx .maxboxs>.items .tophd>uni-view{font-size:1rem;color:#020b18;font-weight:400;word-wrap:break-word;word-break:break-all}.scvmabx .maxboxs>.items .tophd>uni-view:nth-of-type(1){width:4.0625rem}.scvmabx .maxboxs>.items .tophd>uni-view:nth-of-type(2){flex:1}.scvmabx .maxboxs>.items .numbxvie{width:100%;display:flex;align-items:center;justify-content:space-around;padding:.46875rem .78125rem;box-sizing:border-box}.scvmabx .maxboxs>.items .numbxvie .zhon{color:#d3832a}.scvmabx .maxboxs>.items .numbxvie .yish{color:#1197eb}.scvmabx .maxboxs>.items .numbxvie .weish{color:#020b18}.scvmabx .maxboxs>.items .numbxvie>uni-view{display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items .numbxvie>uni-view>uni-view:nth-of-type(1){font-size:1.125rem;margin-bottom:.375rem}.scvmabx .maxboxs>.items .numbxvie>uni-view>uni-view:nth-of-type(2){font-size:.875rem}.headtop{width:21.375rem;padding:.625rem;display:flex;align-items:center;justify-content:space-between;background-color:#fff;padding:.625rem .9375rem;box-sizing:border-box;position:relative;margin:auto;border-radius:.625rem;margin-top:.9375rem}.headtop>uni-view{flex:1}.headtop>uni-view>uni-input{flex:1;font-size:.875rem}.hedtopt{display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:1.125rem 1rem;box-sizing:border-box}.hedtopt .typto{display:flex;align-items:center;justify-content:space-between;width:100%;font-size:.875rem;font-weight:400;color:#092c4d;margin-bottom:.625rem}.hedtopt .typto:nth-last-child(1){margin-bottom:0}.hedtopt .typto>uni-view{flex:1}
+.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.mabxtop{position:relative;width:21.375rem;background:#FFFFFF;border-radius:.625rem;margin:auto;margin-top:.625rem;padding:1.875rem;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center}.mabxtop>uni-view{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:.3125rem}.mabxtop>uni-view:nth-last-child(1){margin-bottom:0}.mabxtop>uni-view>uni-view{display:flex;flex-direction:column;align-items:flex-start}.mabxtop>uni-view>uni-view:nth-of-type(1){width:60%}.mabxtop>uni-view>uni-view:nth-of-type(2){width:40%}.mabxtop>uni-view>uni-view>uni-view:nth-of-type(1){font-size:1rem;font-weight:400;color:#020b18;word-wrap:break-word;word-break:break-all}.mabxtop>uni-view>uni-view>uni-view:nth-of-type(2){font-size:.875rem;font-weight:400;color:#90a0af}.bgimg{position:fixed;left:0;top:0;width:100%}.scvmabx{width:21.375rem;height:45vh;margin:auto;margin-top:.625rem}.scvmabx .maxboxs{width:100%;display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs .chuanhuo{border:#ff0000}.scvmabx .maxboxs .weiqt,.scvmabx .maxboxs .qitao{position:absolute;right:0;top:0;width:2.1875rem;height:2.1875rem}.scvmabx .maxboxs>.items{width:21.5625rem;display:flex;flex-direction:column;align-items:center;padding:.625rem .9375rem;box-sizing:border-box;background-color:#fff;border-radius:.3125rem;margin-bottom:.9375rem;position:relative}.scvmabx .maxboxs>.items:nth-last-child(1){margin-bottom:.625rem}.scvmabx .maxboxs>.items .tophd{width:100%;display:flex;align-items:flex-start;justify-content:flex-start;padding:.9375rem .625rem .46875rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvmabx .maxboxs>.items .tophd>uni-image{width:1.5rem;height:1.5rem;margin-right:.3125rem;box-sizing:border-box}.scvmabx .maxboxs>.items .tophd>uni-view{font-size:1rem;color:#020b18;font-weight:400;word-wrap:break-word;word-break:break-all}.scvmabx .maxboxs>.items .tophd>uni-view:nth-of-type(1){width:5.625rem}.scvmabx .maxboxs>.items .tophd>uni-view:nth-of-type(2){flex:1}.scvmabx .maxboxs>.items .tophd1{width:100%;display:flex;box-sizing:border-box;padding:.46875rem .625rem;border-bottom:.125rem solid #EEEEEE}.scvmabx .maxboxs>.items .tophd1>uni-view{display:flex;flex:1;align-items:center}.scvmabx .maxboxs>.items .tophd1 uni-image{width:2rem;height:2rem}.scvmabx .maxboxs>.items .numbxvie{width:100%;display:flex;align-items:center;justify-content:space-around;padding:.46875rem .78125rem;box-sizing:border-box}.scvmabx .maxboxs>.items .numbxvie .zhon{color:#d3832a}.scvmabx .maxboxs>.items .numbxvie .yish{color:#1197eb}.scvmabx .maxboxs>.items .numbxvie .weish{color:#020b18}.scvmabx .maxboxs>.items .numbxvie>uni-view{display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items .numbxvie>uni-view>uni-view:nth-of-type(1){font-size:1.125rem;margin-bottom:.375rem}.scvmabx .maxboxs>.items .numbxvie>uni-view>uni-view:nth-of-type(2){font-size:.875rem}.headtop{width:21.375rem;padding:.625rem;display:flex;align-items:center;justify-content:space-between;background-color:#fff;padding:.625rem .9375rem;box-sizing:border-box;position:relative;margin:auto;border-radius:.625rem;margin-top:.9375rem}.headtop>uni-view{flex:1}.headtop>uni-view>uni-input{flex:1;font-size:.875rem}.hedtopt{display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:1.125rem 1rem;box-sizing:border-box}.hedtopt .typto{display:flex;align-items:center;justify-content:space-between;width:100%;font-size:.875rem;font-weight:400;color:#092c4d;margin-bottom:.625rem}.hedtopt .typto:nth-last-child(1){margin-bottom:0}.hedtopt .typto>uni-view{flex:1}.tabBar[data-v-2ba57429]{margin-top:.3125rem;padding:0 .9375rem;display:flex}.tabBar_item[data-v-2ba57429]{flex:1;flex-basis:0;text-align:center;line-height:2.5rem;background:#fff;position:relative}.tabBar_item[data-v-2ba57429]:after{content:"";display:block;position:absolute;height:.125rem;background:#d3832a;width:0;left:50%;bottom:0;transition:all .5s}.tabBar_item.active[data-v-2ba57429]:after{left:0;width:100%}.buts[data-v-2ba57429]{width:10rem;height:2.75rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff;margin:auto;margin-top:.625rem}.tanchuangbg[data-v-2ba57429]{width:100%;height:100%;position:fixed;z-index:99;left:0;top:0;background-color:rgba(0,0,0,.314);display:flex;align-items:center;justify-content:center;transition:all 1s}.tanchuangbg .tanbx[data-v-2ba57429]{width:20.9375rem;background-color:#fff;box-sizing:border-box;border-radius:.3125rem;display:flex;flex-direction:column;align-items:center;padding:.9375rem}.tanchuangbg .tanbx .titlran[data-v-2ba57429]{font-size:1rem;color:#092c4d;margin-bottom:1.25rem}.tanchuangbg .tanbx .textareabx[data-v-2ba57429]{width:17.5rem;height:7.5rem;background:#F5F5F6;border-radius:.25rem;padding:.625rem 1.25rem;box-sizing:border-box}.tanchuangbg .tanbx .textareabx>uni-textarea[data-v-2ba57429]{width:100%;height:100%;box-sizing:border-box;font-size:.875rem;font-weight:400}.tanchuangbg .tanbx .btx[data-v-2ba57429]{display:flex;align-items:center;justify-content:space-around;margin-top:1.5625rem}.tanchuangbg .tanbx .btx>uni-view[data-v-2ba57429]{display:flex;align-items:center;justify-content:center;width:8.125rem;height:2.75rem;border-radius:.25rem;font-size:1rem}.tanchuangbg .tanbx .btx>.cancel[data-v-2ba57429]{background-color:#f5f5f6;color:#5a6875;margin-right:.625rem}.tanchuangbg .tanbx .btx>.confirm[data-v-2ba57429]{background-color:#d3832a;color:#fff}.tanchuangbg .inputbox[data-v-2ba57429]{width:20.9375rem;background-color:#fff;box-sizing:border-box;border-radius:.3125rem;display:flex;flex-direction:column;align-items:center;padding:.9375rem}.tanchuangbg .inputbox .inputscan[data-v-2ba57429]{width:100%;display:flex;align-items:center;justify-content:space-around}.tanchuangbg .inputbox .inputscan>uni-input[data-v-2ba57429]{width:13.75rem;height:2rem;border:.03125rem solid #092C4D30;border-radius:.25rem;font-size:.875rem;padding:0 .625rem;box-sizing:border-box}.tanchuangbg .inputbox .inputscan .scanbt[data-v-2ba57429]{width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:.9375rem;font-weight:400;color:#fff}.tanchuangbg .inputbox .scvbw[data-v-2ba57429]{width:100%;height:14.0625rem;margin-top:.9375rem}.tanchuangbg .inputbox .scvbw .scboxitem[data-v-2ba57429]{display:flex;flex-direction:column;align-items:center}.tanchuangbg .inputbox .scvbw .scboxitem .items[data-v-2ba57429]{width:18.4375rem;display:flex;flex-direction:column;box-shadow:0 .0625rem .3125rem #e2e2e3;margin-top:.3125rem;padding:.625rem;box-sizing:border-box;position:relative}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite[data-v-2ba57429]{width:100%;display:flex;align-items:center;justify-content:center}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite>.itembox[data-v-2ba57429]{width:100%;display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;font-size:.875rem;color:#020b18;border:.03125rem solid #D3832A;padding:.3125rem .625rem;box-sizing:border-box;border-radius:.625rem;color:#d3832a}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite>.itembox>uni-view[data-v-2ba57429]{word-wrap:break-word;word-break:break-all}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s[data-v-2ba57429]{display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s>uni-view[data-v-2ba57429]{min-width:50%;display:flex;align-items:center;justify-content:flex-start;font-size:.875rem}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s>uni-view>uni-view[data-v-2ba57429]:nth-of-type(1){color:#90a0af}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s>uni-view>uni-view[data-v-2ba57429]:nth-of-type(2){color:#092c4d}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu[data-v-2ba57429]{display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu>uni-view[data-v-2ba57429]{display:flex;align-items:center;justify-content:flex-start;font-size:.875rem}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu>uni-view>uni-view[data-v-2ba57429]:nth-of-type(1){color:#90a0af}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu>uni-view>uni-input[data-v-2ba57429]{width:6.25rem;padding:0 .46875rem;border:.03125rem solid #00000020}.tanchuangbg .inputbox .btx[data-v-2ba57429]{display:flex;align-items:center;justify-content:space-around;margin-top:1.5625rem}.tanchuangbg .inputbox .btx>uni-view[data-v-2ba57429]{display:flex;align-items:center;justify-content:center;width:8.125rem;height:2.375rem;border-radius:.21875rem;font-size:.875rem}.tanchuangbg .inputbox .btx>.cancel[data-v-2ba57429]{background-color:#f5f5f6;color:#5a6875;margin-right:.625rem}.tanchuangbg .inputbox .btx>.confirm[data-v-2ba57429]{background-color:#d3832a;color:#fff}
diff --git a/unpackage/dist/build/app-plus/pagesHome/pages/PeopleScanUp/PeopleScanUp.css b/unpackage/dist/build/app-plus/pagesHome/pages/PeopleScanUp/PeopleScanUp.css
index d056dca..87b4545 100644
--- a/unpackage/dist/build/app-plus/pagesHome/pages/PeopleScanUp/PeopleScanUp.css
+++ b/unpackage/dist/build/app-plus/pagesHome/pages/PeopleScanUp/PeopleScanUp.css
@@ -1 +1 @@
-.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.tanchuangbg{width:100%;height:100%;position:fixed;z-index:99;left:0;top:0;background-color:rgba(0,0,0,.314);display:flex;align-items:center;justify-content:center;transition:all 1s}.tanchuangbg .makinp{width:18.4375rem;border:.03125rem solid #00000020;color:#020b18;margin-bottom:.3125rem;box-sizing:border-box;font-size:.875rem;padding:.3125rem .625rem}.tanchuangbg .inputbox{width:20.9375rem;background-color:#fff;box-sizing:border-box;border-radius:.3125rem;display:flex;flex-direction:column;align-items:center;padding:.9375rem}.tanchuangbg .inputbox .inputscan{width:100%;display:flex;align-items:center;justify-content:space-around}.tanchuangbg .inputbox .inputscan>uni-input{width:13.75rem;height:2rem;border:.03125rem solid #092C4D30;border-radius:.25rem;font-size:.875rem;padding:0 .625rem;box-sizing:border-box}.tanchuangbg .inputbox .inputscan .scanbt{width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:.9375rem;font-weight:400;color:#fff}.tanchuangbg .inputbox .scvbw{width:100%;height:14.0625rem;margin-top:.9375rem}.tanchuangbg .inputbox .scvbw .scboxitem{display:flex;flex-direction:column;align-items:center}.tanchuangbg .inputbox .scvbw .scboxitem .items{width:18.4375rem;display:flex;flex-direction:column;box-shadow:0 .0625rem .3125rem #e2e2e3;margin-top:.3125rem;padding:.625rem;box-sizing:border-box}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite{width:100%}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite>.itembox{width:100%;margin-bottom:.625rem;display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;font-size:.875rem;color:#020b18;border:.03125rem solid #D3832A;padding:.3125rem .625rem;box-sizing:border-box;border-radius:.625rem;color:#d3832a}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite>.itembox:last-child{margin-bottom:0}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite>.itembox>uni-view{word-wrap:break-word;word-break:break-all}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s{display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s .title{white-space:nowrap}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s>uni-view{flex:1;display:flex;align-items:center;justify-content:flex-start;font-size:.875rem}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s>uni-view>uni-view:nth-of-type(1){color:#90a0af}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s>uni-view>uni-view:nth-of-type(2){color:#092c4d}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu{display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu>uni-view{display:flex;align-items:center;justify-content:flex-start;font-size:.875rem}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu>uni-view>uni-view:nth-of-type(1){color:#90a0af}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu>uni-view>uni-input{width:6.25rem;padding:0 .46875rem;border:.03125rem solid #00000020}.tanchuangbg .inputbox .btx{display:flex;align-items:center;justify-content:space-around;margin-top:1.5625rem}.tanchuangbg .inputbox .btx>uni-view{display:flex;align-items:center;justify-content:center;width:8.125rem;height:2.375rem;border-radius:.21875rem;font-size:.875rem}.tanchuangbg .inputbox .btx>.cancel{background-color:#f5f5f6;color:#5a6875;margin-right:.625rem}.tanchuangbg .inputbox .btx>.confirm{background-color:#d3832a;color:#fff}.butbox{display:flex;align-items:center;justify-content:center;margin-top:.46875rem}.butbox>uni-view{width:10rem;height:3rem;background:#D3832A;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.butbox>uni-view:nth-last-child(1){margin-left:.9375rem}.sclcs{width:21.4375rem;height:27vh;margin:auto}.sclcs .visc{width:100%;display:flex;flex-direction:column;align-items:center}.sclcs .visc .item1{width:21.4375rem;padding:0 .75rem;box-sizing:border-box;background-color:#fff;border-radius:.9375rem;position:relative;margin-bottom:.9375rem}.sclcs .visc .item1:nth-last-child(1){margin-bottom:0}.sclcs .visc .item1 .removeicons{position:absolute;right:0}.sclcs .visc .item1 .qtimgzt{width:3rem;height:3rem;position:absolute;right:0;top:0}.sclcs .visc .item1>uni-view{width:100%;display:flex;align-items:center;padding:.5625rem .75rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.sclcs .visc .item1>uni-view:nth-last-child(1){border-bottom:0 solid #EEEEEE00!important}.sclcs .visc .item1>uni-view>uni-image{width:2rem;height:2rem;margin-right:.46875rem}.sclcs .visc .item1>uni-view>uni-view{font-size:.875rem;font-weight:400;color:#020b18;word-wrap:break-word;word-break:break-all}.sclcs .visc .item1>uni-view>uni-view .numb{font-size:.875rem;color:#178af2}.sclcs .visc .item2{width:21.4375rem;padding:0 .75rem;box-sizing:border-box;background-color:#fff;border-radius:.9375rem;position:relative;margin-bottom:.9375rem}.sclcs .visc .item2 .qtimgzt{width:3rem;height:3rem;position:absolute;right:0;top:0}.sclcs .visc .item2>.tpbx{display:flex;align-items:center;padding:.5625rem .75rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.sclcs .visc .item2>.tpbx>uni-image{width:2rem;height:2rem;margin-right:.46875rem}.sclcs .visc .item2>.tpbx>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.sclcs .visc .item2>.tpbx>uni-view .numb{font-size:.875rem;color:#178af2}.sclcs .visc .item2>.viewnum{height:3.125rem;display:flex;align-items:center;justify-content:space-around}.sclcs .visc .item2>.viewnum>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.tabchecklist{width:21.375rem;height:3.125rem;margin:auto;margin-top:.9375rem;margin-bottom:.625rem;box-sizing:border-box;display:flex;align-items:center;justify-content:space-around}.tabchecklist .xz>uni-view:nth-of-type(1){color:#d3832a!important}.tabchecklist .xz>uni-view:nth-of-type(2){background-color:#d3832a!important}.tabchecklist>uni-view{display:flex;flex-direction:column;align-items:center}.tabchecklist>uni-view>uni-view:nth-of-type(1){font-size:1rem;font-weight:400;margin-bottom:.625rem;color:#020b18;transition:all .2s}.tabchecklist>uni-view>uni-view:nth-of-type(2){width:3rem;height:.25rem;background-color:rgba(211,131,42,0);border-radius:.125rem;transition:all .2s}.topviewbox{width:21.4375rem;background:#FFFFFF;border-radius:.625rem;opacity:1;box-sizing:border-box;position:relative;margin:auto;margin-top:.625rem}.topviewbox>.oebox{padding:.625rem .78125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE;display:flex;align-items:center;justify-content:flex-start}.topviewbox>.oebox>uni-view{font-size:1rem;font-weight:400;color:#020b18}.topviewbox>.oebox>uni-image{width:2rem;height:2rem;margin-right:.4375rem}.topviewbox .numbox{width:100%;padding:.625rem;box-sizing:border-box}.topviewbox .numbox>uni-view{width:20rem;height:5rem;background:#F5F7FB;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:space-around}.topviewbox .numbox>uni-view>uni-view{display:flex;flex-direction:column;align-items:center}.topviewbox .numbox>uni-view>uni-view:nth-of-type(1)>uni-view:nth-of-type(2){color:#ff9545!important}.topviewbox .numbox>uni-view>uni-view:nth-of-type(2)>uni-view:nth-of-type(2){color:#178af2!important}.topviewbox .numbox>uni-view>uni-view>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#020b18;margin-bottom:.5625rem}.topviewbox .numbox>uni-view>uni-view>uni-view:nth-of-type(2){font-size:1.125rem;font-weight:400}.topviewbox>.contview{display:flex;flex-direction:column;width:100%;padding:.625rem;box-sizing:border-box}.topviewbox>.contview>uni-view{display:flex;align-items:center;justify-content:flex-start;margin-bottom:.625rem}.topviewbox>.contview>uni-view:nth-last-child(1){margin-bottom:0}.topviewbox>.contview>uni-view>uni-view:nth-of-type(1){display:flex;align-items:center;justify-content:center;margin-right:.9375rem}.topviewbox>.contview>uni-view>uni-view:nth-of-type(1)>uni-image{width:1.5rem;height:1.5rem;margin-right:.375rem}.topviewbox>.contview>uni-view>uni-view:nth-of-type(1)>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.topviewbox>.contview>uni-view>uni-view:nth-of-type(2){font-size:.875rem;font-weight:400;color:#020b18}.bgimg{position:absolute;left:0;top:0;width:100%}.scanqcview{display:flex;align-items:center;justify-content:center;position:relative;margin-top:.3125rem}.scanqcview>uni-image{width:2.25rem;height:2.25rem;margin-right:.5rem}.scanqcview>uni-view{font-size:1rem;font-weight:400;color:#fff}
+.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.tanchuangbg{width:100%;height:100%;position:fixed;z-index:99;left:0;top:0;background-color:rgba(0,0,0,.314);display:flex;align-items:center;justify-content:center;transition:all 1s}.tanchuangbg .makinp{width:18.4375rem;border:.03125rem solid #00000020;color:#020b18;margin-bottom:.3125rem;box-sizing:border-box;font-size:.875rem;padding:.3125rem .625rem}.tanchuangbg .inputbox{width:20.9375rem;background-color:#fff;box-sizing:border-box;border-radius:.3125rem;display:flex;flex-direction:column;align-items:center;padding:.9375rem}.tanchuangbg .inputbox .inputscan{width:100%;display:flex;align-items:center;justify-content:space-around}.tanchuangbg .inputbox .inputscan>uni-input{width:13.75rem;height:1rem;border:.03125rem solid #092C4D30;border-radius:.25rem;font-size:.875rem;padding:0 .625rem;box-sizing:border-box}.tanchuangbg .inputbox .inputscan .scanbt{width:4rem;height:1rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:.9375rem;font-weight:400;color:#fff}.tanchuangbg .inputbox .scvbw{width:100%;height:14.0625rem;margin-top:.9375rem}.tanchuangbg .inputbox .scvbw .scboxitem{display:flex;flex-direction:column;align-items:center}.tanchuangbg .inputbox .scvbw .scboxitem .items{width:18.4375rem;display:flex;flex-direction:column;box-shadow:0 .0625rem .3125rem #e2e2e3;margin-top:.3125rem;padding:.625rem;box-sizing:border-box}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite{width:100%}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite>.itembox{width:100%;margin-bottom:.625rem;display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;font-size:.875rem;color:#020b18;border:.03125rem solid #D3832A;padding:.3125rem .625rem;box-sizing:border-box;border-radius:.625rem;color:#d3832a}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite>.itembox:last-child{margin-bottom:0}.tanchuangbg .inputbox .scvbw .scboxitem .items>.lisbite>.itembox>uni-view{word-wrap:break-word;word-break:break-all}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s{display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s .title{white-space:nowrap}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s>uni-view{flex:1;display:flex;align-items:center;justify-content:flex-start;font-size:.875rem}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s>uni-view>uni-view:nth-of-type(1){color:#90a0af}.tanchuangbg .inputbox .scvbw .scboxitem .items>.type1s>uni-view>uni-view:nth-of-type(2){color:#092c4d}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu{display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu>uni-view{display:flex;align-items:center;justify-content:flex-start;font-size:.875rem}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu>uni-view>uni-view:nth-of-type(1){color:#90a0af}.tanchuangbg .inputbox .scvbw .scboxitem .items .rksu>uni-view>uni-input{width:6.25rem;padding:0 .46875rem;border:.03125rem solid #00000020}.tanchuangbg .inputbox .btx{display:flex;align-items:center;justify-content:space-around;margin-top:1.5625rem}.tanchuangbg .inputbox .btx>uni-view{display:flex;align-items:center;justify-content:center;width:8.125rem;height:2.375rem;border-radius:.21875rem;font-size:.875rem}.tanchuangbg .inputbox .btx>.cancel{background-color:#f5f5f6;color:#5a6875;margin-right:.625rem}.tanchuangbg .inputbox .btx>.confirm{background-color:#d3832a;color:#fff}.butbox{display:flex;align-items:center;justify-content:center;margin-top:.46875rem}.butbox>uni-view{width:10rem;height:3rem;background:#D3832A;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.butbox>uni-view:nth-last-child(1){margin-left:.9375rem}.sclcs{width:21.4375rem;height:27vh;margin:auto}.sclcs .visc{width:100%;display:flex;flex-direction:column;align-items:center}.sclcs .visc .item1{width:21.4375rem;padding:0 .75rem;box-sizing:border-box;background-color:#fff;border-radius:.9375rem;position:relative;margin-bottom:.9375rem}.sclcs .visc .item1:nth-last-child(1){margin-bottom:0}.sclcs .visc .item1 .removeicons{position:absolute;right:0}.sclcs .visc .item1 .qtimgzt{width:3rem;height:3rem;position:absolute;right:0;top:0}.sclcs .visc .item1>uni-view{width:100%;display:flex;align-items:center;padding:.5625rem .75rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.sclcs .visc .item1>uni-view:nth-last-child(1){border-bottom:0 solid #EEEEEE00!important}.sclcs .visc .item1>uni-view>uni-image{width:1rem;height:1rem;margin-right:.46875rem}.sclcs .visc .item1>uni-view>uni-view{font-size:.875rem;font-weight:400;color:#020b18;word-wrap:break-word;word-break:break-all}.sclcs .visc .item1>uni-view>uni-view .numb{font-size:.875rem;color:#178af2}.sclcs .visc .item2{width:21.4375rem;padding:0 .75rem;box-sizing:border-box;background-color:#fff;border-radius:.9375rem;position:relative;margin-bottom:.9375rem}.sclcs .visc .item2 .qtimgzt{width:3rem;height:3rem;position:absolute;right:0;top:0}.sclcs .visc .item2>.tpbx{display:flex;align-items:center;padding:.5625rem .75rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.sclcs .visc .item2>.tpbx>uni-image{width:1rem;height:1rem;margin-right:.46875rem}.sclcs .visc .item2>.tpbx>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.sclcs .visc .item2>.tpbx>uni-view .numb{font-size:.875rem;color:#178af2}.sclcs .visc .item2>.viewnum{height:3.125rem;display:flex;align-items:center;justify-content:space-around}.sclcs .visc .item2>.viewnum>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.tabchecklist{width:21.375rem;height:3.125rem;margin:auto;margin-top:.9375rem;margin-bottom:.625rem;box-sizing:border-box;display:flex;align-items:center;justify-content:space-around}.tabchecklist .xz>uni-view:nth-of-type(1){color:#d3832a!important}.tabchecklist .xz>uni-view:nth-of-type(2){background-color:#d3832a!important}.tabchecklist>uni-view{display:flex;flex-direction:column;align-items:center}.tabchecklist>uni-view>uni-view:nth-of-type(1){font-size:1rem;font-weight:400;margin-bottom:.625rem;color:#020b18;transition:all .2s}.tabchecklist>uni-view>uni-view:nth-of-type(2){width:3rem;height:.25rem;background-color:rgba(211,131,42,0);border-radius:.125rem;transition:all .2s}.topviewbox{width:21.4375rem;background:#FFFFFF;border-radius:.625rem;opacity:1;box-sizing:border-box;position:relative;margin:auto;margin-top:.625rem}.topviewbox>.oebox{padding:.625rem .78125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE;display:flex;align-items:center;justify-content:flex-start}.topviewbox>.oebox>uni-view{font-size:1rem;font-weight:400;color:#020b18}.topviewbox>.oebox>uni-image{width:1rem;height:1rem;margin-right:.4375rem}.topviewbox .numbox{width:100%;padding:.625rem;box-sizing:border-box}.topviewbox .numbox>uni-view{width:20rem;height:5rem;background:#F5F7FB;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:space-around}.topviewbox .numbox>uni-view>uni-view{display:flex;flex-direction:column;align-items:center}.topviewbox .numbox>uni-view>uni-view:nth-of-type(1)>uni-view:nth-of-type(2){color:#ff9545!important}.topviewbox .numbox>uni-view>uni-view:nth-of-type(2)>uni-view:nth-of-type(2){color:#178af2!important}.topviewbox .numbox>uni-view>uni-view>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#020b18;margin-bottom:.5625rem}.topviewbox .numbox>uni-view>uni-view>uni-view:nth-of-type(2){font-size:1.125rem;font-weight:400}.topviewbox>.contview{display:flex;flex-direction:column;width:100%;padding:.625rem;box-sizing:border-box}.topviewbox>.contview>uni-view{display:flex;align-items:center;justify-content:flex-start;margin-bottom:.625rem}.topviewbox>.contview>uni-view:nth-last-child(1){margin-bottom:0}.topviewbox>.contview>uni-view>uni-view:nth-of-type(1){display:flex;align-items:center;justify-content:center;margin-right:.9375rem}.topviewbox>.contview>uni-view>uni-view:nth-of-type(1)>uni-image{width:1.5rem;height:1.5rem;margin-right:.375rem}.topviewbox>.contview>uni-view>uni-view:nth-of-type(1)>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.topviewbox>.contview>uni-view>uni-view:nth-of-type(2){font-size:.875rem;font-weight:400;color:#020b18}.bgimg{position:absolute;left:0;top:0;width:100%}.scanqcview{display:flex;align-items:center;justify-content:center;position:relative;margin-top:.3125rem}.scanqcview>uni-image{width:2.25rem;height:2.25rem;margin-right:.5rem}.scanqcview>uni-view{font-size:1rem;font-weight:400;color:#fff}
diff --git a/unpackage/dist/build/app-plus/pagesHome/pages/RemoveTray/RemoveTray.css b/unpackage/dist/build/app-plus/pagesHome/pages/RemoveTray/RemoveTray.css
index 90e0835..c00e2c9 100644
--- a/unpackage/dist/build/app-plus/pagesHome/pages/RemoveTray/RemoveTray.css
+++ b/unpackage/dist/build/app-plus/pagesHome/pages/RemoveTray/RemoveTray.css
@@ -1 +1 @@
-.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.topbos{display:flex;flex-direction:column}.topbos>.srview{display:flex;align-items:center;padding:.8125rem 1rem;box-sizing:border-box;background-color:#fff;margin-bottom:.125rem}.topbos>.srview .sbm{width:4.6875rem;height:2rem;display:flex;align-items:center;justify-content:center;background-color:#d3832a;color:#fff;border-radius:.3125rem}.topbos>.srview:nth-last-child(1){margin-bottom:0}.topbos>.srview>uni-view:nth-of-type(1){width:5.9375rem;font-size:.875rem}.topbos>.srview>uni-view:nth-of-type(2){font-size:.875rem;flex:1;display:flex;align-items:center}.topbos>.srview>uni-view:nth-of-type(2)>uni-input{flex:1;font-size:.875rem}.flbuts{width:10rem;height:2.75rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;color:#fff;margin:auto;position:fixed;left:50%;transform:translate(-50%);bottom:1.875rem}.bgimg{position:absolute;left:0;top:0;width:100%}.scvmabx{width:100%;height:68vh;margin-top:.625rem}.scvmabx .maxboxs{width:100%;display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items{width:21.5625rem;display:flex;flex-direction:column;align-items:center;padding:.625rem .9375rem;box-sizing:border-box;background-color:#fff;border-radius:.3125rem;margin-bottom:.9375rem}.scvmabx .maxboxs>.items:nth-last-child(1){margin-bottom:.625rem}.scvmabx .maxboxs>.items .tophd{width:100%;display:flex;align-items:flex-start;justify-content:flex-start;padding:.46875rem .78125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvmabx .maxboxs>.items .tophd>uni-image{width:1.5rem;height:1.5rem;margin-right:.3125rem}.scvmabx .maxboxs>.items .tophd>uni-view{font-size:1rem;color:#020b18;font-weight:400;word-wrap:break-word;word-break:break-all}.scvmabx .maxboxs>.items .tophd>uni-view:nth-of-type(2){flex:1}.scvmabx .maxboxs>.items .tophd1{width:100%;display:flex;align-items:center;justify-content:space-between;padding:.46875rem .78125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvmabx .maxboxs>.items .tophd1>uni-image{width:1.5rem;height:1.5rem;margin-right:-.625rem}.scvmabx .maxboxs>.items .tophd1>uni-view{display:flex;align-items:center}.scvmabx .maxboxs>.items .tophd1>uni-view>uni-image{width:1.5rem;height:1.5rem;margin-right:.3125rem}.scvmabx .maxboxs>.items .numbxvie{width:100%;display:flex;align-items:center;justify-content:space-around;padding:.46875rem .78125rem;box-sizing:border-box}.scvmabx .maxboxs>.items .numbxvie .zhon{color:#d3832a}.scvmabx .maxboxs>.items .numbxvie .yish{color:#1197eb}.scvmabx .maxboxs>.items .numbxvie .weish{color:#020b18}.scvmabx .maxboxs>.items .numbxvie>uni-view{display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items .numbxvie>uni-view>uni-view:nth-of-type(1){font-size:1.125rem;margin-bottom:.375rem}.scvmabx .maxboxs>.items .numbxvie>uni-view>uni-view:nth-of-type(2){font-size:.875rem}.scvmabx .maxboxs>.items .type1{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.scvmabx .maxboxs>.items .type1>uni-view{display:flex;align-items:center;font-size:.875rem}.scvmabx .maxboxs>.items .type1>uni-view>uni-view:nth-of-type(1){color:#90a0af}.scvmabx .maxboxs>.items .type1>uni-view>uni-view:nth-of-type(2){color:#092c4d}
+.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.tabBar[data-v-bdb05adb]{margin-top:.3125rem;padding:0 .9375rem;display:flex}.tabBar_item[data-v-bdb05adb]{flex:1;flex-basis:0;text-align:center;line-height:2.5rem;background:#fff;position:relative}.tabBar_item[data-v-bdb05adb]:after{content:"";display:block;position:absolute;height:.125rem;background:#d3832a;width:0;left:50%;bottom:0;transition:all .5s}.tabBar_item.active[data-v-bdb05adb]:after{left:0;width:100%}.topbos[data-v-bdb05adb]{display:flex;flex-direction:column}.topbos>.srview[data-v-bdb05adb]{display:flex;align-items:center;padding:.8125rem 1rem;box-sizing:border-box;background-color:#fff;margin-bottom:.125rem}.topbos>.srview .sbm[data-v-bdb05adb]{width:4.6875rem;height:2rem;display:flex;align-items:center;justify-content:center;background-color:#d3832a;color:#fff;border-radius:.3125rem}.topbos>.srview[data-v-bdb05adb]:nth-last-child(1){margin-bottom:0}.topbos>.srview>uni-view[data-v-bdb05adb]:nth-of-type(1){width:5.9375rem;font-size:.875rem}.topbos>.srview>uni-view[data-v-bdb05adb]:nth-of-type(2){font-size:.875rem;flex:1;display:flex;align-items:center}.topbos>.srview>uni-view:nth-of-type(2)>uni-input[data-v-bdb05adb]{flex:1;font-size:.875rem}.flbuts[data-v-bdb05adb]{width:10rem;height:2.75rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;color:#fff;margin:auto;position:fixed;left:50%;transform:translate(-50%);bottom:1.875rem}.bgimg[data-v-bdb05adb]{position:absolute;left:0;top:0;width:100%}.scvmabx[data-v-bdb05adb]{width:100%;height:68vh;margin-top:.625rem}.scvmabx .maxboxs[data-v-bdb05adb]{width:100%;display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items[data-v-bdb05adb]{position:relative;width:21.5625rem;display:flex;flex-direction:column;align-items:center;padding:.625rem .9375rem;box-sizing:border-box;background-color:#fff;border-radius:.3125rem;margin-bottom:.9375rem}.scvmabx .maxboxs>.items[data-v-bdb05adb]:nth-last-child(1){margin-bottom:.625rem}.scvmabx .maxboxs>.items .tophd[data-v-bdb05adb]{width:100%;display:flex;align-items:flex-start;justify-content:flex-start;padding:.46875rem .78125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvmabx .maxboxs>.items .tophd>uni-image[data-v-bdb05adb]{width:1.5rem;height:1.5rem;margin-right:.3125rem}.scvmabx .maxboxs>.items .tophd>uni-view[data-v-bdb05adb]{font-size:1rem;color:#020b18;font-weight:400;word-wrap:break-word;word-break:break-all}.scvmabx .maxboxs>.items .tophd>uni-view[data-v-bdb05adb]:nth-of-type(2){flex:1}.scvmabx .maxboxs>.items .tophd1[data-v-bdb05adb]{width:100%;display:flex;align-items:center;justify-content:space-between;padding:.46875rem .78125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvmabx .maxboxs>.items .tophd1>uni-image[data-v-bdb05adb]{width:1.5rem;height:1.5rem;margin-right:-.625rem}.scvmabx .maxboxs>.items .tophd1>uni-view[data-v-bdb05adb]{display:flex;align-items:center}.scvmabx .maxboxs>.items .tophd1>uni-view>uni-image[data-v-bdb05adb]{width:1.5rem;height:1.5rem;margin-right:.3125rem}.scvmabx .maxboxs>.items .numbxvie[data-v-bdb05adb]{width:100%;display:flex;align-items:center;justify-content:space-around;padding:.46875rem .78125rem;box-sizing:border-box}.scvmabx .maxboxs>.items .numbxvie .zhon[data-v-bdb05adb]{color:#d3832a}.scvmabx .maxboxs>.items .numbxvie .yish[data-v-bdb05adb]{color:#1197eb}.scvmabx .maxboxs>.items .numbxvie .weish[data-v-bdb05adb]{color:#020b18}.scvmabx .maxboxs>.items .numbxvie>uni-view[data-v-bdb05adb]{display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items .numbxvie>uni-view>uni-view[data-v-bdb05adb]:nth-of-type(1){font-size:1.125rem;margin-bottom:.375rem}.scvmabx .maxboxs>.items .numbxvie>uni-view>uni-view[data-v-bdb05adb]:nth-of-type(2){font-size:.875rem}.scvmabx .maxboxs>.items .type1[data-v-bdb05adb]{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.scvmabx .maxboxs>.items .type1>uni-view[data-v-bdb05adb]{display:flex;align-items:center;font-size:.875rem}.scvmabx .maxboxs>.items .type1>uni-view>uni-view[data-v-bdb05adb]:nth-of-type(1){color:#90a0af}.scvmabx .maxboxs>.items .type1>uni-view>uni-view[data-v-bdb05adb]:nth-of-type(2){color:#092c4d}.weiqt[data-v-bdb05adb],.qitao[data-v-bdb05adb]{position:absolute;right:0;top:0;width:2.1875rem;height:2.1875rem}
diff --git a/unpackage/dist/build/app-plus/pagesHome/pages/Retention/Retention.css b/unpackage/dist/build/app-plus/pagesHome/pages/Retention/Retention.css
index d322358..b665cec 100644
--- a/unpackage/dist/build/app-plus/pagesHome/pages/Retention/Retention.css
+++ b/unpackage/dist/build/app-plus/pagesHome/pages/Retention/Retention.css
@@ -1 +1 @@
-.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.butys{display:flex;align-items:center;margin-top:.625rem;justify-content:space-around}.butys>.conf{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff;background-color:#d3832a}.butys>.qut{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#5a6875;background-color:#fff}.scvm{width:100%;height:74vh;margin-top:.625rem}.scvm .itembox{width:21.4375rem;border-radius:.625rem;padding:0 .625rem;box-sizing:border-box;background-color:#fff;margin:auto;margin-bottom:.625rem}.scvm .itembox>.topon1{display:flex;align-items:center;justify-content:space-between;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvm .itembox>.topon1>uni-view:nth-of-type(1){width:1.5625rem;height:1.5625rem;background:#178AF220;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:500;color:#178af2}.scvm .itembox>.topon1>uni-view:nth-of-type(2){display:flex;align-items:center}.scvm .itembox>.topon1>uni-view:nth-of-type(2)>uni-view{width:4.25rem;height:2rem;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#90a0af;background-color:#f5f5f6;margin-right:.625rem}.scvm .itembox>.topon1>uni-view:nth-of-type(2) .xzc{background-color:#178af2!important;color:#fff!important}.scvm .itembox>.topon1>uni-view:nth-of-type(2) .xze{background-color:#f8544b!important;color:#fff!important}.scvm .itembox>.topon1>uni-view:nth-of-type(2)>uni-image{width:2rem;height:2rem}.scvm .itembox>.topon2{display:flex;align-items:center;justify-content:flex-start;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvm .itembox>.topon2>uni-image{width:2rem;height:2rem;margin-right:.625rem}.scvm .itembox>.topon2>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.topbox{width:100%;padding:.625rem 1rem;box-sizing:border-box;background-color:#fff}.topbox>.scanbox{display:flex;align-items:center;width:21.4375rem;height:2.5rem;background:#F5F5F6;border-radius:.25rem;box-sizing:border-box;padding:.625rem .9375rem;font-size:.875rem;color:#020b18}.topbox>.scanbox>uni-image{width:1rem;height:1rem;margin-right:.375rem}.topbox>.scanbox>uni-input{font-size:.875rem}.topbox .viewboxs{display:flex;align-items:center;justify-content:space-between;margin-top:.625rem}.topbox .viewboxs>uni-view{font-size:.9375rem;font-weight:400;color:#020b18}.topbox .viewboxs .siz{font-size:.875rem}
+.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.butys{display:flex;align-items:center;margin-top:.625rem;justify-content:space-around}.butys>.conf{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff;background-color:#d3832a}.butys>.qut{width:10rem;height:3.125rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#5a6875;background-color:#fff}.scvm{width:100%;height:74vh;margin-top:.625rem}.scvm .itembox{width:21.4375rem;border-radius:.625rem;padding:0 .625rem;box-sizing:border-box;background-color:#fff;margin:auto;margin-bottom:.625rem}.scvm .itembox>.topon1{display:flex;align-items:center;justify-content:space-between;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvm .itembox>.topon1>uni-view:nth-of-type(1){width:1.5625rem;height:1.5625rem;background:#178AF220;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:500;color:#178af2}.scvm .itembox>.topon1>uni-view:nth-of-type(2){display:flex;align-items:center}.scvm .itembox>.topon1>uni-view:nth-of-type(2)>uni-view{width:4.25rem;height:2rem;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#90a0af;background-color:#f5f5f6;margin-right:.625rem}.scvm .itembox>.topon1>uni-view:nth-of-type(2) .xzc{background-color:#178af2!important;color:#fff!important}.scvm .itembox>.topon1>uni-view:nth-of-type(2) .xze{background-color:#f8544b!important;color:#fff!important}.scvm .itembox>.topon1>uni-view:nth-of-type(2)>uni-image{width:1rem;height:1rem}.scvm .itembox>.topon2{display:flex;align-items:center;justify-content:flex-start;padding:.625rem .3125rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.scvm .itembox>.topon2>uni-image{width:1rem;height:1rem;margin-right:.625rem}.scvm .itembox>.topon2>uni-view{font-size:.875rem;font-weight:400;color:#020b18}.topbox{width:100%;padding:.625rem 1rem;box-sizing:border-box;background-color:#fff}.topbox>.scanbox{display:flex;align-items:center;width:21.4375rem;height:2.5rem;background:#F5F5F6;border-radius:.25rem;box-sizing:border-box;padding:.625rem .9375rem;font-size:.875rem;color:#020b18}.topbox>.scanbox>uni-image{width:1rem;height:1rem;margin-right:.375rem}.topbox>.scanbox>uni-input{font-size:.875rem}.topbox .viewboxs{display:flex;align-items:center;justify-content:space-between;margin-top:.625rem}.topbox .viewboxs>uni-view{font-size:.9375rem;font-weight:400;color:#020b18}.topbox .viewboxs .siz{font-size:.875rem}
diff --git a/unpackage/dist/build/app-plus/pagesHome/pages/inventoryDetailList/inventoryDetailList.css b/unpackage/dist/build/app-plus/pagesHome/pages/inventoryDetailList/inventoryDetailList.css
index b87fab0..f8f0562 100644
--- a/unpackage/dist/build/app-plus/pagesHome/pages/inventoryDetailList/inventoryDetailList.css
+++ b/unpackage/dist/build/app-plus/pagesHome/pages/inventoryDetailList/inventoryDetailList.css
@@ -1 +1 @@
-.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.maboxite{width:21.375rem;display:flex;flex-direction:column;padding:.625rem;box-sizing:border-box;background-color:#fff;margin:auto;margin-top:.625rem;border-radius:.625rem}.maboxite>.headtops{width:100%;display:flex;align-items:center;justify-content:space-between;padding:.3125rem 0 .9375rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.maboxite>.headtops>uni-view:nth-of-type(1){display:flex;align-items:center;justify-content:center}.maboxite>.headtops>uni-view:nth-of-type(1)>uni-image{width:1.5rem;height:1.5rem;margin-right:.625rem}.maboxite>.headtops>uni-view:nth-of-type(1)>uni-view{font-size:1rem;font-weight:400;color:#020b18}.maboxite>.headtops>uni-view:nth-of-type(2){font-size:1rem;font-weight:400;color:#d3832a}.mabxtop{position:relative;width:21.375rem;background:#FFFFFF;border-radius:.625rem;margin:auto;margin-top:2.5rem;padding:1.875rem;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center}.mabxtop>.type1s{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:2.1875rem}.mabxtop>.type1s:nth-last-child(1){margin-bottom:0}.mabxtop>.type1s>uni-view{width:50%;display:flex;flex-direction:column;align-items:flex-start}.mabxtop>.type1s>uni-view>uni-view:nth-of-type(1){font-size:1rem;font-weight:400;color:#020b18}.mabxtop>.type1s>uni-view>uni-view:nth-of-type(2){font-size:.875rem;font-weight:400;color:#90a0af}.mabxtop .type2s{width:100%;display:flex;align-items:center;justify-content:space-between}.mabxtop .type2s>uni-view:nth-of-type(1){width:50%;font-size:1rem;font-weight:400;color:#020b18}.mabxtop .type2s>uni-view:nth-of-type(2){width:50%;font-size:1rem;font-weight:400;color:#1197eb}.bgimg{position:absolute;left:0;top:0;width:100%}.scvbox{width:100%;height:48vh;margin-top:.625rem}.scvbox .maxboxs{width:100%;display:flex;flex-direction:column;align-items:center}.scvbox .maxboxs>.items{width:100%;display:flex;align-items:flex-start;padding:.625rem 0;box-sizing:border-box;background-color:#fff;border-radius:.3125rem;margin-bottom:.9375rem;border-bottom:.125rem solid #EEEEEE}.scvbox .maxboxs>.items:nth-last-child(1){margin-bottom:.625rem;border-bottom:none}.scvbox .maxboxs>.items .rigth{flex:1}.scvbox .maxboxs>.items .lefticon{display:flex;align-items:flex-start;justify-content:center;margin-right:.9375rem}.scvbox .maxboxs>.items .lefticon>uni-image{width:1.5rem;height:1.5rem}.scvbox .maxboxs>.items .removeicon{height:100%;display:flex;align-items:center;justify-content:center}.scvbox .maxboxs>.items .removeicon>uni-image{width:2rem;height:2rem}.scvbox .maxboxs>.items .removebt{width:4rem;height:2rem;background:#ec2400;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff!important}.scvbox .maxboxs>.items .type1{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.scvbox .maxboxs>.items .type1>uni-view{display:flex;align-items:flex-start;font-size:.875rem}.scvbox .maxboxs>.items .type1>uni-view>uni-view:nth-of-type(1){color:#90a0af}.scvbox .maxboxs>.items .type1>uni-view>uni-view:nth-of-type(2){color:#092c4d}.butsca{display:flex;align-items:center;justify-content:flex-start;background-color:#fff;padding:.625rem .46875rem;box-sizing:border-box}.butsca>uni-view{width:6.375rem;height:2rem;background:#FFFFFF;border-radius:.25rem;opacity:1;border:.0625rem solid #D3832A;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#d3832a;margin-right:.9375rem}.butsca>uni-view:nth-last-child(1){margin-right:0}.headtop{display:flex;flex-direction:column;padding:1.0625rem 1rem;box-sizing:border-box;background-color:#fff}.headtop>uni-view{display:flex;align-items:flex-start;justify-content:space-between;font-size:.875rem;font-weight:400;color:#092c4d;margin-bottom:.75rem}.headtop>uni-view>uni-view{display:flex;align-items:flex-start}.headtop>uni-view>uni-view>uni-view:nth-of-type(1){width:5.3125rem;color:#90a0af}.headtop>uni-view>uni-view>uni-view:nth-of-type(2){color:#092c4d;word-wrap:break-word;word-break:break-all}.headtop>uni-view:nth-of-type(2){margin-bottom:0}.headtop>uni-view>uni-view{flex:1}
+.u-status-bar[data-v-31491727]{width:100%}uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}uni-view[data-v-917ffc31],uni-scroll-view[data-v-917ffc31],uni-swiper-item[data-v-917ffc31]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}.u-navbar--fixed[data-v-917ffc31]{position:fixed;left:0;right:0;top:0;z-index:11}.u-navbar__content[data-v-917ffc31]{display:flex;flex-direction:row;align-items:center;height:44px;background-color:#9acafc;position:relative;justify-content:center}.u-navbar__content__left[data-v-917ffc31],.u-navbar__content__right[data-v-917ffc31]{padding:0 13px;position:absolute;top:0;bottom:0;display:flex;flex-direction:row;align-items:center}.u-navbar__content__left[data-v-917ffc31]{left:0}.u-navbar__content__left--hover[data-v-917ffc31]{opacity:.7}.u-navbar__content__left__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.u-navbar__content__title[data-v-917ffc31]{text-align:center;font-size:16px;color:#303133}.u-navbar__content__right[data-v-917ffc31]{right:0}.u-navbar__content__right__text[data-v-917ffc31]{font-size:15px;margin-left:3px}.maboxite{width:21.375rem;display:flex;flex-direction:column;padding:.625rem;box-sizing:border-box;background-color:#fff;margin:auto;margin-top:.625rem;border-radius:.625rem}.maboxite>.headtops{width:100%;display:flex;align-items:center;justify-content:space-between;padding:.3125rem 0 .9375rem;box-sizing:border-box;border-bottom:.125rem solid #EEEEEE}.maboxite>.headtops>uni-view:nth-of-type(1){display:flex;align-items:center;justify-content:center}.maboxite>.headtops>uni-view:nth-of-type(1)>uni-image{width:1.5rem;height:1.5rem;margin-right:.625rem}.maboxite>.headtops>uni-view:nth-of-type(1)>uni-view{font-size:1rem;font-weight:400;color:#020b18}.maboxite>.headtops>uni-view:nth-of-type(2){font-size:1rem;font-weight:400;color:#d3832a}.mabxtop{position:relative;width:21.375rem;background:#FFFFFF;border-radius:.625rem;margin:auto;margin-top:2.5rem;padding:1.875rem;box-sizing:border-box;display:flex;flex-direction:column;align-items:center;justify-content:center}.mabxtop>.type1s{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:2.1875rem}.mabxtop>.type1s:nth-last-child(1){margin-bottom:0}.mabxtop>.type1s>uni-view{width:50%;display:flex;flex-direction:column;align-items:flex-start}.mabxtop>.type1s>uni-view>uni-view:nth-of-type(1){font-size:1rem;font-weight:400;color:#020b18}.mabxtop>.type1s>uni-view>uni-view:nth-of-type(2){font-size:.875rem;font-weight:400;color:#90a0af}.mabxtop .type2s{width:100%;display:flex;align-items:center;justify-content:space-between}.mabxtop .type2s>uni-view:nth-of-type(1){width:50%;font-size:1rem;font-weight:400;color:#020b18}.mabxtop .type2s>uni-view:nth-of-type(2){width:50%;font-size:1rem;font-weight:400;color:#1197eb}.bgimg{position:absolute;left:0;top:0;width:100%}.scvbox{width:100%;height:48vh;margin-top:.625rem}.scvbox .maxboxs{width:100%;display:flex;flex-direction:column;align-items:center}.scvbox .maxboxs>.items{width:100%;display:flex;align-items:flex-start;padding:.625rem 0;box-sizing:border-box;background-color:#fff;border-radius:.3125rem;margin-bottom:.9375rem;border-bottom:.125rem solid #EEEEEE}.scvbox .maxboxs>.items:nth-last-child(1){margin-bottom:.625rem;border-bottom:none}.scvbox .maxboxs>.items .rigth{flex:1}.scvbox .maxboxs>.items .lefticon{display:flex;align-items:flex-start;justify-content:center;margin-right:.9375rem}.scvbox .maxboxs>.items .lefticon>uni-image{width:1.5rem;height:1.5rem}.scvbox .maxboxs>.items .removeicon{height:100%;display:flex;align-items:center;justify-content:center}.scvbox .maxboxs>.items .removeicon>uni-image{width:1rem;height:1rem}.scvbox .maxboxs>.items .removebt{width:4rem;height:2rem;background:#ec2400;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff!important}.scvbox .maxboxs>.items .type1{width:100%;display:flex;align-items:center;justify-content:space-between;margin-bottom:.625rem}.scvbox .maxboxs>.items .type1>uni-view{display:flex;align-items:flex-start;font-size:.875rem}.scvbox .maxboxs>.items .type1>uni-view>uni-view:nth-of-type(1){color:#90a0af}.scvbox .maxboxs>.items .type1>uni-view>uni-view:nth-of-type(2){color:#092c4d}.butsca{display:flex;align-items:center;justify-content:flex-start;background-color:#fff;padding:.625rem .46875rem;box-sizing:border-box}.butsca>uni-view{width:6.375rem;height:2rem;background:#FFFFFF;border-radius:.25rem;opacity:1;border:.0625rem solid #D3832A;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#d3832a;margin-right:.9375rem}.butsca>uni-view:nth-last-child(1){margin-right:0}.headtop{display:flex;flex-direction:column;padding:1.0625rem 1rem;box-sizing:border-box;background-color:#fff}.headtop>uni-view{display:flex;align-items:flex-start;justify-content:space-between;font-size:.875rem;font-weight:400;color:#092c4d;margin-bottom:.75rem}.headtop>uni-view>uni-view{display:flex;align-items:flex-start}.headtop>uni-view>uni-view>uni-view:nth-of-type(1){width:5.3125rem;color:#90a0af}.headtop>uni-view>uni-view>uni-view:nth-of-type(2){color:#092c4d;word-wrap:break-word;word-break:break-all}.headtop>uni-view:nth-of-type(2){margin-bottom:0}.headtop>uni-view>uni-view{flex:1}
diff --git a/unpackage/dist/build/app-plus/pagesHome/pages/lnventorysortinglist/lnventorysortinglist.css b/unpackage/dist/build/app-plus/pagesHome/pages/lnventorysortinglist/lnventorysortinglist.css
index eb2c14f..2543c79 100644
--- a/unpackage/dist/build/app-plus/pagesHome/pages/lnventorysortinglist/lnventorysortinglist.css
+++ b/unpackage/dist/build/app-plus/pagesHome/pages/lnventorysortinglist/lnventorysortinglist.css
@@ -1 +1 @@
-uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}@font-face{font-family:l-icons;src:url(data:font/ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTZa9XzsAAAjcAAAAHEdERUYAKQAOAAAIvAAAAB5PUy8yPDVJwwAAAVgAAABgY21hcMxRtw0AAAHUAAABYmdhc3D//wADAAAItAAAAAhnbHlm05h+ZAAAA0wAAAJ8aGVhZCQifFoAAADcAAAANmhoZWEHyAOSAAABFAAAACRobXR4EnYBLQAAAbgAAAAcbG9jYQKkAegAAAM4AAAAEm1heHABFgBMAAABOAAAACBuYW1lXoIBAgAABcgAAAKCcG9zdMeZtAYAAAhMAAAAaAABAAAAAQAA+jMzTF8PPPUACwQAAAAAAOCMnBkAAAAA4IycGQAA/6sD6gOAAAAACAACAAAAAAAAAAEAAAOA/4AAXAQLAAAAAAPqAAEAAAAAAAAAAAAAAAAAAAAGAAEAAAAIAEAABAAAAAAAAgAAAAoACgAAAP8AAAAAAAAABAQEAZAABQAAAokCzAAAAI8CiQLMAAAB6wAyAQgAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZADA5gDm8AOA/4AAAAPcAIAAAAABAAAAAAAAAAAAAAAgAAEEAAAAAAAAAAFVAAAECwAWBAsAHgQAAPkBCwAAAAAAAwAAAAMAAAAcAAEAAAAAAFwAAwABAAAAHAAEAEAAAAAMAAgAAgAE5gDmB+Yf5iPm8P//AADmAOYH5h/mI+bw//8aAxn9GeYZ4xkXAAEAAAAAAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAByAOAA9AEIAT4AAAAEABb/wQPiA0sAIQAkAD4APwAAAQYUFwEWHwE3Njc2JyYnJicBJwE2NzY3NicmJzEuAQYHCQE3ByU+ATc2JwEnNwE2Jy4BDwEGBw4BFwEWHwE3MQHuFhYBcRIZDAwvDQQDAwsFBf7IBQE3DgUJAgICAQQLLDET/o8BqAwM/kUbJwEBGf7HBgYBOhwGB1MiabFZFwEXAXESGAoJAbkWQxf+kBIEAgIKLQ8TDw4HBAE5BAE3DQgNDRINBQkYGAcT/o/+CAICAQIqGyIZATkEBQE6HCUsHh5psVgXRBf+kBIEAgEAAAAEAB7/tQPqAz8AIAAiADwAPQAAATY0JwEmLwEHBgcGFxYXFhcBFwEGBwYHBhcWFzEeATY3AwclDgEHBhcBFwcBBhceAT8BNjc+AScBJi8BBzECEhYW/o8SGQwMLw0EAwMLBQUBOAX+yQ4FCQICAgEECywxEzcMAccbJwEBGQE5Bgb+xhwGB1MiabFZFwEX/o8SGAoJAUcWQxcBcBIEAgIKLQ8TDw4HBP7HBP7JDQgNDRINBQkYGAcTA2kCAQIqGyIZ/scEBf7GHCUsHh5psVgXRBcBcBIEAgEAAAAAAQD5/68DSQOAAAUAADcXCQEHAflnAen+F2cBghZnAekB6Gf+fwAAAAEBC/+rAxgDVQAFAAAJARcJAQcBCwG9UP6JAWJRAYEB1Ez+dv52SgABAAD/sAPOA4AAGwAACQEWFAYiJwkBBiImNDcJASY0NjIXCQE2MhYUBwJPAWoVKzwW/pb+lhY8KxUBa/6VFSs8FgFqAWoWPCsVAZj+lRU9KxUBa/6VFSs9FQFrAWsVPSsV/pUBaxUrPRUAAAAAABIA3gABAAAAAAAAABMAKAABAAAAAAABAAgATgABAAAAAAACAAcAZwABAAAAAAADAAgAgQABAAAAAAAEAAgAnAABAAAAAAAFAAsAvQABAAAAAAAGAAgA2wABAAAAAAAKACsBPAABAAAAAAALABMBkAADAAEECQAAACYAAAADAAEECQABABAAPAADAAEECQACAA4AVwADAAEECQADABAAbwADAAEECQAEABAAigADAAEECQAFABYApQADAAEECQAGABAAyQADAAEECQAKAFYA5AADAAEECQALACYBaABDAHIAZQBhAHQAZQBkACAAYgB5ACAAaQBjAG8AbgBmAG8AbgB0AABDcmVhdGVkIGJ5IGljb25mb250AABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABSAGUAZwB1AGwAYQByAABSZWd1bGFyAABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAABHZW5lcmF0ZWQgYnkgc3ZnMnR0ZiBmcm9tIEZvbnRlbGxvIHByb2plY3QuAABoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAABodHRwOi8vZm9udGVsbG8uY29tAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAEAAgECAQMBBAEFAQYKeW91amlhbnRvdQt5b3VqaWFudG91MQt5b3VqaWFudG91Mgp6dW9qaWFudG91B3NoYW5jaHUAAAAB//8AAgABAAAADAAAABYAAAACAAEAAwAHAAEABAAAAAIAAAAAAAAAAQAAAADVpCcIAAAAAOCMnBkAAAAA4IycGQ==) format("truetype");font-weight:400;font-style:normal;font-display:swap}.l-icons[data-v-f46b05a0]{font-family:l-icons;font-size:1.1875rem;color:#333;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-shanchu[data-v-f46b05a0]:before{content:"\e6f0"}.icon-youjiantou[data-v-f46b05a0]:before{content:"\e600"}.icon-zuojiantou[data-v-f46b05a0]:before{content:"\e623"}.icon-youjiantou1[data-v-f46b05a0]:before{content:"\e607"}.icon-youjiantou2[data-v-f46b05a0]:before{content:"\e61f"}.l-calendar-box[data-v-f46b05a0]{width:100%;position:fixed;left:0;right:0;bottom:0;z-index:9999;visibility:hidden;transform:translate3d(0,100%,0);transform-origin:center;transition:all .3s ease-in-out;min-height:.625rem}.l-calendar-box .calendar-top[data-v-f46b05a0]{width:100%;height:2.5rem;padding:0 1.25rem;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:.9375rem;font-weight:700;background-color:#fff;color:#333;position:relative;border-top-left-radius:.625rem;border-top-right-radius:.625rem;overflow:hidden}.l-calendar-box .calendar-top .close[data-v-f46b05a0]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);color:#999}.l-calendar-box .date-box[data-v-f46b05a0]{width:100%;display:flex;align-items:center;justify-content:center;padding:.625rem 0 .9375rem;background-color:#fff}.l-calendar-box .date-box .date-arrowleft[data-v-f46b05a0]{margin-right:1rem}.l-calendar-box .date-box .date-arrowright[data-v-f46b05a0]{margin-left:1rem}.l-calendar-box .date-box .title-datetime[data-v-f46b05a0]{padding:0 .5rem;color:#333;font-size:.9375rem;line-height:.9375rem;font-weight:700}.l-calendar-box .date-weekday[data-v-f46b05a0]{width:100%;display:flex;align-items:center;background-color:#fff;font-size:.75rem;line-height:.75rem;color:#555;box-shadow:0 .46875rem .625rem -.46875rem #efefef;position:relative;z-index:2}.l-calendar-box .date-weekday .date-weekday-item[data-v-f46b05a0]{width:14.2857%;display:flex;align-items:center;justify-content:center;padding:.375rem 0;overflow:hidden;position:relative;z-index:2}.l-calendar-box .date-content[data-v-f46b05a0]{width:100%;display:flex;flex-wrap:wrap;padding:.375rem 0;box-sizing:border-box;background-color:#fff;position:relative;align-content:flex-start}.l-calendar-box .date-content .date-weekday-item[data-v-f46b05a0]{width:14.2857%;display:flex;align-items:center;justify-content:center;padding:.375rem 0;overflow:hidden;position:relative;z-index:2}.l-calendar-box .date-content .date-weekday-item .date-content-item[data-v-f46b05a0]{width:2.5rem;height:2.5rem;display:flex;align-items:center;justify-content:center;flex-direction:column;font-size:1rem;line-height:1rem;position:relative;border-radius:50%;background-color:transparent}.l-calendar-box .date-content .date-weekday-item .date-content-item .custom-desc[data-v-f46b05a0]{width:100%;font-size:.75rem;line-height:.75rem;transform:scale(.8);transform-origin:center center;text-align:center}.l-calendar-box .date-content .date-weekday-item .date-content-item-desc[data-v-f46b05a0]{width:100%;font-size:.75rem;line-height:.75rem;position:absolute;left:0;transform:scale(.8);transform-origin:center center;text-align:center;bottom:.25rem;z-index:2}.l-calendar-box .date-content .start-date[data-v-f46b05a0]{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.l-calendar-box .date-content .end-date[data-v-f46b05a0]{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.l-calendar-box .date-content .bg-mounth[data-v-f46b05a0]{position:absolute;font-size:8.125rem;line-height:8.125rem;left:50%;top:50%;transform:translate(-50%,-50%);color:#f5f5f7;z-index:1}.l-calendar-box .calendar-text[data-v-f46b05a0]{width:100%;display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:0 1.3125rem .9375rem;box-sizing:border-box;font-size:.75rem;color:#666}.l-calendar-box .calendar-text .calendar-result[data-v-f46b05a0]{height:1.5rem;transform:scale(.9);transform-origin:center 100%}.l-calendar-box .calendar-text .calendar-btn[data-v-f46b05a0]{width:100%}.l-calendar-box .calendar-text .calendar-btn uni-button[data-v-f46b05a0]{background-color:#d3832a;color:#fff;height:2.5rem;line-height:2.25rem;font-size:1rem;border:none}.mask[data-v-f46b05a0]{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);z-index:9996;transition:all .3s ease-in-out;opacity:0;visibility:hidden}.mask-show[data-v-f46b05a0]{opacity:1;visibility:visible}.tui-btn-calendar[data-v-f46b05a0]{padding:.5rem;box-sizing:border-box;text-align:center;text-decoration:none}.l-opacity[data-v-f46b05a0]{opacity:.5}.calendar-box-show[data-v-f46b05a0]{transform:translateZ(0);visibility:visible}.inputsr{width:17.1875rem!important;height:2.34375rem;background:#F5F5F6;border-radius:.25rem;opacity:1;border:.0625rem solid #EEEEEE;padding:.5rem .5625rem;box-sizing:border-box;padding-right:0;display:flex;align-items:center;justify-content:space-between;font-size:.8125rem;font-weight:400;color:#092c4d}.inputsr>uni-input{flex:1;font-size:.8125rem}.schbox{display:flex;align-items:center;justify-content:flex-start;padding:.46875rem 1rem;box-sizing:border-box;background-color:#fff}.schbox>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#092c4d}.schbox>uni-view:nth-of-type(2){width:11.875rem}.schbox>uni-view:nth-of-type(3){width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.headtop{display:flex;align-items:center;justify-content:space-between;background-color:#fff;padding:.625rem .9375rem;box-sizing:border-box}.headtop>uni-view:nth-of-type(1){width:16.875rem;border:.03125rem solid #00000020;padding:.3125rem .625rem;box-sizing:border-box}.headtop>uni-view:nth-of-type(1)>uni-input{flex:1;font-size:.875rem}.headtop>uni-view:nth-of-type(2){width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.scvmabx{width:100%;height:71vh;margin-top:.625rem}.scvmabx .maxboxs{width:100%;display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items{width:100%;display:flex;flex-direction:column;background-color:#fff;margin-bottom:.625rem;padding:.5rem .9375rem;box-sizing:border-box}.scvmabx .maxboxs>.items .contentbx{display:flex;flex-direction:column}.scvmabx .maxboxs>.items .contentbx .unames{display:flex;flex-direction:column;align-items:flex-start;padding:.46875rem 0}.scvmabx .maxboxs>.items .contentbx .unames>uni-view{display:flex;align-items:center;font-size:.875rem}.scvmabx .maxboxs>.items .contentbx .unames>uni-view:nth-of-type(1){margin-bottom:.625rem}.scvmabx .maxboxs>.items .contentbx .unames>uni-view>uni-view:nth-of-type(1){width:5.625rem;display:flex;align-items:center;justify-content:flex-start}.scvmabx .maxboxs>.items .contentbx .unames>uni-view>uni-view:nth-of-type(1)>uni-image{width:1.3125rem;height:1.3125rem;margin-right:.46875rem}.scvmabx .maxboxs>.items .contentbx .numbox{width:21.4375rem;height:5rem;background:#F5F7FB;border-radius:.25rem;display:flex;align-items:center;justify-content:center;margin:auto}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view{display:flex;flex-direction:column;align-items:center;justify-content:center}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view:nth-of-type(1){margin-right:4.375rem}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#afb4ba;margin-bottom:.625rem}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view>uni-view:nth-of-type(2){font-size:1.125rem;font-weight:400;color:#020b18}.scvmabx .maxboxs>.items .headtopv{display:flex;align-items:center;justify-content:space-between;padding:.4375rem 0;border-bottom:.0625rem solid #EEEEEE}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(1){display:flex;align-items:center;justify-content:center;color:#020b18;font-size:1rem}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(1)>uni-image{width:2rem;height:2rem;margin-right:.3125rem}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(2){width:6rem;height:2.25rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#fff}
+uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}@font-face{font-family:l-icons;src:url(data:font/ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTZa9XzsAAAjcAAAAHEdERUYAKQAOAAAIvAAAAB5PUy8yPDVJwwAAAVgAAABgY21hcMxRtw0AAAHUAAABYmdhc3D//wADAAAItAAAAAhnbHlm05h+ZAAAA0wAAAJ8aGVhZCQifFoAAADcAAAANmhoZWEHyAOSAAABFAAAACRobXR4EnYBLQAAAbgAAAAcbG9jYQKkAegAAAM4AAAAEm1heHABFgBMAAABOAAAACBuYW1lXoIBAgAABcgAAAKCcG9zdMeZtAYAAAhMAAAAaAABAAAAAQAA+jMzTF8PPPUACwQAAAAAAOCMnBkAAAAA4IycGQAA/6sD6gOAAAAACAACAAAAAAAAAAEAAAOA/4AAXAQLAAAAAAPqAAEAAAAAAAAAAAAAAAAAAAAGAAEAAAAIAEAABAAAAAAAAgAAAAoACgAAAP8AAAAAAAAABAQEAZAABQAAAokCzAAAAI8CiQLMAAAB6wAyAQgAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZADA5gDm8AOA/4AAAAPcAIAAAAABAAAAAAAAAAAAAAAgAAEEAAAAAAAAAAFVAAAECwAWBAsAHgQAAPkBCwAAAAAAAwAAAAMAAAAcAAEAAAAAAFwAAwABAAAAHAAEAEAAAAAMAAgAAgAE5gDmB+Yf5iPm8P//AADmAOYH5h/mI+bw//8aAxn9GeYZ4xkXAAEAAAAAAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAByAOAA9AEIAT4AAAAEABb/wQPiA0sAIQAkAD4APwAAAQYUFwEWHwE3Njc2JyYnJicBJwE2NzY3NicmJzEuAQYHCQE3ByU+ATc2JwEnNwE2Jy4BDwEGBw4BFwEWHwE3MQHuFhYBcRIZDAwvDQQDAwsFBf7IBQE3DgUJAgICAQQLLDET/o8BqAwM/kUbJwEBGf7HBgYBOhwGB1MiabFZFwEXAXESGAoJAbkWQxf+kBIEAgIKLQ8TDw4HBAE5BAE3DQgNDRINBQkYGAcT/o/+CAICAQIqGyIZATkEBQE6HCUsHh5psVgXRBf+kBIEAgEAAAAEAB7/tQPqAz8AIAAiADwAPQAAATY0JwEmLwEHBgcGFxYXFhcBFwEGBwYHBhcWFzEeATY3AwclDgEHBhcBFwcBBhceAT8BNjc+AScBJi8BBzECEhYW/o8SGQwMLw0EAwMLBQUBOAX+yQ4FCQICAgEECywxEzcMAccbJwEBGQE5Bgb+xhwGB1MiabFZFwEX/o8SGAoJAUcWQxcBcBIEAgIKLQ8TDw4HBP7HBP7JDQgNDRINBQkYGAcTA2kCAQIqGyIZ/scEBf7GHCUsHh5psVgXRBcBcBIEAgEAAAAAAQD5/68DSQOAAAUAADcXCQEHAflnAen+F2cBghZnAekB6Gf+fwAAAAEBC/+rAxgDVQAFAAAJARcJAQcBCwG9UP6JAWJRAYEB1Ez+dv52SgABAAD/sAPOA4AAGwAACQEWFAYiJwkBBiImNDcJASY0NjIXCQE2MhYUBwJPAWoVKzwW/pb+lhY8KxUBa/6VFSs8FgFqAWoWPCsVAZj+lRU9KxUBa/6VFSs9FQFrAWsVPSsV/pUBaxUrPRUAAAAAABIA3gABAAAAAAAAABMAKAABAAAAAAABAAgATgABAAAAAAACAAcAZwABAAAAAAADAAgAgQABAAAAAAAEAAgAnAABAAAAAAAFAAsAvQABAAAAAAAGAAgA2wABAAAAAAAKACsBPAABAAAAAAALABMBkAADAAEECQAAACYAAAADAAEECQABABAAPAADAAEECQACAA4AVwADAAEECQADABAAbwADAAEECQAEABAAigADAAEECQAFABYApQADAAEECQAGABAAyQADAAEECQAKAFYA5AADAAEECQALACYBaABDAHIAZQBhAHQAZQBkACAAYgB5ACAAaQBjAG8AbgBmAG8AbgB0AABDcmVhdGVkIGJ5IGljb25mb250AABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABSAGUAZwB1AGwAYQByAABSZWd1bGFyAABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAABHZW5lcmF0ZWQgYnkgc3ZnMnR0ZiBmcm9tIEZvbnRlbGxvIHByb2plY3QuAABoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAABodHRwOi8vZm9udGVsbG8uY29tAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAEAAgECAQMBBAEFAQYKeW91amlhbnRvdQt5b3VqaWFudG91MQt5b3VqaWFudG91Mgp6dW9qaWFudG91B3NoYW5jaHUAAAAB//8AAgABAAAADAAAABYAAAACAAEAAwAHAAEABAAAAAIAAAAAAAAAAQAAAADVpCcIAAAAAOCMnBkAAAAA4IycGQ==) format("truetype");font-weight:400;font-style:normal;font-display:swap}.l-icons[data-v-f46b05a0]{font-family:l-icons;font-size:1.1875rem;color:#333;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-shanchu[data-v-f46b05a0]:before{content:"\e6f0"}.icon-youjiantou[data-v-f46b05a0]:before{content:"\e600"}.icon-zuojiantou[data-v-f46b05a0]:before{content:"\e623"}.icon-youjiantou1[data-v-f46b05a0]:before{content:"\e607"}.icon-youjiantou2[data-v-f46b05a0]:before{content:"\e61f"}.l-calendar-box[data-v-f46b05a0]{width:100%;position:fixed;left:0;right:0;bottom:0;z-index:9999;visibility:hidden;transform:translate3d(0,100%,0);transform-origin:center;transition:all .3s ease-in-out;min-height:.625rem}.l-calendar-box .calendar-top[data-v-f46b05a0]{width:100%;height:2.5rem;padding:0 1.25rem;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:.9375rem;font-weight:700;background-color:#fff;color:#333;position:relative;border-top-left-radius:.625rem;border-top-right-radius:.625rem;overflow:hidden}.l-calendar-box .calendar-top .close[data-v-f46b05a0]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);color:#999}.l-calendar-box .date-box[data-v-f46b05a0]{width:100%;display:flex;align-items:center;justify-content:center;padding:.625rem 0 .9375rem;background-color:#fff}.l-calendar-box .date-box .date-arrowleft[data-v-f46b05a0]{margin-right:1rem}.l-calendar-box .date-box .date-arrowright[data-v-f46b05a0]{margin-left:1rem}.l-calendar-box .date-box .title-datetime[data-v-f46b05a0]{padding:0 .5rem;color:#333;font-size:.9375rem;line-height:.9375rem;font-weight:700}.l-calendar-box .date-weekday[data-v-f46b05a0]{width:100%;display:flex;align-items:center;background-color:#fff;font-size:.75rem;line-height:.75rem;color:#555;box-shadow:0 .46875rem .625rem -.46875rem #efefef;position:relative;z-index:2}.l-calendar-box .date-weekday .date-weekday-item[data-v-f46b05a0]{width:14.2857%;display:flex;align-items:center;justify-content:center;padding:.375rem 0;overflow:hidden;position:relative;z-index:2}.l-calendar-box .date-content[data-v-f46b05a0]{width:100%;display:flex;flex-wrap:wrap;padding:.375rem 0;box-sizing:border-box;background-color:#fff;position:relative;align-content:flex-start}.l-calendar-box .date-content .date-weekday-item[data-v-f46b05a0]{width:14.2857%;display:flex;align-items:center;justify-content:center;padding:.375rem 0;overflow:hidden;position:relative;z-index:2}.l-calendar-box .date-content .date-weekday-item .date-content-item[data-v-f46b05a0]{width:2.5rem;height:2.5rem;display:flex;align-items:center;justify-content:center;flex-direction:column;font-size:1rem;line-height:1rem;position:relative;border-radius:50%;background-color:transparent}.l-calendar-box .date-content .date-weekday-item .date-content-item .custom-desc[data-v-f46b05a0]{width:100%;font-size:.75rem;line-height:.75rem;transform:scale(.8);transform-origin:center center;text-align:center}.l-calendar-box .date-content .date-weekday-item .date-content-item-desc[data-v-f46b05a0]{width:100%;font-size:.75rem;line-height:.75rem;position:absolute;left:0;transform:scale(.8);transform-origin:center center;text-align:center;bottom:.25rem;z-index:2}.l-calendar-box .date-content .start-date[data-v-f46b05a0]{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.l-calendar-box .date-content .end-date[data-v-f46b05a0]{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.l-calendar-box .date-content .bg-mounth[data-v-f46b05a0]{position:absolute;font-size:8.125rem;line-height:8.125rem;left:50%;top:50%;transform:translate(-50%,-50%);color:#f5f5f7;z-index:1}.l-calendar-box .calendar-text[data-v-f46b05a0]{width:100%;display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:0 1.3125rem .9375rem;box-sizing:border-box;font-size:.75rem;color:#666}.l-calendar-box .calendar-text .calendar-result[data-v-f46b05a0]{height:1.5rem;transform:scale(.9);transform-origin:center 100%}.l-calendar-box .calendar-text .calendar-btn[data-v-f46b05a0]{width:100%}.l-calendar-box .calendar-text .calendar-btn uni-button[data-v-f46b05a0]{background-color:#d3832a;color:#fff;height:2.5rem;line-height:2.25rem;font-size:1rem;border:none}.mask[data-v-f46b05a0]{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);z-index:9996;transition:all .3s ease-in-out;opacity:0;visibility:hidden}.mask-show[data-v-f46b05a0]{opacity:1;visibility:visible}.tui-btn-calendar[data-v-f46b05a0]{padding:.5rem;box-sizing:border-box;text-align:center;text-decoration:none}.l-opacity[data-v-f46b05a0]{opacity:.5}.calendar-box-show[data-v-f46b05a0]{transform:translateZ(0);visibility:visible}.inputsr{width:17.1875rem!important;height:2.34375rem;background:#F5F5F6;border-radius:.25rem;opacity:1;border:.0625rem solid #EEEEEE;padding:.5rem .5625rem;box-sizing:border-box;padding-right:0;display:flex;align-items:center;justify-content:space-between;font-size:.8125rem;font-weight:400;color:#092c4d}.inputsr>uni-input{flex:1;font-size:.8125rem}.schbox{display:flex;align-items:center;justify-content:flex-start;padding:.46875rem 1rem;box-sizing:border-box;background-color:#fff}.schbox>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#092c4d}.schbox>uni-view:nth-of-type(2){width:11.875rem}.schbox>uni-view:nth-of-type(3){width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.headtop{display:flex;align-items:center;justify-content:space-between;background-color:#fff;padding:.625rem .9375rem;box-sizing:border-box}.headtop>uni-view:nth-of-type(1){width:16.875rem;border:.03125rem solid #00000020;padding:.3125rem .625rem;box-sizing:border-box}.headtop>uni-view:nth-of-type(1)>uni-input{flex:1;font-size:.875rem}.headtop>uni-view:nth-of-type(2){width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.scvmabx{width:100%;height:71vh;margin-top:.625rem}.scvmabx .maxboxs{width:100%;display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items{width:100%;display:flex;flex-direction:column;background-color:#fff;margin-bottom:.625rem;padding:.5rem .9375rem;box-sizing:border-box}.scvmabx .maxboxs>.items .contentbx{display:flex;flex-direction:column}.scvmabx .maxboxs>.items .contentbx .unames{display:flex;flex-direction:column;align-items:flex-start;padding:.46875rem 0}.scvmabx .maxboxs>.items .contentbx .unames>uni-view{display:flex;align-items:center;font-size:.875rem}.scvmabx .maxboxs>.items .contentbx .unames>uni-view:nth-of-type(1){margin-bottom:.625rem}.scvmabx .maxboxs>.items .contentbx .unames>uni-view>uni-view:nth-of-type(1){width:5.625rem;display:flex;align-items:center;justify-content:flex-start}.scvmabx .maxboxs>.items .contentbx .unames>uni-view>uni-view:nth-of-type(1)>uni-image{width:1.3125rem;height:1.3125rem;margin-right:.46875rem}.scvmabx .maxboxs>.items .contentbx .numbox{width:21.4375rem;height:5rem;background:#F5F7FB;border-radius:.25rem;display:flex;align-items:center;justify-content:center;margin:auto}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view{display:flex;flex-direction:column;align-items:center;justify-content:center}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view:nth-of-type(1){margin-right:4.375rem}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#afb4ba;margin-bottom:.625rem}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view>uni-view:nth-of-type(2){font-size:1.125rem;font-weight:400;color:#020b18}.scvmabx .maxboxs>.items .headtopv{display:flex;align-items:center;justify-content:space-between;padding:.4375rem 0;border-bottom:.0625rem solid #EEEEEE}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(1){display:flex;align-items:center;justify-content:center;color:#020b18;font-size:1rem}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(1)>uni-image{width:1rem;height:1rem;margin-right:.3125rem}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(2){width:6rem;height:2.25rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#fff}
diff --git a/unpackage/dist/build/app-plus/pagesHome/pages/scansorting/scansorting.css b/unpackage/dist/build/app-plus/pagesHome/pages/scansorting/scansorting.css
index eb2c14f..0f966d9 100644
--- a/unpackage/dist/build/app-plus/pagesHome/pages/scansorting/scansorting.css
+++ b/unpackage/dist/build/app-plus/pagesHome/pages/scansorting/scansorting.css
@@ -1 +1 @@
-uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}@font-face{font-family:l-icons;src:url(data:font/ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTZa9XzsAAAjcAAAAHEdERUYAKQAOAAAIvAAAAB5PUy8yPDVJwwAAAVgAAABgY21hcMxRtw0AAAHUAAABYmdhc3D//wADAAAItAAAAAhnbHlm05h+ZAAAA0wAAAJ8aGVhZCQifFoAAADcAAAANmhoZWEHyAOSAAABFAAAACRobXR4EnYBLQAAAbgAAAAcbG9jYQKkAegAAAM4AAAAEm1heHABFgBMAAABOAAAACBuYW1lXoIBAgAABcgAAAKCcG9zdMeZtAYAAAhMAAAAaAABAAAAAQAA+jMzTF8PPPUACwQAAAAAAOCMnBkAAAAA4IycGQAA/6sD6gOAAAAACAACAAAAAAAAAAEAAAOA/4AAXAQLAAAAAAPqAAEAAAAAAAAAAAAAAAAAAAAGAAEAAAAIAEAABAAAAAAAAgAAAAoACgAAAP8AAAAAAAAABAQEAZAABQAAAokCzAAAAI8CiQLMAAAB6wAyAQgAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZADA5gDm8AOA/4AAAAPcAIAAAAABAAAAAAAAAAAAAAAgAAEEAAAAAAAAAAFVAAAECwAWBAsAHgQAAPkBCwAAAAAAAwAAAAMAAAAcAAEAAAAAAFwAAwABAAAAHAAEAEAAAAAMAAgAAgAE5gDmB+Yf5iPm8P//AADmAOYH5h/mI+bw//8aAxn9GeYZ4xkXAAEAAAAAAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAByAOAA9AEIAT4AAAAEABb/wQPiA0sAIQAkAD4APwAAAQYUFwEWHwE3Njc2JyYnJicBJwE2NzY3NicmJzEuAQYHCQE3ByU+ATc2JwEnNwE2Jy4BDwEGBw4BFwEWHwE3MQHuFhYBcRIZDAwvDQQDAwsFBf7IBQE3DgUJAgICAQQLLDET/o8BqAwM/kUbJwEBGf7HBgYBOhwGB1MiabFZFwEXAXESGAoJAbkWQxf+kBIEAgIKLQ8TDw4HBAE5BAE3DQgNDRINBQkYGAcT/o/+CAICAQIqGyIZATkEBQE6HCUsHh5psVgXRBf+kBIEAgEAAAAEAB7/tQPqAz8AIAAiADwAPQAAATY0JwEmLwEHBgcGFxYXFhcBFwEGBwYHBhcWFzEeATY3AwclDgEHBhcBFwcBBhceAT8BNjc+AScBJi8BBzECEhYW/o8SGQwMLw0EAwMLBQUBOAX+yQ4FCQICAgEECywxEzcMAccbJwEBGQE5Bgb+xhwGB1MiabFZFwEX/o8SGAoJAUcWQxcBcBIEAgIKLQ8TDw4HBP7HBP7JDQgNDRINBQkYGAcTA2kCAQIqGyIZ/scEBf7GHCUsHh5psVgXRBcBcBIEAgEAAAAAAQD5/68DSQOAAAUAADcXCQEHAflnAen+F2cBghZnAekB6Gf+fwAAAAEBC/+rAxgDVQAFAAAJARcJAQcBCwG9UP6JAWJRAYEB1Ez+dv52SgABAAD/sAPOA4AAGwAACQEWFAYiJwkBBiImNDcJASY0NjIXCQE2MhYUBwJPAWoVKzwW/pb+lhY8KxUBa/6VFSs8FgFqAWoWPCsVAZj+lRU9KxUBa/6VFSs9FQFrAWsVPSsV/pUBaxUrPRUAAAAAABIA3gABAAAAAAAAABMAKAABAAAAAAABAAgATgABAAAAAAACAAcAZwABAAAAAAADAAgAgQABAAAAAAAEAAgAnAABAAAAAAAFAAsAvQABAAAAAAAGAAgA2wABAAAAAAAKACsBPAABAAAAAAALABMBkAADAAEECQAAACYAAAADAAEECQABABAAPAADAAEECQACAA4AVwADAAEECQADABAAbwADAAEECQAEABAAigADAAEECQAFABYApQADAAEECQAGABAAyQADAAEECQAKAFYA5AADAAEECQALACYBaABDAHIAZQBhAHQAZQBkACAAYgB5ACAAaQBjAG8AbgBmAG8AbgB0AABDcmVhdGVkIGJ5IGljb25mb250AABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABSAGUAZwB1AGwAYQByAABSZWd1bGFyAABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAABHZW5lcmF0ZWQgYnkgc3ZnMnR0ZiBmcm9tIEZvbnRlbGxvIHByb2plY3QuAABoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAABodHRwOi8vZm9udGVsbG8uY29tAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAEAAgECAQMBBAEFAQYKeW91amlhbnRvdQt5b3VqaWFudG91MQt5b3VqaWFudG91Mgp6dW9qaWFudG91B3NoYW5jaHUAAAAB//8AAgABAAAADAAAABYAAAACAAEAAwAHAAEABAAAAAIAAAAAAAAAAQAAAADVpCcIAAAAAOCMnBkAAAAA4IycGQ==) format("truetype");font-weight:400;font-style:normal;font-display:swap}.l-icons[data-v-f46b05a0]{font-family:l-icons;font-size:1.1875rem;color:#333;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-shanchu[data-v-f46b05a0]:before{content:"\e6f0"}.icon-youjiantou[data-v-f46b05a0]:before{content:"\e600"}.icon-zuojiantou[data-v-f46b05a0]:before{content:"\e623"}.icon-youjiantou1[data-v-f46b05a0]:before{content:"\e607"}.icon-youjiantou2[data-v-f46b05a0]:before{content:"\e61f"}.l-calendar-box[data-v-f46b05a0]{width:100%;position:fixed;left:0;right:0;bottom:0;z-index:9999;visibility:hidden;transform:translate3d(0,100%,0);transform-origin:center;transition:all .3s ease-in-out;min-height:.625rem}.l-calendar-box .calendar-top[data-v-f46b05a0]{width:100%;height:2.5rem;padding:0 1.25rem;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:.9375rem;font-weight:700;background-color:#fff;color:#333;position:relative;border-top-left-radius:.625rem;border-top-right-radius:.625rem;overflow:hidden}.l-calendar-box .calendar-top .close[data-v-f46b05a0]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);color:#999}.l-calendar-box .date-box[data-v-f46b05a0]{width:100%;display:flex;align-items:center;justify-content:center;padding:.625rem 0 .9375rem;background-color:#fff}.l-calendar-box .date-box .date-arrowleft[data-v-f46b05a0]{margin-right:1rem}.l-calendar-box .date-box .date-arrowright[data-v-f46b05a0]{margin-left:1rem}.l-calendar-box .date-box .title-datetime[data-v-f46b05a0]{padding:0 .5rem;color:#333;font-size:.9375rem;line-height:.9375rem;font-weight:700}.l-calendar-box .date-weekday[data-v-f46b05a0]{width:100%;display:flex;align-items:center;background-color:#fff;font-size:.75rem;line-height:.75rem;color:#555;box-shadow:0 .46875rem .625rem -.46875rem #efefef;position:relative;z-index:2}.l-calendar-box .date-weekday .date-weekday-item[data-v-f46b05a0]{width:14.2857%;display:flex;align-items:center;justify-content:center;padding:.375rem 0;overflow:hidden;position:relative;z-index:2}.l-calendar-box .date-content[data-v-f46b05a0]{width:100%;display:flex;flex-wrap:wrap;padding:.375rem 0;box-sizing:border-box;background-color:#fff;position:relative;align-content:flex-start}.l-calendar-box .date-content .date-weekday-item[data-v-f46b05a0]{width:14.2857%;display:flex;align-items:center;justify-content:center;padding:.375rem 0;overflow:hidden;position:relative;z-index:2}.l-calendar-box .date-content .date-weekday-item .date-content-item[data-v-f46b05a0]{width:2.5rem;height:2.5rem;display:flex;align-items:center;justify-content:center;flex-direction:column;font-size:1rem;line-height:1rem;position:relative;border-radius:50%;background-color:transparent}.l-calendar-box .date-content .date-weekday-item .date-content-item .custom-desc[data-v-f46b05a0]{width:100%;font-size:.75rem;line-height:.75rem;transform:scale(.8);transform-origin:center center;text-align:center}.l-calendar-box .date-content .date-weekday-item .date-content-item-desc[data-v-f46b05a0]{width:100%;font-size:.75rem;line-height:.75rem;position:absolute;left:0;transform:scale(.8);transform-origin:center center;text-align:center;bottom:.25rem;z-index:2}.l-calendar-box .date-content .start-date[data-v-f46b05a0]{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.l-calendar-box .date-content .end-date[data-v-f46b05a0]{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.l-calendar-box .date-content .bg-mounth[data-v-f46b05a0]{position:absolute;font-size:8.125rem;line-height:8.125rem;left:50%;top:50%;transform:translate(-50%,-50%);color:#f5f5f7;z-index:1}.l-calendar-box .calendar-text[data-v-f46b05a0]{width:100%;display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:0 1.3125rem .9375rem;box-sizing:border-box;font-size:.75rem;color:#666}.l-calendar-box .calendar-text .calendar-result[data-v-f46b05a0]{height:1.5rem;transform:scale(.9);transform-origin:center 100%}.l-calendar-box .calendar-text .calendar-btn[data-v-f46b05a0]{width:100%}.l-calendar-box .calendar-text .calendar-btn uni-button[data-v-f46b05a0]{background-color:#d3832a;color:#fff;height:2.5rem;line-height:2.25rem;font-size:1rem;border:none}.mask[data-v-f46b05a0]{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);z-index:9996;transition:all .3s ease-in-out;opacity:0;visibility:hidden}.mask-show[data-v-f46b05a0]{opacity:1;visibility:visible}.tui-btn-calendar[data-v-f46b05a0]{padding:.5rem;box-sizing:border-box;text-align:center;text-decoration:none}.l-opacity[data-v-f46b05a0]{opacity:.5}.calendar-box-show[data-v-f46b05a0]{transform:translateZ(0);visibility:visible}.inputsr{width:17.1875rem!important;height:2.34375rem;background:#F5F5F6;border-radius:.25rem;opacity:1;border:.0625rem solid #EEEEEE;padding:.5rem .5625rem;box-sizing:border-box;padding-right:0;display:flex;align-items:center;justify-content:space-between;font-size:.8125rem;font-weight:400;color:#092c4d}.inputsr>uni-input{flex:1;font-size:.8125rem}.schbox{display:flex;align-items:center;justify-content:flex-start;padding:.46875rem 1rem;box-sizing:border-box;background-color:#fff}.schbox>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#092c4d}.schbox>uni-view:nth-of-type(2){width:11.875rem}.schbox>uni-view:nth-of-type(3){width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.headtop{display:flex;align-items:center;justify-content:space-between;background-color:#fff;padding:.625rem .9375rem;box-sizing:border-box}.headtop>uni-view:nth-of-type(1){width:16.875rem;border:.03125rem solid #00000020;padding:.3125rem .625rem;box-sizing:border-box}.headtop>uni-view:nth-of-type(1)>uni-input{flex:1;font-size:.875rem}.headtop>uni-view:nth-of-type(2){width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.scvmabx{width:100%;height:71vh;margin-top:.625rem}.scvmabx .maxboxs{width:100%;display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items{width:100%;display:flex;flex-direction:column;background-color:#fff;margin-bottom:.625rem;padding:.5rem .9375rem;box-sizing:border-box}.scvmabx .maxboxs>.items .contentbx{display:flex;flex-direction:column}.scvmabx .maxboxs>.items .contentbx .unames{display:flex;flex-direction:column;align-items:flex-start;padding:.46875rem 0}.scvmabx .maxboxs>.items .contentbx .unames>uni-view{display:flex;align-items:center;font-size:.875rem}.scvmabx .maxboxs>.items .contentbx .unames>uni-view:nth-of-type(1){margin-bottom:.625rem}.scvmabx .maxboxs>.items .contentbx .unames>uni-view>uni-view:nth-of-type(1){width:5.625rem;display:flex;align-items:center;justify-content:flex-start}.scvmabx .maxboxs>.items .contentbx .unames>uni-view>uni-view:nth-of-type(1)>uni-image{width:1.3125rem;height:1.3125rem;margin-right:.46875rem}.scvmabx .maxboxs>.items .contentbx .numbox{width:21.4375rem;height:5rem;background:#F5F7FB;border-radius:.25rem;display:flex;align-items:center;justify-content:center;margin:auto}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view{display:flex;flex-direction:column;align-items:center;justify-content:center}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view:nth-of-type(1){margin-right:4.375rem}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#afb4ba;margin-bottom:.625rem}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view>uni-view:nth-of-type(2){font-size:1.125rem;font-weight:400;color:#020b18}.scvmabx .maxboxs>.items .headtopv{display:flex;align-items:center;justify-content:space-between;padding:.4375rem 0;border-bottom:.0625rem solid #EEEEEE}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(1){display:flex;align-items:center;justify-content:center;color:#020b18;font-size:1rem}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(1)>uni-image{width:2rem;height:2rem;margin-right:.3125rem}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(2){width:6rem;height:2.25rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#fff}
+uni-view[data-v-5c79ae5e],uni-scroll-view[data-v-5c79ae5e],uni-swiper-item[data-v-5c79ae5e]{display:flex;flex-direction:column;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}@font-face{font-family:uicon-iconfont;src:url(https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf) format("truetype")}.u-icon[data-v-5c79ae5e]{display:flex;align-items:center}.u-icon--left[data-v-5c79ae5e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-5c79ae5e]{flex-direction:row;align-items:center}.u-icon--top[data-v-5c79ae5e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-5c79ae5e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-5c79ae5e]{font-family:uicon-iconfont;position:relative;display:flex;flex-direction:row;align-items:center}.u-icon__icon--primary[data-v-5c79ae5e]{color:#3c9cff}.u-icon__icon--success[data-v-5c79ae5e]{color:#5ac725}.u-icon__icon--error[data-v-5c79ae5e]{color:#f56c6c}.u-icon__icon--warning[data-v-5c79ae5e]{color:#f9ae3d}.u-icon__icon--info[data-v-5c79ae5e]{color:#909399}.u-icon__img[data-v-5c79ae5e]{height:auto;will-change:transform}.u-icon__label[data-v-5c79ae5e]{line-height:1}@font-face{font-family:l-icons;src:url(data:font/ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTZa9XzsAAAjcAAAAHEdERUYAKQAOAAAIvAAAAB5PUy8yPDVJwwAAAVgAAABgY21hcMxRtw0AAAHUAAABYmdhc3D//wADAAAItAAAAAhnbHlm05h+ZAAAA0wAAAJ8aGVhZCQifFoAAADcAAAANmhoZWEHyAOSAAABFAAAACRobXR4EnYBLQAAAbgAAAAcbG9jYQKkAegAAAM4AAAAEm1heHABFgBMAAABOAAAACBuYW1lXoIBAgAABcgAAAKCcG9zdMeZtAYAAAhMAAAAaAABAAAAAQAA+jMzTF8PPPUACwQAAAAAAOCMnBkAAAAA4IycGQAA/6sD6gOAAAAACAACAAAAAAAAAAEAAAOA/4AAXAQLAAAAAAPqAAEAAAAAAAAAAAAAAAAAAAAGAAEAAAAIAEAABAAAAAAAAgAAAAoACgAAAP8AAAAAAAAABAQEAZAABQAAAokCzAAAAI8CiQLMAAAB6wAyAQgAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZADA5gDm8AOA/4AAAAPcAIAAAAABAAAAAAAAAAAAAAAgAAEEAAAAAAAAAAFVAAAECwAWBAsAHgQAAPkBCwAAAAAAAwAAAAMAAAAcAAEAAAAAAFwAAwABAAAAHAAEAEAAAAAMAAgAAgAE5gDmB+Yf5iPm8P//AADmAOYH5h/mI+bw//8aAxn9GeYZ4xkXAAEAAAAAAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAByAOAA9AEIAT4AAAAEABb/wQPiA0sAIQAkAD4APwAAAQYUFwEWHwE3Njc2JyYnJicBJwE2NzY3NicmJzEuAQYHCQE3ByU+ATc2JwEnNwE2Jy4BDwEGBw4BFwEWHwE3MQHuFhYBcRIZDAwvDQQDAwsFBf7IBQE3DgUJAgICAQQLLDET/o8BqAwM/kUbJwEBGf7HBgYBOhwGB1MiabFZFwEXAXESGAoJAbkWQxf+kBIEAgIKLQ8TDw4HBAE5BAE3DQgNDRINBQkYGAcT/o/+CAICAQIqGyIZATkEBQE6HCUsHh5psVgXRBf+kBIEAgEAAAAEAB7/tQPqAz8AIAAiADwAPQAAATY0JwEmLwEHBgcGFxYXFhcBFwEGBwYHBhcWFzEeATY3AwclDgEHBhcBFwcBBhceAT8BNjc+AScBJi8BBzECEhYW/o8SGQwMLw0EAwMLBQUBOAX+yQ4FCQICAgEECywxEzcMAccbJwEBGQE5Bgb+xhwGB1MiabFZFwEX/o8SGAoJAUcWQxcBcBIEAgIKLQ8TDw4HBP7HBP7JDQgNDRINBQkYGAcTA2kCAQIqGyIZ/scEBf7GHCUsHh5psVgXRBcBcBIEAgEAAAAAAQD5/68DSQOAAAUAADcXCQEHAflnAen+F2cBghZnAekB6Gf+fwAAAAEBC/+rAxgDVQAFAAAJARcJAQcBCwG9UP6JAWJRAYEB1Ez+dv52SgABAAD/sAPOA4AAGwAACQEWFAYiJwkBBiImNDcJASY0NjIXCQE2MhYUBwJPAWoVKzwW/pb+lhY8KxUBa/6VFSs8FgFqAWoWPCsVAZj+lRU9KxUBa/6VFSs9FQFrAWsVPSsV/pUBaxUrPRUAAAAAABIA3gABAAAAAAAAABMAKAABAAAAAAABAAgATgABAAAAAAACAAcAZwABAAAAAAADAAgAgQABAAAAAAAEAAgAnAABAAAAAAAFAAsAvQABAAAAAAAGAAgA2wABAAAAAAAKACsBPAABAAAAAAALABMBkAADAAEECQAAACYAAAADAAEECQABABAAPAADAAEECQACAA4AVwADAAEECQADABAAbwADAAEECQAEABAAigADAAEECQAFABYApQADAAEECQAGABAAyQADAAEECQAKAFYA5AADAAEECQALACYBaABDAHIAZQBhAHQAZQBkACAAYgB5ACAAaQBjAG8AbgBmAG8AbgB0AABDcmVhdGVkIGJ5IGljb25mb250AABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABSAGUAZwB1AGwAYQByAABSZWd1bGFyAABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABpAGMAbwBuAGYAbwBuAHQAAGljb25mb250AABHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAABHZW5lcmF0ZWQgYnkgc3ZnMnR0ZiBmcm9tIEZvbnRlbGxvIHByb2plY3QuAABoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAABodHRwOi8vZm9udGVsbG8uY29tAAAAAAIAAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAEAAgECAQMBBAEFAQYKeW91amlhbnRvdQt5b3VqaWFudG91MQt5b3VqaWFudG91Mgp6dW9qaWFudG91B3NoYW5jaHUAAAAB//8AAgABAAAADAAAABYAAAACAAEAAwAHAAEABAAAAAIAAAAAAAAAAQAAAADVpCcIAAAAAOCMnBkAAAAA4IycGQ==) format("truetype");font-weight:400;font-style:normal;font-display:swap}.l-icons[data-v-f46b05a0]{font-family:l-icons;font-size:1.1875rem;color:#333;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-shanchu[data-v-f46b05a0]:before{content:"\e6f0"}.icon-youjiantou[data-v-f46b05a0]:before{content:"\e600"}.icon-zuojiantou[data-v-f46b05a0]:before{content:"\e623"}.icon-youjiantou1[data-v-f46b05a0]:before{content:"\e607"}.icon-youjiantou2[data-v-f46b05a0]:before{content:"\e61f"}.l-calendar-box[data-v-f46b05a0]{width:100%;position:fixed;left:0;right:0;bottom:0;z-index:9999;visibility:hidden;transform:translate3d(0,100%,0);transform-origin:center;transition:all .3s ease-in-out;min-height:.625rem}.l-calendar-box .calendar-top[data-v-f46b05a0]{width:100%;height:2.5rem;padding:0 1.25rem;display:flex;justify-content:center;align-items:center;box-sizing:border-box;font-size:.9375rem;font-weight:700;background-color:#fff;color:#333;position:relative;border-top-left-radius:.625rem;border-top-right-radius:.625rem;overflow:hidden}.l-calendar-box .calendar-top .close[data-v-f46b05a0]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);color:#999}.l-calendar-box .date-box[data-v-f46b05a0]{width:100%;display:flex;align-items:center;justify-content:center;padding:.625rem 0 .9375rem;background-color:#fff}.l-calendar-box .date-box .date-arrowleft[data-v-f46b05a0]{margin-right:1rem}.l-calendar-box .date-box .date-arrowright[data-v-f46b05a0]{margin-left:1rem}.l-calendar-box .date-box .title-datetime[data-v-f46b05a0]{padding:0 .5rem;color:#333;font-size:.9375rem;line-height:.9375rem;font-weight:700}.l-calendar-box .date-weekday[data-v-f46b05a0]{width:100%;display:flex;align-items:center;background-color:#fff;font-size:.75rem;line-height:.75rem;color:#555;box-shadow:0 .46875rem .625rem -.46875rem #efefef;position:relative;z-index:2}.l-calendar-box .date-weekday .date-weekday-item[data-v-f46b05a0]{width:14.2857%;display:flex;align-items:center;justify-content:center;padding:.375rem 0;overflow:hidden;position:relative;z-index:2}.l-calendar-box .date-content[data-v-f46b05a0]{width:100%;display:flex;flex-wrap:wrap;padding:.375rem 0;box-sizing:border-box;background-color:#fff;position:relative;align-content:flex-start}.l-calendar-box .date-content .date-weekday-item[data-v-f46b05a0]{width:14.2857%;display:flex;align-items:center;justify-content:center;padding:.375rem 0;overflow:hidden;position:relative;z-index:2}.l-calendar-box .date-content .date-weekday-item .date-content-item[data-v-f46b05a0]{width:2.5rem;height:2.5rem;display:flex;align-items:center;justify-content:center;flex-direction:column;font-size:1rem;line-height:1rem;position:relative;border-radius:50%;background-color:transparent}.l-calendar-box .date-content .date-weekday-item .date-content-item .custom-desc[data-v-f46b05a0]{width:100%;font-size:.75rem;line-height:.75rem;transform:scale(.8);transform-origin:center center;text-align:center}.l-calendar-box .date-content .date-weekday-item .date-content-item-desc[data-v-f46b05a0]{width:100%;font-size:.75rem;line-height:.75rem;position:absolute;left:0;transform:scale(.8);transform-origin:center center;text-align:center;bottom:.25rem;z-index:2}.l-calendar-box .date-content .start-date[data-v-f46b05a0]{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.l-calendar-box .date-content .end-date[data-v-f46b05a0]{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.l-calendar-box .date-content .bg-mounth[data-v-f46b05a0]{position:absolute;font-size:8.125rem;line-height:8.125rem;left:50%;top:50%;transform:translate(-50%,-50%);color:#f5f5f7;z-index:1}.l-calendar-box .calendar-text[data-v-f46b05a0]{width:100%;display:flex;align-items:center;justify-content:center;flex-direction:column;background-color:#fff;padding:0 1.3125rem .9375rem;box-sizing:border-box;font-size:.75rem;color:#666}.l-calendar-box .calendar-text .calendar-result[data-v-f46b05a0]{height:1.5rem;transform:scale(.9);transform-origin:center 100%}.l-calendar-box .calendar-text .calendar-btn[data-v-f46b05a0]{width:100%}.l-calendar-box .calendar-text .calendar-btn uni-button[data-v-f46b05a0]{background-color:#d3832a;color:#fff;height:2.5rem;line-height:2.25rem;font-size:1rem;border:none}.mask[data-v-f46b05a0]{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.6);z-index:9996;transition:all .3s ease-in-out;opacity:0;visibility:hidden}.mask-show[data-v-f46b05a0]{opacity:1;visibility:visible}.tui-btn-calendar[data-v-f46b05a0]{padding:.5rem;box-sizing:border-box;text-align:center;text-decoration:none}.l-opacity[data-v-f46b05a0]{opacity:.5}.calendar-box-show[data-v-f46b05a0]{transform:translateZ(0);visibility:visible}.inputsr{width:17.1875rem!important;height:2.34375rem;background:#F5F5F6;border-radius:.25rem;opacity:1;border:.0625rem solid #EEEEEE;padding:.5rem .5625rem;box-sizing:border-box;padding-right:0;display:flex;align-items:center;justify-content:space-between;font-size:.8125rem;font-weight:400;color:#092c4d}.inputsr>uni-input{flex:1;font-size:.8125rem}.schbox{display:flex;align-items:center;justify-content:flex-start;padding:.46875rem 1rem;box-sizing:border-box;background-color:#fff}.schbox>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#092c4d}.schbox>uni-view:nth-of-type(2){width:11.875rem}.schbox>uni-view:nth-of-type(3){width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.headtop{display:flex;align-items:center;justify-content:space-between;background-color:#fff;padding:.625rem .9375rem;box-sizing:border-box}.headtop>uni-view:nth-of-type(1){width:16.875rem;border:.03125rem solid #00000020;padding:.3125rem .625rem;box-sizing:border-box}.headtop>uni-view:nth-of-type(1)>uni-input{flex:1;font-size:.875rem}.headtop>uni-view:nth-of-type(2){width:4rem;height:2rem;background:#D3832A;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:400;color:#fff}.scvmabx{width:100%;height:71vh;margin-top:.625rem}.scvmabx .maxboxs{width:100%;display:flex;flex-direction:column;align-items:center}.scvmabx .maxboxs>.items{width:100%;display:flex;flex-direction:column;background-color:#fff;margin-bottom:.625rem;padding:.5rem .9375rem;box-sizing:border-box}.scvmabx .maxboxs>.items .contentbx{display:flex;flex-direction:column}.scvmabx .maxboxs>.items .contentbx .unames{display:flex;flex-direction:column;align-items:flex-start;padding:.46875rem 0}.scvmabx .maxboxs>.items .contentbx .unames>uni-view{display:flex;align-items:center;font-size:.875rem}.scvmabx .maxboxs>.items .contentbx .unames>uni-view:nth-of-type(1){margin-bottom:.625rem}.scvmabx .maxboxs>.items .contentbx .unames>uni-view>uni-view:nth-of-type(1){width:5.625rem;display:flex;align-items:center;justify-content:flex-start}.scvmabx .maxboxs>.items .contentbx .unames>uni-view>uni-view:nth-of-type(1)>uni-image{width:1.3125rem;height:1.3125rem;margin-right:.46875rem}.scvmabx .maxboxs>.items .contentbx .numbox{width:21.4375rem;height:5rem;background:#F5F7FB;border-radius:.25rem;display:flex;align-items:center;justify-content:center;margin:auto}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view{display:flex;flex-direction:column;align-items:center;justify-content:center}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view:nth-of-type(1){margin-right:4.375rem}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view>uni-view:nth-of-type(1){font-size:.875rem;font-weight:400;color:#afb4ba;margin-bottom:.625rem}.scvmabx .maxboxs>.items .contentbx .numbox>uni-view>uni-view:nth-of-type(2){font-size:1.125rem;font-weight:400;color:#020b18}.scvmabx .maxboxs>.items .headtopv{display:flex;align-items:center;justify-content:space-between;padding:.4375rem 0;border-bottom:.0625rem solid #EEEEEE}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(1){display:flex;align-items:center;justify-content:center;color:#020b18;font-size:1rem}.scvmabx .maxboxs>.items .headtopv>uni-view:nth-of-type(1)>uni-image{width:1rem;height:1rem;margin-right:.3125rem}.scvmabx .maxboxs>.items .headtopv>uni-view:last-child{width:6rem;height:2.25rem;background:#D3832A;border-radius:.25rem;opacity:1;display:flex;align-items:center;justify-content:center;font-size:.875rem;font-weight:400;color:#fff}
diff --git a/unpackage/dist/dev/app-plus/app-config-service.js b/unpackage/dist/dev/app-plus/app-config-service.js
index e5d0e2b..0f4741e 100644
--- a/unpackage/dist/dev/app-plus/app-config-service.js
+++ b/unpackage/dist/dev/app-plus/app-config-service.js
@@ -1,8 +1,8 @@
;(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.8.12","entryPagePath":"pages/index/index","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/news/news","iconPath":"/static/TabberIcon/icon4.png","selectedIconPath":"/static/TabberIcon/icon4check.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/index/index","meta":{"isQuit":true,"isEntry":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/login/login","meta":{"enablePullDownRefresh":true,"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":3,"enablePullDownRefresh":true,"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":{"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/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/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/StockUplist/StockUplist","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUplistScandetails/StockUplistScandetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货列表扫码","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownScan/DownScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/signinScan/signinScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPScanList/SelfPScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPickupDetails/SelfPickupDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/LoadingDetails/LoadingDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配车明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配送客户扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerSign/CustomerSign","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户签收","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/signOrderScan/signOrderScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SignDetailScan/SignDetailScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/setbarcode/setbarcode","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配置包条码","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OfflineUpload/OfflineUpload","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"离线上传","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/createTask/createTask","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"创建任务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ordersorting/ordersorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/lnventorysorting/lnventorysorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/scansorting/scansorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/peopleSorting/peopleSorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OrderSortingDetail/OrderSortingDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"继续分拣列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanSortingType/ScanSortingType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryType/inventoryType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品类型","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryDetail/inventoryDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描列表详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryDetailList/inventoryDetailList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描详情明细","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryenter/inventoryenter","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品录入","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/lnventorysortinglist/lnventorysortinglist","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"分拣列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanUpType/ScanUpType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanUp/ScanUp","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelocationType/RelocationType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Relocation/Relocation","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleScanUpType/PeopleScanUpType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleScanUp/PeopleScanUp","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PickingScanList/PickingScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"拣货列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Retention/Retention","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"滞留","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/MergeTray/MergeTray","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"合托","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/MergeTrayDetails/MergeTrayDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"合并托盘","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownGoodsType/DownGoodsType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownGoods/DownGoods","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SetPrice/SetPrice","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"设置服务费","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RemoveTray/RemoveTray","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"空置托盘","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Check/Check","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"复核","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/createAddServe/createAddServe","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"创建增值服务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderDetail/orderDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelocationAllocationId/RelocationAllocationId","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库库位","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderDetails/orderDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderInquiry/orderInquiry","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单查询","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户托盘扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUpListZero/StockUpListZero","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货零担列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesUser/pages/about/about","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"关于我们","style":"custom","type":"default"},"isNVue":false}},{"path":"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 __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/index/index","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/news/news","iconPath":"/static/TabberIcon/icon4.png","selectedIconPath":"/static/TabberIcon/icon4check.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/index/index","meta":{"isQuit":true,"isEntry":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/login/login","meta":{"enablePullDownRefresh":true,"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":3,"enablePullDownRefresh":true,"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":{"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/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/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/StockUplist/StockUplist","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUplistScandetails/StockUplistScandetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货列表扫码","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownScan/DownScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/signinScan/signinScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPScanList/SelfPScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SelfPickupDetails/SelfPickupDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"自提明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/LoadingDetails/LoadingDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配车明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配送客户扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerSign/CustomerSign","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户签收","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/signOrderScan/signOrderScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收订单扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SignDetailScan/SignDetailScan","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"签收明细扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/setbarcode/setbarcode","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"配置包条码","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OfflineUpload/OfflineUpload","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"离线上传","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/createTask/createTask","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"创建任务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ordersorting/ordersorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/lnventorysorting/lnventorysorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/scansorting/scansorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/peopleSorting/peopleSorting","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OrderSortingDetail/OrderSortingDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"继续分拣列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanSortingType/ScanSortingType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工分拣","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryType/inventoryType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品类型","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryDetail/inventoryDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描列表详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryDetailList/inventoryDetailList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描详情明细","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/inventoryenter/inventoryenter","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库存品录入","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/lnventorysortinglist/lnventorysortinglist","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"分拣列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanUpType/ScanUpType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/ScanUp/ScanUp","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"扫描上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelocationType/RelocationType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Relocation/Relocation","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleScanUpType/PeopleScanUpType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PeopleScanUp/PeopleScanUp","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"人工上架","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/PickingScanList/PickingScanList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"拣货列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Retention/Retention","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"滞留","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/MergeTray/MergeTray","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"合托","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/MergeTrayDetails/MergeTrayDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"合并托盘","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownGoodsType/DownGoodsType","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/DownGoods/DownGoods","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"下架扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/SetPrice/SetPrice","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"设置服务费","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RemoveTray/RemoveTray","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"空置托盘","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/Check/Check","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"复核","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/createAddServe/createAddServe","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"创建增值服务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderDetail/orderDetail","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/RelocationAllocationId/RelocationAllocationId","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"移库库位","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderDetails/orderDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单详情","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/orderInquiry/orderInquiry","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"订单查询","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"客户托盘扫描","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesHome/pages/StockUpListZero/StockUpListZero","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"备货零担列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesUser/pages/about/about","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"关于我们","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesUser/pages/systemSettings/systemSettings","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"系统设置","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/dynamicCheck/dynamicCheck","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"盘点任务","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/checkTaskList/checkTaskList","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"盘点任务列表","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"随机盘点","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"库位盘点","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/trayCheckDetails/trayCheckDetails","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"托盘盘点","style":"custom","type":"default"},"isNVue":false}},{"path":"pagesTask/pages/contracts/contracts","meta":{"enablePullDownRefresh":true,"onReachBottomDistance":1,"animationDuration":300,"animationType":"zoom-fade-out","pullToRefresh":{"support":true,"color":"#d3832a","style":"circle"},"navigationBar":{"titleText":"按合同号盘点","style":"custom","type":"default"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
__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 9641d29..5855e81 100644
--- a/unpackage/dist/dev/app-plus/app-service.js
+++ b/unpackage/dist/dev/app-plus/app-service.js
@@ -1765,7 +1765,7 @@ if (uni.restoreGlobal) {
}
return target;
};
- const _sfc_main$1n = {
+ const _sfc_main$1o = {
name: "u-status-bar",
mixins: [mpMixin$1, mixin$1, props$5],
data() {
@@ -1794,7 +1794,7 @@ if (uni.restoreGlobal) {
/* STYLE */
);
}
- const __easycom_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1n, [["render", _sfc_render$i], ["__scopeId", "data-v-eb8e0cdd"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-status-bar/u-status-bar.vue"]]);
+ const __easycom_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1o, [["render", _sfc_render$i], ["__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": "",
@@ -2098,7 +2098,7 @@ if (uni.restoreGlobal) {
}
}
};
- const _sfc_main$1m = {
+ const _sfc_main$1n = {
name: "u-icon",
data() {
return {};
@@ -2192,7 +2192,7 @@ if (uni.restoreGlobal) {
/* CLASS */
);
}
- const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1m, [["render", _sfc_render$h], ["__scopeId", "data-v-ac70166d"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-icon/u-icon.vue"]]);
+ const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1n, [["render", _sfc_render$h], ["__scopeId", "data-v-ac70166d"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-icon/u-icon.vue"]]);
const props$3 = {
props: {
// 是否开启顶部安全区适配
@@ -2277,7 +2277,7 @@ if (uni.restoreGlobal) {
}
}
};
- const _sfc_main$1l = {
+ const _sfc_main$1m = {
name: "u-navbar",
mixins: [mpMixin$1, mixin$1, props$3],
data() {
@@ -2409,7 +2409,7 @@ if (uni.restoreGlobal) {
)
]);
}
- const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["render", _sfc_render$g], ["__scopeId", "data-v-f631659b"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-navbar/u-navbar.vue"]]);
+ const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1m, [["render", _sfc_render$g], ["__scopeId", "data-v-f631659b"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-navbar/u-navbar.vue"]]);
function getDevtoolsGlobalHook$1() {
return getTarget$1().__VUE_DEVTOOLS_GLOBAL_HOOK__;
}
@@ -4016,7 +4016,7 @@ if (uni.restoreGlobal) {
};
};
const base64 = new Base64();
- const devhost = "http://192.168.10.48:8888/";
+ const devhost = "http://192.168.10.75:8777/";
const imghost = "";
const host = devhost;
const APPKEY = "h5u:h5u_secret";
@@ -4299,7 +4299,7 @@ if (uni.restoreGlobal) {
return binl2hex(coreMD5(str2binl(str)));
}
const service = (params) => {
- return new Promise((relove, reject) => {
+ return new Promise(async (relove, reject) => {
let refresh_token = uni.getStorageSync("refresh_token");
let token = uni.getStorageSync("access_token");
let user = uni.getStorageSync("userinfo");
@@ -4326,14 +4326,29 @@ if (uni.restoreGlobal) {
} else {
urlhd = host;
}
+ let version2 = "";
+ if (!version2) {
+ version2 = await utils.getversion();
+ version2 = version2.version;
+ }
function req() {
- uni.request({
+ let submitData = {
url: urlhd + params.url,
data: params.data,
method: params.method,
+ header
+ };
+ submitData = {
+ url: urlhd + params.url,
+ data: {
+ ...params.data,
+ version: version2
+ },
+ method: params.method,
// dataType: "json",
header
- }).then((res) => {
+ };
+ uni.request(submitData).then((res) => {
uni.hideLoading();
if (res.statusCode == 200) {
let data = res.data;
@@ -4382,7 +4397,7 @@ if (uni.restoreGlobal) {
utils.ttsspke("连接服务器失败");
}
}).catch((err) => {
- formatAppLog("log", "at utils/request.js:133", err);
+ formatAppLog("log", "at utils/request.js:155", err);
api.error("请检查是否连接到无线网络");
utils.ttsspke("请检查是否连接到无线网络");
uni.hideLoading();
@@ -4603,7 +4618,7 @@ if (uni.restoreGlobal) {
}
function signforinventory(data) {
return service({
- url: `logpm-distribution/app/signfor/inventory`,
+ url: `logpm-distribution/app/delivery/inventory`,
method: "get",
data
});
@@ -5133,6 +5148,13 @@ if (uni.restoreGlobal) {
data
});
}
+ function addvalueupdateAddvalueInfo(data) {
+ return service({
+ url: `logpm-distribution/app/addvalue/updateAddvalueInfo`,
+ method: "post",
+ data
+ });
+ }
function distributionStockuplocationSelection(data) {
return service({
url: `logpm-distribution/app/distributionStockup/locationSelection`,
@@ -5383,7 +5405,7 @@ if (uni.restoreGlobal) {
}
});
}
- const _sfc_main$1k = /* @__PURE__ */ vue.defineComponent({
+ const _sfc_main$1l = /* @__PURE__ */ vue.defineComponent({
__name: "index",
setup(__props) {
const tip = vue.ref(null);
@@ -5550,10 +5572,11 @@ if (uni.restoreGlobal) {
initbuts();
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
init();
initbuts();
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
vue.watchEffect(() => {
@@ -5584,7 +5607,7 @@ if (uni.restoreGlobal) {
maxarr.push(arr);
}
details.tablist = maxarr;
- formatAppLog("log", "at pages/index/index.vue:400", details.tablist);
+ formatAppLog("log", "at pages/index/index.vue:401", details.tablist);
}
const { tablist } = vue.toRefs(details);
return (_ctx, _cache) => {
@@ -5663,7 +5686,7 @@ if (uni.restoreGlobal) {
};
}
});
- const PagesIndexIndex = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["__file", "D:/worksp/logpm/pages/index/index.vue"]]);
+ const PagesIndexIndex = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["__file", "D:/worksp/logpm/pages/index/index.vue"]]);
var isVue2 = false;
function set(target, key, val) {
if (Array.isArray(target)) {
@@ -7300,7 +7323,7 @@ This will fail in production if not fixed.`);
HANDLE_USERINFO
};
});
- const _sfc_main$1j = /* @__PURE__ */ vue.defineComponent({
+ const _sfc_main$1k = /* @__PURE__ */ vue.defineComponent({
__name: "login",
setup(__props) {
const userStore = useUserStore();
@@ -7325,15 +7348,17 @@ This will fail in production if not fixed.`);
}
});
onShow(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
+ clearTimeout(timer);
}, 2e3);
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
details.username = "";
details.tenantId = "";
details.password = "";
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
function ckeckitem(item) {
@@ -7368,7 +7393,7 @@ This will fail in production if not fixed.`);
title: "登录中"
});
let response = await oauthtoken(data);
- formatAppLog("log", "at pages/login/login.vue:174", response);
+ formatAppLog("log", "at pages/login/login.vue:176", response);
if (response == null ? void 0 : response.refresh_token) {
setloctuser(response);
uni.setStorageSync("checkname", {
@@ -7410,10 +7435,10 @@ This will fail in production if not fixed.`);
tip.value.setisshow(false);
}
});
- formatAppLog("log", "at pages/login/login.vue:218", "登录错误");
+ formatAppLog("log", "at pages/login/login.vue:220", "登录错误");
}
} catch (err) {
- formatAppLog("log", "at pages/login/login.vue:221", "err :>> ", err);
+ formatAppLog("log", "at pages/login/login.vue:223", "err :>> ", err);
} finally {
uni.hideLoading();
}
@@ -7607,8 +7632,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesLoginLogin = /* @__PURE__ */ _export_sfc(_sfc_main$1j, [["__file", "D:/worksp/logpm/pages/login/login.vue"]]);
- const _sfc_main$1i = /* @__PURE__ */ vue.defineComponent({
+ const PagesLoginLogin = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["__file", "D:/worksp/logpm/pages/login/login.vue"]]);
+ const _sfc_main$1j = /* @__PURE__ */ vue.defineComponent({
__name: "user",
setup(__props) {
let users = vue.ref(null);
@@ -7635,8 +7660,9 @@ This will fail in production if not fixed.`);
warehouseName.value = uni.getStorageSync("checkname");
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
function ckeckitemck(item) {
@@ -7674,7 +7700,11 @@ This will fail in production if not fixed.`);
function checkitem(item) {
if (item.type == 1)
;
- else if (item.type == 5) {
+ else if (item.type == 3) {
+ uni.navigateTo({
+ url: "/pagesUser/pages/systemSettings/systemSettings"
+ });
+ } else if (item.type == 5) {
uni.navigateTo({
url: "/pagesUser/pages/about/about"
});
@@ -7695,25 +7725,25 @@ This will fail in production if not fixed.`);
uni.reLaunch({
url: "/pages/login/login"
});
- formatAppLog("log", "at pages/user/user.vue:169", res.currentSize);
- formatAppLog("log", "at pages/user/user.vue:170", String(res.limitSize));
+ formatAppLog("log", "at pages/user/user.vue:176", res.currentSize);
+ formatAppLog("log", "at pages/user/user.vue:177", String(res.limitSize));
}
async function updateApp() {
let version2 = {
- version: "1.0.16",
+ version: "1.0.17",
pkName: "com.hwy.pda"
};
- formatAppLog("log", "at pages/user/user.vue:179", "version 版本>>>>", version2);
+ formatAppLog("log", "at pages/user/user.vue:186", "version 版本>>>>", version2);
let data = {
betenantCode: uni.getStorageSync("userinfo").tenant_id,
versionCode: version2.version.split(".").join(""),
versionType: version2.pkName.indexOf("test") != -1 ? "1" : version2.pkName.indexOf("bate") != -1 ? "2" : "3"
};
- formatAppLog("log", "at pages/user/user.vue:185", "data>>>>", data);
+ formatAppLog("log", "at pages/user/user.vue:192", "data>>>>", data);
let response = await AppPdaversiondetail(data);
if (response.code == 200 && Object.keys(response.data).length !== 0) {
- formatAppLog("log", "at pages/user/user.vue:188", "res.data", response.data);
- formatAppLog("log", "at pages/user/user.vue:189", "有可更新包");
+ formatAppLog("log", "at pages/user/user.vue:195", "res.data", response.data);
+ formatAppLog("log", "at pages/user/user.vue:196", "有可更新包");
if (response.data.noSensation == "2" && response.data.link.indexOf("wgt") != -1) {
utils.updatefile1(response.data.link);
} else {
@@ -7913,14 +7943,15 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesUserUser = /* @__PURE__ */ _export_sfc(_sfc_main$1i, [["__file", "D:/worksp/logpm/pages/user/user.vue"]]);
- const _sfc_main$1h = /* @__PURE__ */ vue.defineComponent({
+ const PagesUserUser = /* @__PURE__ */ _export_sfc(_sfc_main$1j, [["__file", "D:/worksp/logpm/pages/user/user.vue"]]);
+ const _sfc_main$1i = /* @__PURE__ */ vue.defineComponent({
__name: "news",
setup(__props) {
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
iptis.value = "http://192.168.10.75:8777/";
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
let iptis = vue.ref("http://192.168.10.12:1086/");
@@ -7976,8 +8007,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesNewsNews = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["__file", "D:/worksp/logpm/pages/news/news.vue"]]);
- const _sfc_main$1g = /* @__PURE__ */ vue.defineComponent({
+ const PagesNewsNews = /* @__PURE__ */ _export_sfc(_sfc_main$1i, [["__file", "D:/worksp/logpm/pages/news/news.vue"]]);
+ const _sfc_main$1h = /* @__PURE__ */ vue.defineComponent({
__name: "taskList",
setup(__props) {
const tip = vue.ref(null);
@@ -8006,8 +8037,9 @@ This will fail in production if not fixed.`);
onLoad(() => {
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
const { tablist } = vue.toRefs(details);
@@ -8091,13 +8123,14 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesTaskListTaskList = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["__file", "D:/worksp/logpm/pages/taskList/taskList.vue"]]);
- const _sfc_main$1f = /* @__PURE__ */ vue.defineComponent({
+ const PagesTaskListTaskList = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["__file", "D:/worksp/logpm/pages/taskList/taskList.vue"]]);
+ const _sfc_main$1g = /* @__PURE__ */ vue.defineComponent({
__name: "reportForms",
setup(__props) {
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
return (_ctx, _cache) => {
@@ -8105,7 +8138,7 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesReportFormsReportForms = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__file", "D:/worksp/logpm/pages/reportForms/reportForms.vue"]]);
+ const PagesReportFormsReportForms = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["__file", "D:/worksp/logpm/pages/reportForms/reportForms.vue"]]);
let calendar = {
/**
* 农历1900-2100的润大小信息表
@@ -9025,7 +9058,7 @@ This will fail in production if not fixed.`);
solar2lunar: calendar.solar2lunar,
lunar2solar: calendar.lunar2solar
};
- const _sfc_main$1e = {
+ const _sfc_main$1f = {
name: "lCalendar",
model: {
prop: "value",
@@ -9679,8 +9712,8 @@ This will fail in production if not fixed.`);
/* HYDRATE_EVENTS */
);
}
- const __easycom_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["render", _sfc_render$f], ["__scopeId", "data-v-665735f1"], ["__file", "D:/worksp/logpm/uni_modules/l-calendar/components/l-calendar/l-calendar.vue"]]);
- const _sfc_main$1d = /* @__PURE__ */ vue.defineComponent({
+ const __easycom_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["render", _sfc_render$f], ["__scopeId", "data-v-665735f1"], ["__file", "D:/worksp/logpm/uni_modules/l-calendar/components/l-calendar/l-calendar.vue"]]);
+ const _sfc_main$1e = /* @__PURE__ */ vue.defineComponent({
__name: "pickingScan",
setup(__props) {
let details = vue.reactive({
@@ -9719,8 +9752,9 @@ This will fail in production if not fixed.`);
});
onPullDownRefresh(() => {
init();
- setTimeout(() => {
+ const timer = setTimeout(() => {
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
function init() {
@@ -10015,8 +10049,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesPickingScanPickingScan = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["__file", "D:/worksp/logpm/pagesHome/pages/pickingScan/pickingScan.vue"]]);
- const _sfc_main$1c = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesPickingScanPickingScan = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["__file", "D:/worksp/logpm/pagesHome/pages/pickingScan/pickingScan.vue"]]);
+ const _sfc_main$1d = /* @__PURE__ */ vue.defineComponent({
__name: "SelfPickupScan",
setup(__props) {
let details = vue.reactive({
@@ -10044,6 +10078,8 @@ This will fail in production if not fixed.`);
onLoad(() => {
date2.value[0] = uni.$u.timeFormat((/* @__PURE__ */ new Date()).valueOf() - 1e3 * 60 * 60 * 24 * 3, "yyyy-mm-dd");
date2.value[1] = uni.$u.timeFormat((/* @__PURE__ */ new Date()).valueOf(), "yyyy-mm-dd");
+ });
+ onShow(() => {
init();
});
function init() {
@@ -10284,8 +10320,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesSelfPickupScanSelfPickupScan = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPickupScan/SelfPickupScan.vue"]]);
- const _sfc_main$1b = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesSelfPickupScanSelfPickupScan = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPickupScan/SelfPickupScan.vue"]]);
+ const _sfc_main$1c = /* @__PURE__ */ vue.defineComponent({
__name: "LoadingScan",
setup(__props) {
let details = vue.reactive({
@@ -10305,6 +10341,13 @@ This will fail in production if not fixed.`);
function showCalendar() {
details.show = !details.show;
}
+ onPullDownRefresh(() => {
+ const timer = setTimeout(async () => {
+ await initpage();
+ uni.stopPullDownRefresh();
+ clearTimeout(timer);
+ }, 1e3);
+ });
function setstates(state) {
if (details.checkstate == state) {
return;
@@ -10416,7 +10459,7 @@ This will fail in production if not fixed.`);
}
});
function onConfirm(e) {
- formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:266", e);
+ formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:277", e);
date2.value[0] = e.startDate;
date2.value[1] = e.endDate;
details.datatime = date2.value[0] + " 至 " + date2.value[1];
@@ -10427,7 +10470,7 @@ This will fail in production if not fixed.`);
details.current = 1;
});
function showtime(value) {
- formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:278", value);
+ formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:289", value);
details.show = value;
}
async function initpage() {
@@ -10439,7 +10482,7 @@ This will fail in production if not fixed.`);
type: details.checkstate
};
let response = await deliverypage(data);
- formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:290", response);
+ formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:301", response);
if (details.current == 1) {
details.recordsList = response.data.records;
} else {
@@ -10449,10 +10492,11 @@ This will fail in production if not fixed.`);
icon: "none"
});
details.current--;
- return;
+ return null;
}
details.recordsList = details.recordsList.concat(response.data.records);
}
+ return null;
}
async function goselscan(item) {
let data = {
@@ -10513,7 +10557,7 @@ This will fail in production if not fixed.`);
deliveryId: item.id
};
let res = await deliveryvehicle(data);
- formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:371", res);
+ formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:383", res);
if (res.data.length == 1) {
uni.setStorageSync("checkvehicle", res.data[0]);
uni.navigateTo({
@@ -10832,13 +10876,13 @@ This will fail in production if not fixed.`);
])
]),
vue.createElementVNode("view", { class: "buts" }, [
+ vue.createElementVNode("view", {
+ onClick: ($event) => goselscan(item)
+ }, "装车扫描", 8, ["onClick"]),
!item.departureTime ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
onClick: ($event) => startld(item)
- }, "发车", 8, ["onClick"])) : vue.createCommentVNode("v-if", true),
- vue.createElementVNode("view", {
- onClick: ($event) => goselscan(item)
- }, "装车扫描", 8, ["onClick"])
+ }, "发车", 8, ["onClick"])) : vue.createCommentVNode("v-if", true)
])
]);
}),
@@ -10887,8 +10931,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesLoadingScanLoadingScan = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["__file", "D:/worksp/logpm/pagesHome/pages/LoadingScan/LoadingScan.vue"]]);
- const _sfc_main$1a = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesLoadingScanLoadingScan = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["__file", "D:/worksp/logpm/pagesHome/pages/LoadingScan/LoadingScan.vue"]]);
+ const _sfc_main$1b = /* @__PURE__ */ vue.defineComponent({
__name: "StockUplist",
setup(__props) {
const utils2 = vue.inject("utils");
@@ -10923,7 +10967,7 @@ This will fail in production if not fixed.`);
onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:183", code2);
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:187", code2);
details.scancode = code2;
details.isscan = true;
if (details.isscan)
@@ -10943,7 +10987,7 @@ This will fail in production if not fixed.`);
}
async function initpage() {
var _a, _b, _c, _d, _e, _f, _g;
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:201", details.items);
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:205", details.items);
let data = {
// 零担为1, 不是零担为0
isZero: 0,
@@ -10958,8 +11002,8 @@ This will fail in production if not fixed.`);
}
details.orderList = [];
let response = await distributionStockuporderList(data);
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:217", "response :>> ", response);
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:218", "details.orderStatus :>> ", details.orderStatus);
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:221", "response :>> ", response);
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:222", "details.orderStatus :>> ", details.orderStatus);
details.user.consignee = (_a = response.data) == null ? void 0 : _a.consignee;
details.user.goodsAreaName = (_b = response.data) == null ? void 0 : _b.goodsAreaName;
details.user.planNum = (_c = response.data) == null ? void 0 : _c.planNum;
@@ -10978,6 +11022,11 @@ This will fail in production if not fixed.`);
async function ckscanningCode(item) {
details.isscan = item.taryLean;
details.trayId = item.trayId;
+ uni.showToast({
+ title: "请扫描托盘码",
+ icon: "none"
+ });
+ utils2.ttsspke("请扫描托盘码");
}
function setorderStatus(state) {
details.orderStatus = state;
@@ -11043,7 +11092,12 @@ This will fail in production if not fixed.`);
initpage();
}
async function showZeroOrderDetails(item) {
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:331", "item :>> ", item);
+ if (!item.allocation) {
+ return uni.showToast({
+ title: "未上架,上架后再进行操作",
+ icon: "none"
+ });
+ }
let data = {
typeService: details.items.typeService,
stockupId: details.stockupId,
@@ -11055,7 +11109,7 @@ This will fail in production if not fixed.`);
let inpList = [];
const { code: code2 } = res;
if (code2 === 200) {
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:343", "res.data :>> ", res.data);
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:360", "res.data :>> ", res.data);
inpList = res.data.map((val) => {
return {
id: val.id,
@@ -11100,7 +11154,7 @@ This will fail in production if not fixed.`);
confirmTxt: "确认选择",
isonecheck: true,
success: async (deta) => {
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:392", "deta :>> ", deta);
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:409", "deta :>> ", deta);
if (deta.inpList.length === 0 || item.completeStact)
return tiplists.value.setdetails({ isshow: false });
let data2 = {
@@ -11114,7 +11168,7 @@ This will fail in production if not fixed.`);
if (deta.inpList[0].allocationId)
data2.allocationId = deta.inpList[0].allocationId;
const _flag = deta.inpList.every((val) => {
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:404", "val :>> ", val);
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:421", "val :>> ", val);
if (val.value < val.minNum) {
uni.showToast({
title: "不能小于当前数量"
@@ -11122,7 +11176,7 @@ This will fail in production if not fixed.`);
return false;
}
if (val.value > val.minNum) {
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:412", "1 :>> ", 1);
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:429", "1 :>> ", 1);
data2.list.push({
firsts: val.title,
id: val.id,
@@ -11141,7 +11195,7 @@ This will fail in production if not fixed.`);
});
}
const res2 = await postZeroStockUp(data2);
- formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:433", "res :>> ", res2);
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:450", "res :>> ", res2);
const { code: code22 } = res2;
if (code22 === 200) {
tiplists.value.setdetails({ isshow: false });
@@ -11159,6 +11213,83 @@ This will fail in production if not fixed.`);
}
});
}
+ function printOrderCode(item) {
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:475", "item :>> ", item);
+ tiplists.value.setdetails({
+ title: "生成订单编号二维码数量",
+ isshow: true,
+ tipstate: 1,
+ // inpList,
+ inputtext: 1,
+ confirmTxt: "确定生成",
+ isonecheck: true,
+ success: async (deta) => {
+ var _a;
+ const _inputValue = parseInt(deta.inputtext);
+ let _flag = true;
+ if (_inputValue !== _inputValue) {
+ uni.showToast({
+ title: "请输入数字",
+ icon: "none"
+ });
+ _flag = false;
+ } else if (_inputValue <= 0) {
+ uni.showToast({
+ title: "数字必须大于零",
+ icon: "none"
+ });
+ _flag = false;
+ }
+ if (!_flag)
+ return tiplists.value.setdetails({ isshow: false });
+ for (let i = 0; i <= _inputValue; i++) {
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:508", "i :>> ", i);
+ let text = "! 0 200 200 330 1\r\n";
+ text += "SETBOLD 2\r\n";
+ text += `T 56 0 0 0 ${item.orderCode}\r
+`;
+ text += "LINE 0 50 420 50 3\r\n";
+ text += `T 55 0 0 60 客户\r
+`;
+ text += "LINE 40 50 40 110 3\r\n";
+ text += `T 55 0 50 60 ${user.consignee}\r
+`;
+ text += "LINE 40 80 420 80 3\r\n";
+ text += `T 55 0 50 90 ${details.address}\r
+`;
+ text += "LINE 0 110 420 110 3\r\n";
+ text += `T 55 0 0 120 物料\r
+`;
+ text += "LINE 40 110 40 140 3\r\n";
+ text += `T 55 0 50 120 ${(_a = details.dataList[item]) == null ? void 0 : _a.materialName}\r
+`;
+ text += "LINE 0 140 420 140 3\r\n";
+ text += "B QR 150 150 M 2 U 4\r\n";
+ text += `MA,${item.orderCode}\r
+`;
+ text += "ENDQR\r\n";
+ text += `T 55 0 140 260 ${item.orderCode}\r
+`;
+ text += "FORM\r\n";
+ text += "PRINT\r\n";
+ let sylist = utils2.initbl();
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:530", sylist);
+ sylist.map((item2) => {
+ formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:532", item2);
+ if (item2.uuids) {
+ utils2.getbl(item2, text);
+ }
+ });
+ }
+ },
+ cancel: (details2) => {
+ tiplists.value.setdetails({ isshow: false });
+ },
+ close: (details2) => {
+ tiplists.value.setdetails({ isshow: false });
+ }
+ });
+ }
const { user, orderList, orderStatus, stockList, zeroOrderList } = vue.toRefs(details);
return (_ctx, _cache) => {
const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0);
@@ -11421,13 +11552,20 @@ This will fail in production if not fixed.`);
vue.renderList(vue.unref(zeroOrderList), (item) => {
return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [
vue.createElementVNode("view", { class: "toptitl" }, [
- vue.createElementVNode(
- "view",
- { class: "toplft" },
- " 库位号:" + vue.toDisplayString(item.allocation),
- 1
- /* TEXT */
- ),
+ vue.createElementVNode("view", { class: "toplft" }, [
+ vue.createTextVNode(
+ " 库位号:" + vue.toDisplayString(item.allocation) + " ",
+ 1
+ /* TEXT */
+ ),
+ item.stockQuantity ? (vue.openBlock(), vue.createElementBlock(
+ "text",
+ { key: 0 },
+ vue.toDisplayString(`(${item.stockQuantity})`),
+ 1
+ /* TEXT */
+ )) : vue.createCommentVNode("v-if", true)
+ ]),
vue.createElementVNode("view", { class: "tis bf" }, " 按件扫描 ")
]),
vue.createElementVNode("view", { class: "boxcontt" }, [
@@ -11474,7 +11612,11 @@ This will fail in production if not fixed.`);
vue.createElementVNode("view", {
class: "anj",
onClick: ($event) => showZeroOrderDetails(item)
- }, vue.toDisplayString(item.completeStact ? "查看明细" : "去备货"), 9, ["onClick"])
+ }, vue.toDisplayString(item.completeStact ? "查看明细" : "去备货"), 9, ["onClick"]),
+ vue.createElementVNode("view", {
+ class: "anj",
+ onClick: ($event) => printOrderCode(item)
+ }, " 打印订单号 ", 8, ["onClick"])
])
]);
}),
@@ -11504,8 +11646,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesStockUplistStockUplist = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUplist/StockUplist.vue"]]);
- const _sfc_main$19 = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesStockUplistStockUplist = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUplist/StockUplist.vue"]]);
+ const _sfc_main$1a = /* @__PURE__ */ vue.defineComponent({
__name: "StockUplistScandetails",
setup(__props) {
const util = vue.inject("utils");
@@ -11534,6 +11676,7 @@ This will fail in production if not fixed.`);
});
const tiplists = vue.ref(null);
onLoad((op) => {
+ utils.ttsspke("请按件备货");
details.stockArticleId = op.stockArticleId;
details.status = op.status;
details.stockupId = op.stockupId;
@@ -11544,16 +11687,16 @@ This will fail in production if not fixed.`);
details.pallet = op.pallet;
details.orderCode = op.orderCode;
details.typeService = op.typeService;
- initpage();
});
onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:155", code2);
+ formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:159", code2);
details.scancode = code2;
scandata();
}
});
+ initpage();
});
onHide(() => {
uni.$off("scancodedate");
@@ -11563,6 +11706,13 @@ This will fail in production if not fixed.`);
url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode
});
}
+ onPullDownRefresh(() => {
+ const timer = setTimeout(() => {
+ initpage();
+ uni.stopPullDownRefresh();
+ clearTimeout(timer);
+ }, 1e3);
+ });
function prinbut() {
let list = [], checklist = [];
details.dataList.map((item, index2) => {
@@ -11617,9 +11767,9 @@ This will fail in production if not fixed.`);
text += "FORM\r\n";
text += "PRINT\r\n";
let sylist = util.initbl();
- formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:218", sylist);
+ formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:232", sylist);
sylist.map((item2) => {
- formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:220", item2);
+ formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:234", item2);
if (item2.uuids) {
util.getbl(item2, text);
}
@@ -11667,7 +11817,7 @@ This will fail in production if not fixed.`);
typeService: details.typeService
};
let res = await distributionStockupstockupScan(data);
- formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:269", res);
+ formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:283", res);
if (res.code == 200) {
details.isscan = true;
initpage();
@@ -11690,7 +11840,7 @@ This will fail in production if not fixed.`);
typeService: details.typeService
};
let response = await distributionStockuporderInfo(data);
- formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:292", response);
+ formatAppLog("log", "at pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue:306", response);
details.dataList = response.data.packageList;
details.customer = response.data.customer;
details.stockupArea = response.data.stockupArea;
@@ -11877,8 +12027,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesStockUplistScandetailsStockUplistScandetails = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue"]]);
- const _sfc_main$18 = {};
+ const PagesHomePagesStockUplistScandetailsStockUplistScandetails = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUplistScandetails/StockUplistScandetails.vue"]]);
+ const _sfc_main$19 = {};
function _sfc_render$e(_ctx, _cache) {
const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0);
return vue.openBlock(), vue.createElementBlock(
@@ -11900,8 +12050,8 @@ This will fail in production if not fixed.`);
/* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
);
}
- const PagesHomePagesDownScanDownScan = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["render", _sfc_render$e], ["__file", "D:/worksp/logpm/pagesHome/pages/DownScan/DownScan.vue"]]);
- const _sfc_main$17 = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesDownScanDownScan = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["render", _sfc_render$e], ["__file", "D:/worksp/logpm/pagesHome/pages/DownScan/DownScan.vue"]]);
+ const _sfc_main$18 = /* @__PURE__ */ vue.defineComponent({
__name: "signinScan",
setup(__props) {
let details = vue.reactive({
@@ -12207,7 +12357,7 @@ This will fail in production if not fixed.`);
)
], 8, ["onClick"]),
vue.createElementVNode("view", null, [
- vue.createElementVNode("view", null, "配送件数"),
+ vue.createElementVNode("view", null, "计划件数"),
vue.createElementVNode(
"view",
null,
@@ -12265,9 +12415,9 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesSigninScanSigninScan = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__file", "D:/worksp/logpm/pagesHome/pages/signinScan/signinScan.vue"]]);
+ const PagesHomePagesSigninScanSigninScan = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["__file", "D:/worksp/logpm/pagesHome/pages/signinScan/signinScan.vue"]]);
const _imports_0 = "/assets/cha.b7e7843e.png";
- const _sfc_main$16 = {
+ const _sfc_main$17 = {
props: {
data: {
type: Array,
@@ -12515,8 +12665,8 @@ This will fail in production if not fixed.`);
/* STYLE */
);
}
- const cusSelects = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["render", _sfc_render$d], ["__scopeId", "data-v-7a3666ce"], ["__file", "D:/worksp/logpm/compoment/cus-selects-fan/cus-selects-fan.vue"]]);
- const _sfc_main$15 = /* @__PURE__ */ vue.defineComponent({
+ const cusSelects = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["render", _sfc_render$d], ["__scopeId", "data-v-7a3666ce"], ["__file", "D:/worksp/logpm/compoment/cus-selects-fan/cus-selects-fan.vue"]]);
+ const _sfc_main$16 = /* @__PURE__ */ vue.defineComponent({
__name: "SelfPScanList",
setup(__props) {
let details = vue.reactive({
@@ -12550,16 +12700,16 @@ This will fail in production if not fixed.`);
const tiplists = vue.ref(null);
onLoad((op) => {
details.billLadingId = op.billLadingId;
- initpage();
});
onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:167", code2);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:165", code2);
details.scancode = code2;
sacn();
}
});
+ initpage();
});
onHide(() => {
uni.$off("scancodedate");
@@ -12591,7 +12741,7 @@ This will fail in production if not fixed.`);
type: details.orderType == 1 ? "2" : "1"
};
let res = await billLadingscan(data);
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:203", res);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:202", res);
if (res.code == 200) {
initpage();
}
@@ -12634,7 +12784,7 @@ This will fail in production if not fixed.`);
size: 10
};
const res = await billLadingZeroBillOrderData(deta);
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:250", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:249", "res :>> ", res);
const { code: code2, data } = res;
if (code2 === 200)
details.datalist = data;
@@ -12646,12 +12796,12 @@ This will fail in production if not fixed.`);
}
async function showsTipsZero(item) {
try {
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:263", "item :>> ", item);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:262", "item :>> ", item);
let subdata = {
billLadingId: details.billLadingId
};
const response = await billLadingzeroBillData(subdata);
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:269", "response :>> ", response);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:268", "response :>> ", response);
const { code: code2, data } = response;
if (code2 !== 200)
return uni.showToast({
@@ -12700,7 +12850,7 @@ This will fail in production if not fixed.`);
}
if (list.length === 0)
return tiplists.value.setdetails({ isshow: false });
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:321", "list :>> ", list);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:320", "list :>> ", list);
tiplists.value.setdetails({
isshow: true,
tipstate: 2,
@@ -12711,7 +12861,7 @@ This will fail in production if not fixed.`);
success: async () => {
try {
const res = await billLadingzeroBillBatch({ billLadingId: details.billLadingId, list });
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:334", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:333", "res :>> ", res);
if (res.code === 200) {
uni.showToast({
title: res.msg
@@ -12720,7 +12870,7 @@ This will fail in production if not fixed.`);
}
tiplists.value.setdetails({ isshow: false });
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:343", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:342", "err :>> ", err);
}
},
cancel: () => {
@@ -12731,7 +12881,7 @@ This will fail in production if not fixed.`);
}
});
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:355", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:354", "err :>> ", err);
} finally {
}
},
@@ -12743,7 +12893,7 @@ This will fail in production if not fixed.`);
}
});
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:368", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:367", "err :>> ", err);
}
}
function checktype(e) {
@@ -12756,7 +12906,7 @@ This will fail in production if not fixed.`);
if (item.value == e) {
details.schanvalue = item.label;
details.orderStatus = item.value;
- formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:383", details.schanvalue);
+ formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:382", details.schanvalue);
}
});
}
@@ -13096,8 +13246,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesSelfPScanListSelfPScanList = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPScanList/SelfPScanList.vue"]]);
- const _sfc_main$14 = {
+ const PagesHomePagesSelfPScanListSelfPScanList = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPScanList/SelfPScanList.vue"]]);
+ const _sfc_main$15 = {
name: "uniTh",
options: {
virtualHost: true
@@ -13272,8 +13422,8 @@ This will fail in production if not fixed.`);
/* CLASS, STYLE */
);
}
- const __easycom_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["render", _sfc_render$c], ["__scopeId", "data-v-bf970acd"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-th/uni-th.vue"]]);
- const _sfc_main$13 = {
+ const __easycom_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["render", _sfc_render$c], ["__scopeId", "data-v-bf970acd"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-th/uni-th.vue"]]);
+ const _sfc_main$14 = {
name: "TableCheckbox",
emits: ["checkboxSelected"],
props: {
@@ -13362,8 +13512,8 @@ This will fail in production if not fixed.`);
]))
]);
}
- const tableCheckbox = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["render", _sfc_render$b], ["__scopeId", "data-v-25e435b1"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-tr/table-checkbox.vue"]]);
- const _sfc_main$12 = {
+ const tableCheckbox = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["render", _sfc_render$b], ["__scopeId", "data-v-25e435b1"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-tr/table-checkbox.vue"]]);
+ const _sfc_main$13 = {
name: "uniTr",
components: { tableCheckbox },
props: {
@@ -13473,8 +13623,8 @@ This will fail in production if not fixed.`);
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
]);
}
- const __easycom_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["render", _sfc_render$a], ["__scopeId", "data-v-b48b3e32"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-tr/uni-tr.vue"]]);
- const _sfc_main$11 = {
+ const __easycom_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["render", _sfc_render$a], ["__scopeId", "data-v-b48b3e32"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-tr/uni-tr.vue"]]);
+ const _sfc_main$12 = {
name: "uniTd",
options: {
virtualHost: true
@@ -13546,8 +13696,8 @@ This will fail in production if not fixed.`);
/* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
);
}
- const __easycom_3 = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["render", _sfc_render$9], ["__scopeId", "data-v-edae4802"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-td/uni-td.vue"]]);
- const _sfc_main$10 = {
+ const __easycom_3 = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["render", _sfc_render$9], ["__scopeId", "data-v-edae4802"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-td/uni-td.vue"]]);
+ const _sfc_main$11 = {
name: "uniTable",
options: {
virtualHost: true
@@ -13838,8 +13988,8 @@ This will fail in production if not fixed.`);
/* CLASS */
);
}
- const __easycom_4 = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["render", _sfc_render$8], ["__scopeId", "data-v-c1ea9b5d"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-table/uni-table.vue"]]);
- const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({
+ const __easycom_4 = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["render", _sfc_render$8], ["__scopeId", "data-v-c1ea9b5d"], ["__file", "D:/worksp/logpm/uni_modules/uni-table/components/uni-table/uni-table.vue"]]);
+ const _sfc_main$10 = /* @__PURE__ */ vue.defineComponent({
__name: "SelfPickupDetails",
setup(__props) {
const utils2 = vue.inject("utils");
@@ -13877,16 +14027,16 @@ This will fail in production if not fixed.`);
const tiplists = vue.ref(null);
onLoad((op) => {
details.billLadingId = op.billLadingId;
- initpage();
});
onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:170", code2);
+ formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:169", code2);
details.scancode = code2;
sacn();
}
});
+ initpage();
});
function goorderdetail(item) {
uni.navigateTo({
@@ -13895,8 +14045,9 @@ This will fail in production if not fixed.`);
}
vue.watchEffect(() => {
if (details.isscan && details.signedNum) {
- setTimeout(() => {
+ const timer = setTimeout(() => {
utils2.ttsspke(details.signedNum + "件");
+ clearTimeout(timer);
}, 1e3);
}
});
@@ -13924,7 +14075,7 @@ This will fail in production if not fixed.`);
});
}
function showsTipsZero(item) {
- formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:213", "item :>> ", item);
+ formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:214", "item :>> ", item);
const inpList = [
{
title: item.firsts,
@@ -13944,7 +14095,7 @@ This will fail in production if not fixed.`);
inputtext: "",
success: async (detail) => {
try {
- formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:236", "item :>> ", item);
+ formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:237", "item :>> ", item);
const { inpList: [_info] } = detail;
if (_info.disabled)
tiplists.value.setdetails({ isshow: false });
@@ -13962,7 +14113,7 @@ This will fail in production if not fixed.`);
if (res.code === 200)
initpage();
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:254", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:255", "err :>> ", err);
} finally {
tiplists.value.setdetails({ isshow: false });
}
@@ -13985,7 +14136,7 @@ This will fail in production if not fixed.`);
type: details.orderType == 1 ? "2" : "1"
};
let res = await billLadingscan(data);
- formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:279", res);
+ formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:280", res);
if (res.code == 200) {
details.isscan = true;
initpage();
@@ -13997,12 +14148,12 @@ This will fail in production if not fixed.`);
utils2.ttsspke(res.audio);
}
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:292", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:293", "err :>> ", err);
} finally {
}
}
async function initpage() {
- formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:298", "获取数据");
+ formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:299", "获取数据");
if (details.orderType == 1) {
let data = {
orderStatus: details.orderStatus,
@@ -14033,7 +14184,7 @@ This will fail in production if not fixed.`);
billLadingId: details.billLadingId
};
const response = await billLadingzeroBillData(data);
- formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:330", "response :>> ", response);
+ formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:331", "response :>> ", response);
const { code: code2 } = response;
if (code2 === 200) {
details.dataList = response.data || [];
@@ -14052,7 +14203,7 @@ This will fail in production if not fixed.`);
if (item.value == e) {
details.schanvalue = item.label;
details.orderStatus = item.value;
- formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:349", details.schanvalue);
+ formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:350", details.schanvalue);
}
});
}
@@ -14452,8 +14603,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesSelfPickupDetailsSelfPickupDetails = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue"]]);
- const _sfc_main$_ = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesSelfPickupDetailsSelfPickupDetails = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["__file", "D:/worksp/logpm/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue"]]);
+ const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({
__name: "LoadingDetails",
setup(__props) {
let details = vue.reactive({
@@ -14894,8 +15045,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesLoadingDetailsLoadingDetails = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["__file", "D:/worksp/logpm/pagesHome/pages/LoadingDetails/LoadingDetails.vue"]]);
- const _sfc_main$Z = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesLoadingDetailsLoadingDetails = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["__file", "D:/worksp/logpm/pagesHome/pages/LoadingDetails/LoadingDetails.vue"]]);
+ const _sfc_main$_ = /* @__PURE__ */ vue.defineComponent({
__name: "CustomerOrdersDetails",
setup(__props) {
const utils2 = vue.inject("utils");
@@ -14926,62 +15077,104 @@ This will fail in production if not fixed.`);
orderType: 0,
inputtxt: "",
listcheckindex: -1,
- isscan: false
+ isscan: false,
+ order: {
+ page: {
+ size: 10,
+ current: 1
+ },
+ // 分页总页数
+ pages: 1,
+ data: []
+ },
+ zero: {
+ page: {
+ size: 10,
+ current: 1
+ },
+ // 分页总页数
+ pages: 1,
+ data: []
+ },
+ stock: {
+ page: {
+ size: 10,
+ current: 1
+ },
+ // 分页总页数
+ pages: 1,
+ data: []
+ }
});
const tiplists = vue.ref(null);
- onLoad(async (op) => {
+ onLoad((op) => {
details.items = JSON.parse(op.item);
details.id = op.id;
- formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:197", "details.items :>> ", details.items);
- let data = {
- reservationId: details.items.id,
- completecode: details.orderType,
- orderCode: details.inputtxt
- };
- details.datalist = [];
- let response = null;
- response = await deliveryorder(data);
- details.zeroArr = [];
- details.orderArr = [];
- response.data.records.forEach((val) => {
- if (val.isZero === "1")
- return details.zeroArr.push(val);
- details.orderArr.push(val);
- });
- let response1 = await signforinventory(data);
- details.stockArr = response1.data.records || [];
- formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:219", "response :>> ", response);
- if (details.orderStatus === 1)
- details.datalist = details.orderArr;
- else if (details.orderStatus === 2)
- details.datalist = details.zeroArr;
- else
- details.datalist = details.stockArr;
- formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:227", "details.stockArr :>> ", details.stockArr);
});
function goorderdetail(item) {
uni.navigateTo({
url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode
});
}
- onShow(() => {
+ onShow(async () => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:237", "code", code2);
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:242", "code", code2);
details.scancode = code2;
details.isscan = true;
scandata();
}
});
+ let data = {
+ reservationId: details.items.id,
+ completecode: details.orderType,
+ orderCode: details.inputtxt
+ };
+ details.datalist = [];
+ let response = null;
+ response = await deliveryorder(data);
+ details.zero.data = [];
+ details.order.data = [];
+ if (response.data) {
+ response.data.forEach((val) => {
+ if (val.isZero === "1")
+ return details.zero.data.push(val);
+ details.order.data.push(val);
+ });
+ }
+ let response1 = await signforinventory(data);
+ details.stock.data = response1.data || [];
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:272", "response :>> ", response);
+ if (details.orderStatus === 1)
+ details.datalist = details.order.data;
+ else if (details.orderStatus === 2)
+ details.datalist = details.zero.data;
+ else
+ details.datalist = details.stock.data;
});
onHide(() => {
uni.$off("scancodedate");
});
+ onPullDownRefresh(() => {
+ details.datalist = [];
+ details.order.page.current = 1;
+ details.zero.page.current = 1;
+ details.stock.page.current = 1;
+ const timer = setTimeout(async () => {
+ await initpage();
+ uni.stopPullDownRefresh();
+ clearTimeout(timer);
+ }, 1e3);
+ });
const loadingNub = vue.computed(() => {
let num = 0;
- num += details.orderArr.reduce((curr, item) => curr + item.loadingNub, 0);
- num += details.zeroArr.reduce((curr, item) => curr + item.loadingNub, 0);
- num += details.stockArr.reduce((curr, item) => curr + item.loadingNub, 0);
+ num += details.order.data.reduce((curr, item) => curr + item.loadingNub, 0);
+ num += details.zero.data.reduce((curr, item) => curr + item.loadingNub, 0);
+ num += details.stock.data.reduce((curr, item) => {
+ if (item.loadingStatusName !== "未装车")
+ return curr += 1;
+ return curr;
+ }, 0);
return num;
});
function showsdqs() {
@@ -15005,32 +15198,54 @@ This will fail in production if not fixed.`);
});
}
async function initpage() {
- let data = {
- reservationId: details.items.id,
- completecode: details.orderType,
- orderCode: details.inputtxt
- };
- details.datalist = [];
- let response = null;
- if (details.orderStatus == 1 || details.orderStatus === 2) {
- response = await deliveryorder(data);
- details.zeroArr = [];
- details.orderArr = [];
- response.data.records.forEach((val) => {
+ try {
+ let data = {
+ reservationId: details.items.id,
+ completecode: details.orderType,
+ orderCode: details.inputtxt
+ };
+ details.datalist = [];
+ if (details.orderStatus == 1 || details.orderStatus === 2)
+ await initPageOrder(data);
+ else if (details.orderStatus == 3)
+ await initPageStock(data);
+ if (details.orderStatus === 1)
+ details.datalist = details.order.data;
+ else if (details.orderStatus === 2)
+ details.datalist = details.zero.data;
+ else
+ details.datalist = details.stock.data;
+ } catch (err) {
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:353", "err :>> ", err);
+ } finally {
+ return null;
+ }
+ }
+ async function initPageOrder(submitData) {
+ try {
+ const response = await deliveryorder(submitData);
+ const { data } = response;
+ details.zero.data = [];
+ details.order.data = [];
+ data.forEach((val) => {
if (val.isZero === "1")
- return details.zeroArr.push(val);
- details.orderArr.push(val);
+ return details.zero.data.push(val);
+ details.order.data.push(val);
});
- } else if (details.orderStatus == 3) {
- response = await signforinventory(data);
- details.stockArr = response.data.records || [];
+ } catch (err) {
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:375", "err :>> ", err);
+ }
+ }
+ async function initPageStock(submitData) {
+ try {
+ details.stock.data = [];
+ const response = await signforinventory(submitData);
+ const { data } = response;
+ details.stock.data = data;
+ return response;
+ } catch (err) {
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:392", "err :>> ", err);
}
- if (details.orderStatus === 1)
- details.datalist = details.orderArr;
- else if (details.orderStatus === 2)
- details.datalist = details.zeroArr;
- else
- details.datalist = details.stockArr;
}
function checktype(e) {
if (e == "") {
@@ -15047,11 +15262,51 @@ This will fail in production if not fixed.`);
function setorderStatus(state) {
details.orderStatus = state;
if (details.orderStatus === 1)
- details.datalist = details.orderArr;
+ details.datalist = details.order.data;
else if (details.orderStatus === 2)
- details.datalist = details.zeroArr;
+ details.datalist = details.zero.data;
else
- details.datalist = details.stockArr;
+ details.datalist = details.stock.data;
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:417", " details.datalist :>> ", details.datalist);
+ }
+ function reatchBootomOrder() {
+ if (details.order.pages <= details.order.page.current) {
+ return uni.showToast({
+ title: "数据加载完毕",
+ icon: "none"
+ });
+ }
+ details.order.page.current += 1;
+ initpage();
+ }
+ function reatchBootomZero() {
+ if (details.zero.pages <= details.zero.page.current) {
+ return uni.showToast({
+ title: "数据加载完毕",
+ icon: "none"
+ });
+ }
+ details.zero.page.current += 1;
+ initpage();
+ }
+ function reatchBootomStock() {
+ if (details.stock.pages <= details.stock.page.current) {
+ return uni.showToast({
+ title: "数据加载完毕",
+ icon: "none"
+ });
+ }
+ details.stock.page.current += 1;
+ initpage();
+ }
+ function reatchBottom() {
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:466", "111 :>> ", 111);
+ if (details.orderStatus === 1)
+ reatchBootomOrder();
+ else if (details.orderStatus === 2)
+ reatchBootomZero();
+ else if (details.orderStatus === 3)
+ reatchBootomStock();
}
async function scandata() {
try {
@@ -15084,7 +15339,7 @@ This will fail in production if not fixed.`);
barcode: details.scancode
};
const res2 = await postAbnormalTruckLoading(data2);
- formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:370", "res :>> ", res2);
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:513", "res :>> ", res2);
tiplists.value.setdetails({ isshow: false });
},
cancel: () => {
@@ -15106,11 +15361,16 @@ This will fail in production if not fixed.`);
barcode: details.scancode
};
let res = await deliveryloadinginventory(data);
+ const { audio } = res;
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:537", "res :>> ", res);
+ if (!audio)
+ return;
+ utils2.ttsspke(res.audio);
}
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:395", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:544", "err :>> ", err);
} finally {
- initpage();
+ uni.startPullDownRefresh();
}
}
function checkphon(item, index2) {
@@ -15119,7 +15379,7 @@ This will fail in production if not fixed.`);
return {
id: val.id,
title: val.firsts,
- value: val.loadingNum,
+ value: val.loadingNum || val.reservationNum,
maxNum: val.reservationNum,
minNum: 0,
type: "Number",
@@ -15165,9 +15425,9 @@ This will fail in production if not fixed.`);
if (res.audio) {
utils2.ttsspke(res.audio);
}
- initpage();
+ uni.startPullDownRefresh();
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:461", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:612", "err :>> ", err);
} finally {
uni.hideLoading();
tiplists.value.setdetails({ isshow: false });
@@ -15352,246 +15612,279 @@ This will fail in production if not fixed.`);
)
])
]),
- vue.createElementVNode("scroll-view", {
- class: "scve",
- "scroll-y": "true"
- }, [
- vue.createElementVNode("view", { class: "mabx" }, [
- (vue.openBlock(true), vue.createElementBlock(
- vue.Fragment,
- null,
- vue.renderList(vue.unref(datalist), (item, index2) => {
- return vue.openBlock(), vue.createElementBlock(
- vue.Fragment,
- { key: item },
- [
- vue.createCommentVNode(" 定制品 "),
- vue.unref(orderStatus) == 1 ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 0,
- class: "itec",
- onClick: ($event) => checkphon(item, index2)
- }, [
- vue.createElementVNode("view", { class: "contenbx1" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", {
- style: { "color": "#90A0AF" },
- onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
- }, "订单编号:", 8, ["onClick"]),
- vue.createTextVNode(
- vue.toDisplayString(item.orderCode),
- 1
- /* TEXT */
- )
- ])
- ]),
- vue.createElementVNode("view", { class: "contenbx1" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送数:"),
- vue.createTextVNode(
- vue.toDisplayString(item.reservationNum),
- 1
- /* TEXT */
- )
- ]),
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "已扫码数:"),
- vue.createTextVNode(
- vue.toDisplayString(item.loadingNub),
- 1
- /* TEXT */
- )
- ])
- ]),
- vue.unref(listcheckindex) == index2 ? (vue.openBlock(), vue.createElementBlock("view", {
+ vue.createElementVNode(
+ "scroll-view",
+ {
+ class: "scve",
+ "scroll-y": "true",
+ onRefresherpulling: _cache[4] || (_cache[4] = () => {
+ }),
+ onScrolltolower: reatchBottom
+ },
+ [
+ vue.createElementVNode("view", { class: "mabx" }, [
+ (vue.openBlock(true), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ vue.renderList(vue.unref(datalist), (item, index2) => {
+ return vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ { key: item },
+ [
+ vue.createCommentVNode(" 定制品 "),
+ vue.unref(orderStatus) == 1 ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
- class: "xialaxz"
- }, [
- (vue.openBlock(true), vue.createElementBlock(
- vue.Fragment,
- null,
- vue.renderList(item.distributionAppParcelListVOS, (ite) => {
- return vue.openBlock(), vue.createElementBlock("view", null, [
- vue.createElementVNode(
- "view",
- null,
- "包条码:" + vue.toDisplayString(ite.orderPackageCode),
- 1
- /* TEXT */
- ),
- vue.createElementVNode(
- "view",
- null,
- "货物品类:" + vue.toDisplayString(ite.thirdProduct),
- 1
- /* TEXT */
- ),
- vue.createElementVNode(
- "view",
- null,
- "扫描状态:" + vue.toDisplayString(ite.isScan ? ite.isScan : "未扫"),
- 1
- /* TEXT */
- )
- ]);
- }),
- 256
- /* UNKEYED_FRAGMENT */
- ))
- ])) : vue.createCommentVNode("v-if", true),
- item.complete ? (vue.openBlock(), vue.createElementBlock(
- "view",
- {
- key: 1,
- class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3")
- },
- vue.toDisplayString(item.complete),
- 3
- /* TEXT, CLASS */
- )) : vue.createCommentVNode("v-if", true),
- vue.createCommentVNode(" 当有异常状态时, 显示异常状态 "),
- item.isHaveAbnormalPackageName ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 2,
- class: "abnormalStyleContainer"
+ class: "itec",
+ onClick: ($event) => checkphon(item, index2)
}, [
- vue.createElementVNode(
+ vue.createElementVNode("view", { class: "contenbx1" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", {
+ style: { "color": "#90A0AF" },
+ onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
+ }, "订单编号:", 8, ["onClick"]),
+ vue.createTextVNode(
+ vue.toDisplayString(item.orderCode),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "contenbx1" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送数:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.reservationNum),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "已扫码数:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.loadingNub),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.unref(listcheckindex) == index2 ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 0,
+ class: "xialaxz"
+ }, [
+ (vue.openBlock(true), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ vue.renderList(item.distributionAppParcelListVOS, (ite) => {
+ return vue.openBlock(), vue.createElementBlock("view", null, [
+ vue.createElementVNode(
+ "view",
+ null,
+ "包条码:" + vue.toDisplayString(ite.orderPackageCode),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode(
+ "view",
+ null,
+ "货物品类:" + vue.toDisplayString(ite.thirdProduct),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode(
+ "view",
+ null,
+ "扫描状态:" + vue.toDisplayString(ite.isScan ? ite.isScan : "未扫"),
+ 1
+ /* TEXT */
+ )
+ ]);
+ }),
+ 256
+ /* UNKEYED_FRAGMENT */
+ ))
+ ])) : vue.createCommentVNode("v-if", true),
+ item.complete ? (vue.openBlock(), vue.createElementBlock(
"view",
- { class: "abnormalStyle" },
- vue.toDisplayString(item.isHaveAbnormalPackageName),
- 1
- /* TEXT */
- )
- ])) : vue.createCommentVNode("v-if", true)
- ], 8, ["onClick"])) : vue.unref(orderStatus) == 2 ? (vue.openBlock(), vue.createElementBlock(
- vue.Fragment,
- { key: 1 },
- [
- vue.createCommentVNode(" 零担 "),
- vue.createElementVNode("view", {
- class: "itec",
- onClick: ($event) => checkphon(item, index2)
+ {
+ key: 1,
+ class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3")
+ },
+ vue.toDisplayString(item.complete),
+ 3
+ /* TEXT, CLASS */
+ )) : vue.createCommentVNode("v-if", true),
+ vue.createCommentVNode(" 当有异常状态时, 显示异常状态 "),
+ item.isHaveAbnormalPackageName ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 2,
+ class: "abnormalStyleContainer"
}, [
- vue.createElementVNode("view", { class: "contenbx1" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", {
- style: { "color": "#90A0AF" },
- onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
- }, "订单编号:", 8, ["onClick"]),
- vue.createTextVNode(
- vue.toDisplayString(item.orderCode),
- 1
- /* TEXT */
- )
- ])
- ]),
- vue.createElementVNode("view", { class: "contenbx1" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", {
- style: { "color": "#90A0AF" },
- onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
- }, "产品名称:", 8, ["onClick"]),
- vue.createTextVNode(
- vue.toDisplayString(item.descriptionGoods),
- 1
- /* TEXT */
- )
- ])
- ]),
- vue.createElementVNode("view", { class: "contenbx1" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划数量:"),
- vue.createTextVNode(
- vue.toDisplayString(item.reservationNum),
- 1
- /* TEXT */
- )
- ]),
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "装车数量:"),
- vue.createTextVNode(
- vue.toDisplayString(item.loadingNub),
- 1
- /* TEXT */
- )
- ])
- ]),
- item.complete ? (vue.openBlock(), vue.createElementBlock(
+ vue.createElementVNode(
"view",
- {
- key: 0,
- class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3")
- },
- vue.toDisplayString(item.complete),
- 3
- /* TEXT, CLASS */
- )) : vue.createCommentVNode("v-if", true)
- ], 8, ["onClick"])
- ],
- 64
- /* STABLE_FRAGMENT */
- )) : vue.unref(orderStatus) == 3 ? (vue.openBlock(), vue.createElementBlock(
- vue.Fragment,
- { key: 2 },
- [
- vue.createCommentVNode(" 库存品 "),
- vue.createElementVNode("view", {
- class: "itec",
- onClick: ($event) => checkphon(item, index2)
- }, [
- vue.createElementVNode("view", { class: "contenbx1" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "SKU:"),
- vue.createTextVNode(
- vue.toDisplayString(item.sku),
- 1
- /* TEXT */
- )
- ])
- ]),
- vue.createElementVNode("view", { class: "contenbx1" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物品:"),
- vue.createTextVNode(
- vue.toDisplayString(item.descriptionGoods),
- 1
- /* TEXT */
- )
+ { class: "abnormalStyle" },
+ vue.toDisplayString(item.isHaveAbnormalPackageName),
+ 1
+ /* TEXT */
+ )
+ ])) : vue.createCommentVNode("v-if", true)
+ ], 8, ["onClick"])) : vue.unref(orderStatus) == 2 ? (vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ { key: 1 },
+ [
+ vue.createCommentVNode(" 零担 "),
+ vue.createElementVNode("view", {
+ class: "itec",
+ onClick: ($event) => checkphon(item, index2)
+ }, [
+ vue.createElementVNode("view", { class: "contenbx1" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", {
+ style: { "color": "#90A0AF" },
+ onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
+ }, "订单编号:", 8, ["onClick"]),
+ vue.createTextVNode(
+ vue.toDisplayString(item.orderCode),
+ 1
+ /* TEXT */
+ )
+ ])
]),
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "规格:"),
- vue.createTextVNode(
- vue.toDisplayString(item.specification),
- 1
- /* TEXT */
- )
- ])
- ]),
- vue.createElementVNode("view", { class: "contenbx1" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "单位:"),
- vue.createTextVNode(
- vue.toDisplayString(item.logpmUnit),
- 1
- /* TEXT */
- )
+ vue.createElementVNode("view", { class: "contenbx1" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", {
+ style: { "color": "#90A0AF" },
+ onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
+ }, "产品名称:", 8, ["onClick"]),
+ vue.createTextVNode(
+ vue.toDisplayString(item.descriptionGoods),
+ 1
+ /* TEXT */
+ )
+ ])
]),
- vue.createCommentVNode(' 签收:{{item.signforNub}} ')
- ]),
- vue.createCommentVNode(` {{item.complete}} `)
- ], 8, ["onClick"])
- ],
- 64
- /* STABLE_FRAGMENT */
- )) : vue.createCommentVNode("v-if", true)
- ],
- 64
- /* STABLE_FRAGMENT */
- );
- }),
- 128
- /* KEYED_FRAGMENT */
- ))
- ])
- ]),
+ vue.createElementVNode("view", { class: "contenbx1" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划数量:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.reservationNum),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "装车数量:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.loadingNub),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ item.complete ? (vue.openBlock(), vue.createElementBlock(
+ "view",
+ {
+ key: 0,
+ class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3")
+ },
+ vue.toDisplayString(item.complete),
+ 3
+ /* TEXT, CLASS */
+ )) : vue.createCommentVNode("v-if", true)
+ ], 8, ["onClick"])
+ ],
+ 64
+ /* STABLE_FRAGMENT */
+ )) : vue.unref(orderStatus) == 3 ? (vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ { key: 2 },
+ [
+ vue.createCommentVNode(" 库存品 "),
+ vue.createElementVNode("view", {
+ class: "itec",
+ onClick: ($event) => checkphon(item, index2)
+ }, [
+ vue.createElementVNode("view", { class: "contenbx1" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "SKU:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.sku),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "contenbx1" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物品:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.descriptionGoods),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "规格:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.cargoNorms),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "contenbx1" }, [
+ vue.createCommentVNode(" 备货完成时, 显示二维码 "),
+ item.signingStatusName === "待备货" ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货状态:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.signingStatusName),
+ 1
+ /* TEXT */
+ )
+ ])) : (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "二维码:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.stockPackageCode || "暂无数据"),
+ 1
+ /* TEXT */
+ )
+ ])),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "单位:"),
+ vue.createTextVNode(
+ vue.toDisplayString(item.cargoUnit),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ item.loadingStatusName ? (vue.openBlock(), vue.createElementBlock(
+ "view",
+ {
+ key: 0,
+ class: vue.normalizeClass(item.loadingStatusName == "未装车" ? "tip tp2" : "tip tp1")
+ },
+ vue.toDisplayString(item.loadingStatusName),
+ 3
+ /* TEXT, CLASS */
+ )) : vue.createCommentVNode("v-if", true)
+ ], 8, ["onClick"])
+ ],
+ 64
+ /* STABLE_FRAGMENT */
+ )) : vue.createCommentVNode("v-if", true)
+ ],
+ 64
+ /* STABLE_FRAGMENT */
+ );
+ }),
+ 128
+ /* KEYED_FRAGMENT */
+ ))
+ ])
+ ],
+ 32
+ /* HYDRATE_EVENTS */
+ ),
vue.createVNode(
_component_tiplist,
{
@@ -15610,8 +15903,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesCustomerOrdersDetailsCustomerOrdersDetails = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue"]]);
- const _sfc_main$Y = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesCustomerOrdersDetailsCustomerOrdersDetails = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue"]]);
+ const _sfc_main$Z = /* @__PURE__ */ vue.defineComponent({
__name: "DeliveryCustomerScan",
setup(__props) {
let details = vue.reactive({
@@ -15629,18 +15922,25 @@ This will fail in production if not fixed.`);
});
onHide(() => {
uni.$off("scancodedate");
- formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:112", "uni", uni);
+ formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:111", "uni", uni);
});
onShow(() => {
initpage();
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:118", code2);
+ formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:117", code2);
details.scancode = code2;
scandata();
}
});
});
+ onPullDownRefresh(() => {
+ const timer = setTimeout(() => {
+ initpage();
+ uni.stopPullDownRefresh();
+ clearTimeout(timer);
+ }, 1e3);
+ });
const ordernumber = vue.computed(() => {
let num = 0;
details.datalist.map((item) => {
@@ -15698,7 +15998,7 @@ This will fail in production if not fixed.`);
barcode: details.scancode
};
let res = await deliveryloadingscan(data);
- formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:203", res);
+ formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:209", res);
if (res.code == 200)
;
}
@@ -15707,7 +16007,7 @@ This will fail in production if not fixed.`);
id: details.id
};
let response = await deliverycustom(data);
- formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:213", "response", response);
+ formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:219", "response", response);
details.datalist = response.data.records;
}
function goCustomerOrdersDetails(item) {
@@ -15968,8 +16268,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesDeliveryCustomerScanDeliveryCustomerScan = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["__file", "D:/worksp/logpm/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue"]]);
- const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesDeliveryCustomerScanDeliveryCustomerScan = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["__file", "D:/worksp/logpm/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue"]]);
+ const _sfc_main$Y = /* @__PURE__ */ vue.defineComponent({
__name: "CustomerSign",
setup(__props) {
let details = vue.reactive({
@@ -16011,9 +16311,16 @@ This will fail in production if not fixed.`);
initpage();
getconfig();
});
+ onPullDownRefresh(() => {
+ const timer = setTimeout(async () => {
+ await initpage();
+ uni.stopPullDownRefresh();
+ clearTimeout(timer);
+ }, 1e3);
+ });
async function getconfig() {
let res = await dictbizdictionary({ code: "photo_type" });
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:147", "res1>>>>", res);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:162", "res1>>>>", res);
const { code: code2, data } = res;
if (code2 === 200) {
details.imgList = data.map((value) => {
@@ -16023,7 +16330,7 @@ This will fail in production if not fixed.`);
imgList: []
};
});
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:157", "details.imgList :>> ", details.imgList);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:172", "details.imgList :>> ", details.imgList);
}
}
function gosetorice(item) {
@@ -16041,27 +16348,43 @@ This will fail in production if not fixed.`);
return num;
});
const deliveryNumber = vue.computed(() => {
- let num = 0;
- details.datalist.map((item) => {
- if (item.reservationNum) {
- num += item.reservationNum;
- }
- });
- return num;
+ return details.datalist.reduce((curr, item) => {
+ if (item.reservationNum)
+ return curr + item.reservationNum;
+ return curr;
+ }, 0);
+ });
+ const truckLoadingNum = vue.computed(() => {
+ return details.datalist.reduce((curr, item) => {
+ if (item.loadedNumber)
+ return curr + item.loadedNumber;
+ return curr;
+ }, 0);
});
async function initpage() {
let data = {
id: details.id
};
let response = await signforcustom(data);
- details.datalist = response.data.records;
+ const _arr = response.data.records;
+ const _fastArr = [];
+ const _commonArr = [];
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:214", "_arr :>> ", _arr);
+ _arr.forEach((val) => {
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:216", "val :>> ", val);
+ if (Number(val.isUrgent) === 2)
+ return _fastArr.push(val);
+ return _commonArr.push(val);
+ });
+ details.datalist = [..._fastArr, ..._commonArr];
+ return null;
}
async function uplodimg(item) {
let data = {
reservationId: item.id
};
let res = await signforprices(data);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:201", "res>>>>>", res);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:234", "res>>>>>", res);
let imglis = [], rearks = "";
if (res.code == 200) {
if (Object.keys(res.data.deliverySignPictures).length !== 0 || res.data.driverRemarks) {
@@ -16072,7 +16395,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:213", "details.imgList :>> ", details.imgList);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:246", "details.imgList :>> ", details.imgList);
} else {
details.isChange = false;
}
@@ -16080,7 +16403,7 @@ This will fail in production if not fixed.`);
rearks = res.data.driverRemarks;
}
}
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:223", "tiplists :>> ", tiplists.value);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:256", "tiplists :>> ", tiplists.value);
tiplists.value.setdetails({
isshow: true,
tipstate: 3,
@@ -16093,7 +16416,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:237", "detail :>> ", detail);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:270", "detail :>> ", detail);
let data2 = {
deliveryId: details.id,
reservationId: item.id,
@@ -16102,12 +16425,12 @@ This will fail in production if not fixed.`);
};
let res2 = null;
let isSubmit = true;
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:248", "details.ImagesRequiredFields :>> ", details.ImagesRequiredFields);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:281", "details.ImagesRequiredFields :>> ", details.ImagesRequiredFields);
if (details.isChange) {
const filterMap = detail.imglist.filter((item2) => details.changeImageList.includes(item2.dictKey));
filterMap.forEach((item2) => {
data2.map[item2.dictKey] = item2.imgList;
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:254", 1);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:287", 1);
if (details.ImagesRequiredFields.find((val) => val.key === item2.dictKey) && item2.imgList.length < 3)
isSubmit = false;
else
@@ -16123,11 +16446,11 @@ This will fail in production if not fixed.`);
}
res2 = await signforUpdatePicture(data2);
} else {
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:268", "details.imgList :>> ", details.imgList);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:301", "details.imgList :>> ", details.imgList);
detail.imglist.forEach((item2) => {
data2.map[item2.dictKey] = item2.imgList;
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:271", 2);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:272", "item.imgList :>> ", item2.imgList);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:304", 2);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:305", "item.imgList :>> ", item2.imgList);
if (details.ImagesRequiredFields.find((val) => val.key === item2.dictKey) && item2.imgList.length < 3)
isSubmit = false;
else
@@ -16177,7 +16500,7 @@ This will fail in production if not fixed.`);
driverRemarks: detail.inputtext
};
let res = await signforoneclick(data);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:321", res);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:354", res);
if (res.code == 200) {
initpage();
}
@@ -16192,7 +16515,7 @@ This will fail in production if not fixed.`);
});
}
function getLocation(item) {
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:337", "getLocation-------");
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:370", "getLocation-------");
uni.getLocation({
type: "wgs84",
geocode: true,
@@ -16203,9 +16526,9 @@ This will fail in production if not fixed.`);
title: "打卡中",
mask: true
});
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:348", JSON.stringify(res));
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:351", "当前位置的经度:" + res.longitude);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:352", "当前位置的纬度:" + res.latitude);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:381", JSON.stringify(res));
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:384", "当前位置的经度:" + res.longitude);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:385", "当前位置的纬度:" + res.latitude);
let data = {
deliveryId: details.id,
reservationId: item.id,
@@ -16213,12 +16536,12 @@ This will fail in production if not fixed.`);
positioningAdr: ""
};
let response = await signforpositioning(data);
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:360", response);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:393", response);
if (response.code == 200) {
initpage();
}
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:366", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:399", "err :>> ", err);
} finally {
uni.hideLoading();
}
@@ -16228,7 +16551,7 @@ This will fail in production if not fixed.`);
title: "定位失败",
icon: "none"
});
- formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:378", err);
+ formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:411", err);
uni.hideLoading();
}
});
@@ -16327,7 +16650,7 @@ This will fail in production if not fixed.`);
)
]),
vue.createElementVNode("view", null, [
- vue.createElementVNode("view", null, "配送件数"),
+ vue.createElementVNode("view", null, "计划件数"),
vue.createElementVNode(
"view",
null,
@@ -16336,6 +16659,16 @@ This will fail in production if not fixed.`);
/* TEXT */
)
]),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("view", null, "装车数量"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(vue.unref(truckLoadingNum)),
+ 1
+ /* TEXT */
+ )
+ ]),
vue.createElementVNode("view", null, [
vue.createElementVNode("view", null, "签收件数"),
vue.createElementVNode(
@@ -16462,8 +16795,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesCustomerSignCustomerSign = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerSign/CustomerSign.vue"]]);
- const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesCustomerSignCustomerSign = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerSign/CustomerSign.vue"]]);
+ const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
__name: "signOrderScan",
setup(__props) {
const utils2 = vue.inject("utils");
@@ -16506,7 +16839,10 @@ This will fail in production if not fixed.`);
return num;
});
const ordNub = vue.computed(() => {
- return details.datalist.length;
+ let num = 0;
+ num += details.orderArr.length;
+ num += details.zeroArr.length;
+ return num;
});
const signNub = vue.computed(() => {
let num = 0;
@@ -16517,12 +16853,21 @@ This will fail in production if not fixed.`);
});
return num;
});
- onLoad(async (op) => {
+ onLoad((op) => {
+ utils2.ttsspke("请扫描包条码");
+ details.items = JSON.parse(op.item);
+ details.id = JSON.parse(op.item).id;
+ details.deliveryId = op.deliveryId;
+ });
+ onShow(async () => {
try {
- utils2.ttsspke("请扫描包条码");
- details.items = JSON.parse(op.item);
- details.id = JSON.parse(op.item).id;
- details.deliveryId = op.deliveryId;
+ uni.$on("scancodedate", function(code2) {
+ if (code2) {
+ formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:224", code2);
+ details.scancode = code2;
+ scandata();
+ }
+ });
let data = {
reservationId: details.items.id,
completecode: details.orderType,
@@ -16539,9 +16884,10 @@ This will fail in production if not fixed.`);
details.orderArr.push(val);
});
let response1 = await signforinventory(data);
- details.stockArr = response1.data.records || [];
- formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:244", "response :>> ", response);
- formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:245", "response1 :>> ", response1);
+ if (response1.data)
+ details.stockArr = response1.data.records || [];
+ formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:252", "response :>> ", response);
+ formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:253", "response1 :>> ", response1);
if (details.orderStatus === 1)
details.datalist = details.orderArr;
else if (details.orderStatus === 2)
@@ -16549,18 +16895,9 @@ This will fail in production if not fixed.`);
else
details.datalist = details.stockArr;
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:253", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:261", "err :>> ", err);
}
});
- onShow(() => {
- uni.$on("scancodedate", function(code2) {
- if (code2) {
- formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:261", code2);
- details.scancode = code2;
- scandata();
- }
- });
- });
onHide(() => {
uni.$off("scancodedate");
});
@@ -16570,9 +16907,10 @@ This will fail in production if not fixed.`);
});
}
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
initpage();
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
async function scandata() {
@@ -16581,12 +16919,12 @@ This will fail in production if not fixed.`);
deliveryId: details.deliveryId,
reservationId: details.id
};
- if (details.orderStatus == 1) {
+ if (Number(details.orderStatus) == 1) {
let response = await signforsignfor(data);
- formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:294", response);
- if (response.code === 200) {
- utils2.ttsspke(signNub.value + "件");
- } else if (response.code == 3006) {
+ formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:293", response);
+ if (response.code === 200)
+ ;
+ else if (response.code == 3006) {
tip.value.setdetails({
isshow: true,
content: "请确认是否异常签收",
@@ -16617,7 +16955,7 @@ This will fail in production if not fixed.`);
icon: "none"
});
}
- } else if (details.orderStatus == 2) {
+ } else if (Number(details.orderStatus) === 3) {
let response = await signforsignforIn(data);
formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:334", response);
if (response.code == 3006) {
@@ -17236,8 +17574,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesSignOrderScanSignOrderScan = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__scopeId", "data-v-fb393026"], ["__file", "D:/worksp/logpm/pagesHome/pages/signOrderScan/signOrderScan.vue"]]);
- const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesSignOrderScanSignOrderScan = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["__scopeId", "data-v-fb393026"], ["__file", "D:/worksp/logpm/pagesHome/pages/signOrderScan/signOrderScan.vue"]]);
+ const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({
__name: "SignDetailScan",
setup(__props) {
let details = vue.reactive({
@@ -17692,8 +18030,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesSignDetailScanSignDetailScan = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__file", "D:/worksp/logpm/pagesHome/pages/SignDetailScan/SignDetailScan.vue"]]);
- const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesSignDetailScanSignDetailScan = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__file", "D:/worksp/logpm/pagesHome/pages/SignDetailScan/SignDetailScan.vue"]]);
+ const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({
__name: "setbarcode",
setup(__props) {
const utils2 = vue.inject("utils");
@@ -17722,13 +18060,18 @@ This will fail in production if not fixed.`);
if (op.completeStact == "true") {
details.completeStact = true;
}
+ initpage();
+ });
+ onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:92", code2);
+ formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:101", code2);
scandata(code2);
}
});
- initpage();
+ });
+ onHide(() => {
+ uni.$off("scancodedate");
});
function setstockPrint(values) {
details.stockPrint = values;
@@ -17760,7 +18103,7 @@ This will fail in production if not fixed.`);
tipstate: 1,
placeholder: "请输入需要生成的包条码数量",
success: (deta) => {
- formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:149", deta);
+ formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:160", deta);
details.packageNum = deta.inputtext;
if (Number(details.packageNum) > Number(details.items.planNum)) {
uni.showToast({
@@ -17789,7 +18132,7 @@ This will fail in production if not fixed.`);
status: details.completeStact ? 1 : 0
};
let response = await distributionStockupstockupStockListPackageCode(data);
- formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:179", response);
+ formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:190", response);
details.printlist = response.data;
let checklist = [];
response.data.map((item, index2) => {
@@ -17824,7 +18167,7 @@ This will fail in production if not fixed.`);
});
}
function print(item) {
- let text = "! 0 200 200 500 1\r\n";
+ let text = "! 0 200 200 330 1\r\n";
text += "SETBOLD 2\r\n";
text += `T 56 0 0 0 ${item}\r
`;
@@ -17850,9 +18193,9 @@ This will fail in production if not fixed.`);
text += "ENDQR\r\n";
text += "PRINT\r\n";
let sylist = utils2.initbl();
- formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:244", sylist);
+ formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:255", sylist);
sylist.map((item2) => {
- formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:246", item2);
+ formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:257", item2);
if (item2.uuids) {
utils2.getbl(item2, text);
}
@@ -17872,7 +18215,7 @@ This will fail in production if not fixed.`);
id: details.orderpackgedetails.stockListId
};
let res = await distributionStockupstockupScan(data);
- formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:268", res);
+ formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:279", res);
if (res.code == 200) {
initpage();
}
@@ -18047,8 +18390,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesSetbarcodeSetbarcode = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__file", "D:/worksp/logpm/pagesHome/pages/setbarcode/setbarcode.vue"]]);
- const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesSetbarcodeSetbarcode = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__file", "D:/worksp/logpm/pagesHome/pages/setbarcode/setbarcode.vue"]]);
+ const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
__name: "OfflineUpload",
setup(__props) {
const tiplists = vue.ref(null);
@@ -18189,8 +18532,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesOfflineUploadOfflineUpload = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__file", "D:/worksp/logpm/pagesHome/pages/OfflineUpload/OfflineUpload.vue"]]);
- const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesOfflineUploadOfflineUpload = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__file", "D:/worksp/logpm/pagesHome/pages/OfflineUpload/OfflineUpload.vue"]]);
+ const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
__name: "createTask",
setup(__props) {
let details = vue.reactive({
@@ -18206,13 +18549,18 @@ This will fail in production if not fixed.`);
if (details.editindex) {
details.scandate = uni.getStorageSync("HistoryDate")[details.editindex]["numberarr"];
}
+ });
+ onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/createTask/createTask.vue:49", code2);
+ formatAppLog("log", "at pagesHome/pages/createTask/createTask.vue:51", code2);
details.scandate.push(code2);
}
});
});
+ onHide(() => {
+ uni.$off("scancodedate");
+ });
function inputnumb() {
tiplists.value.setdetails({
tipstate: 1,
@@ -18268,8 +18616,9 @@ This will fail in production if not fixed.`);
duration: 1500,
icon: "none"
});
- setTimeout(() => {
+ const timer = setTimeout(() => {
uni.navigateBack();
+ clearTimeout(timer);
}, 1500);
}
function remove(index2) {
@@ -18370,8 +18719,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesCreateTaskCreateTask = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__file", "D:/worksp/logpm/pagesHome/pages/createTask/createTask.vue"]]);
- const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesCreateTaskCreateTask = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__file", "D:/worksp/logpm/pagesHome/pages/createTask/createTask.vue"]]);
+ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
__name: "ordersorting",
setup(__props) {
utils.ttsspke("订单扫描");
@@ -18431,8 +18780,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesOrdersortingOrdersorting = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__file", "D:/worksp/logpm/pagesHome/pages/ordersorting/ordersorting.vue"]]);
- const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesOrdersortingOrdersorting = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__file", "D:/worksp/logpm/pagesHome/pages/ordersorting/ordersorting.vue"]]);
+ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
__name: "lnventorysorting",
setup(__props) {
function gotourl(type) {
@@ -18481,8 +18830,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesLnventorysortingLnventorysorting = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__file", "D:/worksp/logpm/pagesHome/pages/lnventorysorting/lnventorysorting.vue"]]);
- const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesLnventorysortingLnventorysorting = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__file", "D:/worksp/logpm/pagesHome/pages/lnventorysorting/lnventorysorting.vue"]]);
+ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
__name: "scansorting",
setup(__props) {
const option = vue.reactive({
@@ -18546,11 +18895,13 @@ This will fail in production if not fixed.`);
title: "已经到底了",
icon: "success"
});
+ clearTimeout(antiShake);
return option.isEnd = true;
}
+ clearTimeout(antiShake);
}, 1e3);
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:177", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:179", "err :>> ", err);
}
}
let details = vue.reactive({
@@ -18568,8 +18919,9 @@ This will fail in production if not fixed.`);
});
onShow(() => {
uni.$on("scancodedate", function(code2) {
+ formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:203", "code :>> ", code2);
if (code2) {
- formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:202", code2);
+ formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:205", code2);
details.scancode = code2;
scandata();
}
@@ -18588,7 +18940,7 @@ This will fail in production if not fixed.`);
trayCode: details.scancode
};
let res = await warehouseTrayTypeorderScanTrayCode(data);
- formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:222", "res", res);
+ formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:225", "res", res);
if (Number(res.data.isHasData) === 0) {
utils.ttsspke("请选择分拣方式");
uni.setStorageSync("trayCodeType", res.data.data);
@@ -18606,16 +18958,16 @@ This will fail in production if not fixed.`);
createDateEnd: date2.value[1] || ""
};
const res = await warehouseTrayTypeorderPageList(submitData);
- formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:243", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:246", "res :>> ", res);
const { code: code2, data } = res;
if (data.pages <= details.pageNum)
option.isEnd = true;
if (code2 === 200 && data)
details.datalist = [...details.datalist, ...data.records];
- formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:247", "details.datalist :>> ", details.datalist);
+ formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:250", "details.datalist :>> ", details.datalist);
return res;
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:252", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:255", "err :>> ", err);
}
}
function goorderdetail(item) {
@@ -18632,7 +18984,7 @@ This will fail in production if not fixed.`);
details.show = !details.show;
}
function onConfirm(e) {
- formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:275", e);
+ formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:278", e);
date2.value[0] = e.startDate;
date2.value[1] = e.endDate;
details.datatime = date2.value[0] + " 至 " + date2.value[1];
@@ -18855,8 +19207,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesScansortingScansorting = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__file", "D:/worksp/logpm/pagesHome/pages/scansorting/scansorting.vue"]]);
- const _sfc_main$O = {};
+ const PagesHomePagesScansortingScansorting = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__file", "D:/worksp/logpm/pagesHome/pages/scansorting/scansorting.vue"]]);
+ const _sfc_main$P = {};
function _sfc_render$7(_ctx, _cache) {
const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0);
return vue.openBlock(), vue.createElementBlock(
@@ -18879,8 +19231,8 @@ This will fail in production if not fixed.`);
/* STABLE_FRAGMENT */
);
}
- const PagesHomePagesPeopleSortingPeopleSorting = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["render", _sfc_render$7], ["__file", "D:/worksp/logpm/pagesHome/pages/peopleSorting/peopleSorting.vue"]]);
- const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesPeopleSortingPeopleSorting = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["render", _sfc_render$7], ["__file", "D:/worksp/logpm/pagesHome/pages/peopleSorting/peopleSorting.vue"]]);
+ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
__name: "OrderSortingDetail",
setup(__props) {
let details = vue.reactive({
@@ -18903,6 +19255,7 @@ This will fail in production if not fixed.`);
stock: {
// 商城Id
marketId: "",
+ marketName: "",
// 物料编码
materialCode: "",
// 库存品列表
@@ -18916,7 +19269,7 @@ This will fail in production if not fixed.`);
details.trayType = op.trayType;
if (op.pageName)
utils.ttsspke("当前打托方式为" + op.pageName);
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:388", "details.trayType :>> ", details.trayType);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:397", "details.trayType :>> ", details.trayType);
if (!op.trayType) {
uni.showToast({
title: "获取打托方式出错",
@@ -18927,7 +19280,7 @@ This will fail in production if not fixed.`);
onShow(async () => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:399", code2);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:408", code2);
details.scancode = code2;
scandata();
details.iscan = true;
@@ -18939,9 +19292,10 @@ This will fail in production if not fixed.`);
uni.$off("scancodedate");
});
onPullDownRefresh(() => {
- setTimeout(async () => {
+ const timer = setTimeout(async () => {
await initlist();
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
async function godetaillist(item) {
@@ -18970,7 +19324,7 @@ This will fail in production if not fixed.`);
orderCode: item.dataCode
};
let res = await warehouseTrayTypedeleteOrderCode(data);
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:453", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:463", "res :>> ", res);
initlist();
tip.value.setisshow(false);
},
@@ -19018,7 +19372,7 @@ This will fail in production if not fixed.`);
trayGoodsId: item.trayGoodsId
};
let res = await warehouseTrayTypedeleteStockByTrayGoodsId(data);
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:507", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:517", "res :>> ", res);
if (res.code == 200) {
initlist();
}
@@ -19037,13 +19391,13 @@ This will fail in production if not fixed.`);
trayCode: details.trayCode
};
let res = await warehouseTrayTypeorderScanTrayCode(data);
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:527", res.data, "resresresres");
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:537", res.data, "resresresres");
if (res.code == 200) {
if (res.data.isHasData == 1) {
details.detauser = res.data.data;
details.stock.marketId = res.data.data.marketId;
details.Remarktext = res.data.data.reamrk;
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:535", " details.detauser :>> ", details.detauser);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:545", " details.detauser :>> ", details.detauser);
if (details.tabBarState === 1)
details.datelist = details.detauser.packageList;
else if (details.tabBarState === 2)
@@ -19076,18 +19430,18 @@ This will fail in production if not fixed.`);
orderPackageCode: details.scancode
};
let response = await warehouseTrayTypeorderScanOrderPackageCode(submitData);
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:570", "response", response);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:580", "response", response);
const res = await initlist();
const { code: code2 } = res;
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:574", "res :>> ", res);
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:576", "details.scancode :>> ", details.scancode);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:584", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:586", "details.scancode :>> ", details.scancode);
if (response.code !== 200 || code2 !== 200)
return;
if (((_a = details == null ? void 0 : details.detauser) == null ? void 0 : _a.trayNum) && ((_b = details == null ? void 0 : details.detauser) == null ? void 0 : _b.trayNum) > 0) {
utils.ttsspke(details.detauser.trayNum + "件");
const { data: { orderCode } } = response;
const scanOrder2 = details.datelist.find((val) => val.dataCode === orderCode);
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:587", "scanOrder :>> ", scanOrder2);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:597", "scanOrder :>> ", scanOrder2);
if (scanOrder2 && scanOrder2.orderTotalNum === scanOrder2.scanNum) {
utils.ttsspke(`订单${orderCode}已齐套`);
}
@@ -19098,7 +19452,7 @@ This will fail in production if not fixed.`);
orderPackageCode: details.scancode
};
const res = warehouseTrayTypeenterStockNoDataMaterialCode(data);
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:605", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:615", "res :>> ", res);
}
async function setTabBarState(state) {
details.tabBarState = state;
@@ -19107,39 +19461,47 @@ This will fail in production if not fixed.`);
else if (details.tabBarState === 2)
details.datelist = details.detauser ? details.detauser.zeroList : [];
else if (details.tabBarState === 3) {
- if (!details.stock.marketId) {
- const res = await warehouseTrayTypefindAllMarket({});
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:622", "res :>> ", res);
- if (res.code !== 200)
- return;
- const _marketArr = res.data;
- const list = _marketArr.map((val) => val.marketName);
- tiplists.value.setdetails({
- isshow: true,
- tipstate: 2,
- title: "请选择商场",
- list,
- isonecheck: true,
- success: (detail) => {
- if (detail.checklist.length === 0) {
- return uni.showToast({
- title: "请选择商场",
- icon: "none"
- });
- }
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:641", "detail :>> ", detail);
- details.stock.marketId = _marketArr[detail.checklist[0]].marketId;
- tiplists.value.setdetails({ isshow: false });
- },
- cancel: () => {
- tiplists.value.setdetails({ isshow: false });
- },
- close: () => {
- tiplists.value.setdetails({ isshow: false });
- }
- });
- }
details.datelist = details.detauser ? details.detauser.stockList : [];
+ if (!details.stock.marketId)
+ chooseMarket();
+ }
+ }
+ async function chooseMarket() {
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:638", "111 :>> ", 111);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:640", "details.datelist :>> ", details.datelist.length);
+ if (details.datelist.length === 0) {
+ const res = await warehouseTrayTypefindAllMarket({});
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:644", "res :>> ", res);
+ if (res.code !== 200)
+ return;
+ const _marketArr = res.data;
+ const list = _marketArr.map((val) => val.marketName);
+ tiplists.value.setdetails({
+ isshow: true,
+ tipstate: 2,
+ title: "请选择商场",
+ list,
+ isonecheck: true,
+ success: (detail) => {
+ if (detail.checklist.length === 0) {
+ return uni.showToast({
+ title: "请选择商场",
+ icon: "none"
+ });
+ }
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:663", "detail :>> ", detail);
+ details.stock.marketId = _marketArr[detail.checklist[0]].marketId;
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:665", "_marketName :>> ", _marketArr);
+ details.stock.marketName = _marketArr[detail.checklist[0]].marketName;
+ tiplists.value.setdetails({ isshow: false });
+ },
+ cancel: () => {
+ tiplists.value.setdetails({ isshow: false });
+ },
+ close: () => {
+ tiplists.value.setdetails({ isshow: false });
+ }
+ });
}
}
async function checkremaker() {
@@ -19168,12 +19530,14 @@ This will fail in production if not fixed.`);
item.number = item.residueNum;
if (item.number <= 0)
item.number = 0;
+ clearTimeout(isClick);
}, 500);
}
+ let isClickS = null;
function stockInput(item) {
if (isClick)
clearTimeout(isClick);
- setTimeout(() => {
+ isClickS = setTimeout(() => {
item.maknumber = parseInt(item.maknumber);
if (item.maknumber !== item.maknumber)
item.maknumber = 0;
@@ -19181,6 +19545,7 @@ This will fail in production if not fixed.`);
item.maknumber = item.quantityStock;
if (item.maknumber <= 0)
item.maknumber = 0;
+ clearTimeout(isClickS);
}, 500);
}
async function scanlist() {
@@ -19188,7 +19553,7 @@ This will fail in production if not fixed.`);
waybillCode: details.waybillCode
};
let response = await warehouseTrayTypegetZeroOrderByWaybillCode(data);
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:715", response);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:739", response);
details.codelist = response.data;
details.codelist.map((item) => {
item["number"] = 0;
@@ -19198,7 +19563,7 @@ This will fail in production if not fixed.`);
async function confirmlist() {
let zeroList = [];
let isfl = false;
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:732", "details.codelist :>> ", details.codelist);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:756", "details.codelist :>> ", details.codelist);
isfl = !details.codelist.some((item) => {
if (item.number === 0) {
return false;
@@ -19275,14 +19640,14 @@ This will fail in production if not fixed.`);
}
});
Promise.all(PromiseArr).then((res) => {
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:826", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:850", "res :>> ", res);
setshowstate(0);
initlist();
details.stock.searchStockList = [];
details.stock.materialCode = "";
});
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:833", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:857", "err :>> ", err);
} finally {
uni.hideLoading();
}
@@ -19454,6 +19819,20 @@ This will fail in production if not fixed.`);
class: "scvmabx",
"scroll-y": "true"
}, [
+ vue.unref(details).tabBarState === 3 ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 0,
+ style: { "display": "flex" },
+ onClick: chooseMarket
+ }, [
+ vue.createElementVNode("view", null, "商场名称:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(vue.unref(details).stock.marketName || "暂无数据"),
+ 1
+ /* TEXT */
+ )
+ ])) : vue.createCommentVNode("v-if", true),
vue.createElementVNode("view", { class: "maxboxs" }, [
(vue.openBlock(true), vue.createElementBlock(
vue.Fragment,
@@ -20120,8 +20499,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesOrderSortingDetailOrderSortingDetail = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__scopeId", "data-v-ca2cce65"], ["__file", "D:/worksp/logpm/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue"]]);
- const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesOrderSortingDetailOrderSortingDetail = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__scopeId", "data-v-ca2cce65"], ["__file", "D:/worksp/logpm/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue"]]);
+ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
__name: "ScanSortingType",
setup(__props) {
let typelist = vue.ref([]);
@@ -20224,8 +20603,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesScanSortingTypeScanSortingType = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanSortingType/ScanSortingType.vue"]]);
- const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesScanSortingTypeScanSortingType = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanSortingType/ScanSortingType.vue"]]);
+ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
__name: "PeopleSortingDetail",
setup(__props) {
let details = vue.reactive({
@@ -20260,14 +20639,19 @@ This will fail in production if not fixed.`);
details.trayCodevalue = item.dictValue;
}
});
+ });
+ onShow(() => {
initpage();
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue:212", code2);
+ formatAppLog("log", "at pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue:215", code2);
details.scancode = code2;
}
});
});
+ onHide(() => {
+ uni.$off("scancodedate");
+ });
async function initpage() {
var _a, _b, _c, _d;
let data = {
@@ -20286,7 +20670,7 @@ This will fail in production if not fixed.`);
waybillCode: details.waybillCode
};
let response = await warehouseTrayTypegetZeroOrderByWaybillCode(data);
- formatAppLog("log", "at pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue:241", response);
+ formatAppLog("log", "at pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue:247", response);
details.codelist = response.data;
details.codelist.map((item) => {
item["number"] = 0;
@@ -20421,6 +20805,7 @@ This will fail in production if not fixed.`);
item.number = item.residueNum;
if (item.number <= 0)
item.number = 0;
+ clearTimeout(isClick);
}, 500);
}
const { checkinarr, Remarktext, datalist, warehouseTray, showstate, waybillCode, codelist } = vue.toRefs(details);
@@ -20805,8 +21190,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesPeopleSortingDetailPeopleSortingDetail = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-e9f42dec"], ["__file", "D:/worksp/logpm/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue"]]);
- const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesPeopleSortingDetailPeopleSortingDetail = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-e9f42dec"], ["__file", "D:/worksp/logpm/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue"]]);
+ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
__name: "inventoryType",
setup(__props) {
let typelist = vue.ref([]);
@@ -20888,8 +21273,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesInventoryTypeInventoryType = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryType/inventoryType.vue"]]);
- const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesInventoryTypeInventoryType = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryType/inventoryType.vue"]]);
+ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
__name: "inventoryDetail",
setup(__props) {
let details = vue.reactive({
@@ -21096,8 +21481,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesInventoryDetailInventoryDetail = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryDetail/inventoryDetail.vue"]]);
- const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesInventoryDetailInventoryDetail = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryDetail/inventoryDetail.vue"]]);
+ const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
__name: "inventoryDetailList",
setup(__props) {
let tip = vue.ref(null);
@@ -21273,8 +21658,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesInventoryDetailListInventoryDetailList = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryDetailList/inventoryDetailList.vue"]]);
- const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesInventoryDetailListInventoryDetailList = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryDetailList/inventoryDetailList.vue"]]);
+ const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
__name: "inventoryenter",
setup(__props) {
const tip = vue.ref(null);
@@ -21300,6 +21685,8 @@ This will fail in production if not fixed.`);
details.trayCode = op.trayCode;
details.trayType = op.trayType;
details.pagety = op.type;
+ });
+ onShow(() => {
initpage();
});
const kcnumber = vue.computed(() => {
@@ -21314,10 +21701,10 @@ This will fail in production if not fixed.`);
function checkmake() {
let list = [];
details.Marketlist.map((item) => {
- formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:220", "list", list);
+ formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:222", "list", list);
list.push(item == null ? void 0 : item.marketName);
});
- formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:223", "details.Marketlist :>> ", details.Marketlist);
+ formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:225", "details.Marketlist :>> ", details.Marketlist);
tiplists.value.setdetails({
title: "请选择商场",
isshow: true,
@@ -21328,7 +21715,7 @@ This will fail in production if not fixed.`);
confirmTxt: "确认选择",
isonecheck: true,
success: (deta) => {
- formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:234", "deta", deta);
+ formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:236", "deta", deta);
if (deta.checklist.length == 0) {
uni.showToast({
title: "请选择商场",
@@ -21354,7 +21741,7 @@ This will fail in production if not fixed.`);
warehouseCode: "LQ"
};
let res = await warehouseTrayTypefindAllMarket(data);
- formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:260", "Marketlist", res.data);
+ formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:262", "Marketlist", res.data);
details.Marketlist = res.data;
let market = details.Marketlist.find((item) => {
return item.marketId === details.marketId;
@@ -21368,9 +21755,9 @@ This will fail in production if not fixed.`);
trayCode: details.trayCode
};
let res = await warehouseTrayTypestockNoDataScanTrayCode(data);
- formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:273", "res.data >>>>>>>>>", res.data);
+ formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:275", "res.data >>>>>>>>>", res.data);
details.marketId = res.data.data.marketId;
- formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:275", "details.marketId", details.marketId);
+ formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:277", "details.marketId", details.marketId);
initmarlist();
if ((_b = (_a = res == null ? void 0 : res.data) == null ? void 0 : _a.data) == null ? void 0 : _b.list) {
details.datalist = (_d = (_c = res == null ? void 0 : res.data) == null ? void 0 : _c.data) == null ? void 0 : _d.list;
@@ -21868,8 +22255,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesInventoryenterInventoryenter = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryenter/inventoryenter.vue"]]);
- const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesInventoryenterInventoryenter = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__file", "D:/worksp/logpm/pagesHome/pages/inventoryenter/inventoryenter.vue"]]);
+ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
__name: "lnventorysortinglist",
setup(__props) {
const option = vue.reactive({
@@ -21928,11 +22315,13 @@ This will fail in production if not fixed.`);
title: "已经到底了",
icon: "success"
});
+ clearTimeout(antiShake);
return option.isEnd = true;
}
+ clearTimeout(antiShake);
}, 1e3);
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:167", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:169", "err :>> ", err);
}
}
let details = vue.reactive({
@@ -21951,7 +22340,7 @@ This will fail in production if not fixed.`);
onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:189", code2);
+ formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:191", code2);
details.scancode = code2;
scandata();
}
@@ -22016,11 +22405,11 @@ This will fail in production if not fixed.`);
} else if (details.pageType == 2) {
res = await warehouseTrayTypestockNoDataPageList(submitData);
}
- formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:296", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:298", "res :>> ", res);
const { code: code2, data } = res;
if (code2 === 200 && data)
details.datelist = [...details.datelist, ...data.records];
- formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:299", "details.datelist :>> ", details.datelist);
+ formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:301", "details.datelist :>> ", details.datelist);
if (res.data.records.length < details.pageSize || details.pageNum >= res.pages) {
uni.showToast({
title: "已经到底了",
@@ -22045,7 +22434,7 @@ This will fail in production if not fixed.`);
details.show = !details.show;
}
function onConfirm(e) {
- formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:334", e);
+ formatAppLog("log", "at pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue:336", e);
date2.value[0] = e.startDate;
date2.value[1] = e.endDate;
details.datatime = date2.value[0] + " 至 " + date2.value[1];
@@ -22236,8 +22625,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesLnventorysortinglistLnventorysortinglist = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["__file", "D:/worksp/logpm/pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue"]]);
- const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesLnventorysortinglistLnventorysortinglist = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__file", "D:/worksp/logpm/pagesHome/pages/lnventorysortinglist/lnventorysortinglist.vue"]]);
+ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
__name: "OrderSortingDetailList",
setup(__props) {
let tip = vue.ref(null);
@@ -22259,12 +22648,15 @@ This will fail in production if not fixed.`);
onLoad((op) => {
details.orderCode = op.orderCode;
details.trayCode = op.trayCode;
+ });
+ onShow(() => {
initpage();
});
onPullDownRefresh(() => {
- setTimeout(async () => {
+ const timer = setTimeout(async () => {
await initpage();
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
async function initpage() {
@@ -22703,8 +23095,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesOrderSortingDetailListOrderSortingDetailList = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__file", "D:/worksp/logpm/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.vue"]]);
- const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesOrderSortingDetailListOrderSortingDetailList = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["__file", "D:/worksp/logpm/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList.vue"]]);
+ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
__name: "ScanUpType",
setup(__props) {
let typelist = vue.ref([]);
@@ -22722,8 +23114,9 @@ This will fail in production if not fixed.`);
utils.ttsspke("请选择上架方式");
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
function gotourl(item) {
@@ -22779,8 +23172,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesScanUpTypeScanUpType = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanUpType/ScanUpType.vue"]]);
- const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesScanUpTypeScanUpType = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanUpType/ScanUpType.vue"]]);
+ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
__name: "ScanUp",
setup(__props) {
const utils2 = vue.inject("utils");
@@ -22815,7 +23208,7 @@ This will fail in production if not fixed.`);
onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/ScanUp/ScanUp.vue:228", "code :>> ", code2);
+ formatAppLog("log", "at pagesHome/pages/ScanUp/ScanUp.vue:233", "code :>> ", code2);
details.scancode = code2;
scandata();
}
@@ -22825,13 +23218,14 @@ This will fail in production if not fixed.`);
uni.$off("scancodedate");
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
details.allocationId = "";
details.reqobj = [];
details.renderList = [];
details.datalist = [];
details.uplistarr = [];
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
async function scandata() {
@@ -22841,7 +23235,7 @@ This will fail in production if not fixed.`);
allocationId: details.scancode
};
let res = await warehouseUpdownTypeupShelfScanAllocation(data);
- formatAppLog("log", "at pagesHome/pages/ScanUp/ScanUp.vue:263", res);
+ formatAppLog("log", "at pagesHome/pages/ScanUp/ScanUp.vue:269", res);
if (res.code == 200) {
details.reqobj = res.data;
const _positionArr = details.reqobj.allocationTitle.split("-");
@@ -22868,13 +23262,36 @@ This will fail in production if not fixed.`);
code: details.scancode
};
let res = await warehouseUpdownTypeupShelfScanGoods(data);
- formatAppLog("log", "at pagesHome/pages/ScanUp/ScanUp.vue:297", "res>>>>>", res);
+ formatAppLog("log", "at pagesHome/pages/ScanUp/ScanUp.vue:303", "res>>>>>", res);
if (res.code == 200) {
- details.uplistarr = details.uplistarr.concat(res.data);
- if (details.upshelfScanType === "4")
- utils2.ttsspke(details.uplistarr.reduce((curr, item) => curr + item.shelfNum, 0) + "件");
+ if (Number(details.upshelfScanType) !== 3) {
+ const _uplistarr = details.uplistarr;
+ const _orderCodeArr = details.orderCodeArr;
+ const _flag = res.data.every((val) => {
+ if (details.orderCodeArr.includes(val.orderCode)) {
+ uni.showToast({
+ title: "订单已存在, 勿重复扫码",
+ icon: "none"
+ });
+ return false;
+ }
+ _uplistarr.push(val);
+ _orderCodeArr.push(val.orderCode);
+ return true;
+ });
+ if (!_flag)
+ return;
+ details.uplistarr = _uplistarr;
+ details.orderCodeArr = _orderCodeArr;
+ } else {
+ details.uplistarr = details.uplistarr.concat(res.data);
+ }
+ let _content = "";
+ if (details.upshelfScanType !== "3")
+ _content = details.uplistarr.reduce((curr, item) => curr + item.shelfNum, 0) + "件";
else
- utils2.ttsspke(details.uplistarr.length + "件");
+ _content = details.uplistarr.length + "件";
+ utils2.ttsspke(_content);
if (details.checkstate === 1)
return details.renderList = details.uplistarr;
} else if (res.code === 3001 && res.audio) {
@@ -22913,7 +23330,7 @@ This will fail in production if not fixed.`);
let _totalShelfNum = 0;
if (details.upshelfScanType === "3")
_totalShelfNum = uplistarr.value.length;
- if (details.upshelfScanType === "4")
+ else
_totalShelfNum = uplistarr.value.reduce((curr, item) => curr + item.shelfNum, 0);
utils2.ttsspke(`待上架${_totalShelfNum}件, 是否进行上架`);
tip.value.setdetails({
@@ -22995,18 +23412,9 @@ This will fail in production if not fixed.`);
else if (state === 2)
return details.renderList = details.datalist;
}
- let add = 1;
- function moni() {
- details.scancode = add === 1 ? "1713744290133504006" : "22061107124-1";
- scandata();
- add++;
- }
const {
uplistarr,
checkstate,
- upshelfScanType,
- allocationId,
- datalist,
reqobj,
renderList
} = vue.toRefs(details);
@@ -23229,8 +23637,22 @@ This will fail in production if not fixed.`);
/* TEXT */
)
], 8, ["onClick"])) : vue.createCommentVNode("v-if", true),
+ item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 2,
+ class: "tpbx",
+ onClick: vue.withModifiers(($event) => goorderdetail(item, item.goodsType), ["stop"])
+ }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "类型:" + vue.toDisplayString(Number(item.conditions) === 1 ? "定制品" : "库存品"),
+ 1
+ /* TEXT */
+ )
+ ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true),
vue.createCommentVNode(" 定制品 "),
- item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2 }, [
+ item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 3 }, [
vue.createElementVNode("view", { class: "tpbx" }, [
vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
vue.createElementVNode(
@@ -23256,7 +23678,7 @@ This will fail in production if not fixed.`);
], 8, ["onClick"])
])) : vue.createCommentVNode("v-if", true),
vue.createCommentVNode(" 零担 "),
- item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 3 }, [
+ item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 4 }, [
vue.createElementVNode("view", { class: "tpbx" }, [
vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
vue.createElementVNode(
@@ -23279,7 +23701,7 @@ This will fail in production if not fixed.`);
])
])) : vue.createCommentVNode("v-if", true),
vue.createCommentVNode(" 库存品 "),
- item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 4 }, [
+ item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 5 }, [
vue.createElementVNode("view", { class: "tpbx" }, [
vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
vue.createElementVNode(
@@ -23337,42 +23759,30 @@ This will fail in production if not fixed.`);
{ key: 0 },
[
vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
- vue.createElementVNode(
- "view",
- null,
- "总数:" + vue.toDisplayString(item.totalNum),
- 1
- /* TEXT */
- ),
- vue.createElementVNode(
- "view",
- null,
- "上架数量:" + vue.toDisplayString(item.shelfNum),
- 1
- /* TEXT */
- )
- ],
- 64
- /* STABLE_FRAGMENT */
- )) : (vue.openBlock(), vue.createElementBlock(
- vue.Fragment,
- { key: 1 },
- [
- vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
- vue.createElementVNode(
- "view",
- null,
- "已扫数量:" + vue.toDisplayString(item.shelfNum),
- 1
- /* TEXT */
- )
+ vue.createElementVNode("view", { style: { "flex": "1", "display": "inline-flex", "justify-content": "space-between" } }, [
+ vue.createElementVNode(
+ "view",
+ null,
+ "总数:" + vue.toDisplayString(item.totalNum),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode(
+ "view",
+ null,
+ "上架数量:" + vue.toDisplayString(item.shelfNum),
+ 1
+ /* TEXT */
+ )
+ ])
],
64
/* STABLE_FRAGMENT */
- ))
+ )) : vue.createCommentVNode("v-if", true),
+ vue.createCommentVNode(' \r\n \r\n 已扫数量:{{item.shelfNum}}\r\n ')
]),
Number(vue.unref(details).upshelfScanType) != 3 ? (vue.openBlock(), vue.createElementBlock("image", {
- key: 5,
+ key: 6,
class: "qtimgzt",
src: item.totalNum == item.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png"
}, null, 8, ["src"])) : vue.createCommentVNode("v-if", true)
@@ -23409,7 +23819,6 @@ This will fail in production if not fixed.`);
])
])
]),
- vue.createElementVNode("button", { onClick: moni }, "模拟"),
vue.createElementVNode("view", { class: "butbox" }, [
vue.createElementVNode("view", { onClick: uplist }, "上架")
]),
@@ -23431,8 +23840,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesScanUpScanUp = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanUp/ScanUp.vue"]]);
- const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesScanUpScanUp = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__file", "D:/worksp/logpm/pagesHome/pages/ScanUp/ScanUp.vue"]]);
+ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
__name: "RelocationType",
setup(__props) {
utils.ttsspke("请选择移库方式");
@@ -23520,8 +23929,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesRelocationTypeRelocationType = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__file", "D:/worksp/logpm/pagesHome/pages/RelocationType/RelocationType.vue"]]);
- const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesRelocationTypeRelocationType = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__file", "D:/worksp/logpm/pagesHome/pages/RelocationType/RelocationType.vue"]]);
+ const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
__name: "Relocation",
setup(__props) {
const tip = vue.ref(null);
@@ -23541,6 +23950,8 @@ This will fail in production if not fixed.`);
onLoad((op) => {
details.pagetype = op.type;
utils.ttsspke(`当前移库方式为${op.pageName}, 请先扫描库位码`);
+ });
+ onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
details.scancode = code2;
@@ -23548,8 +23959,11 @@ This will fail in production if not fixed.`);
}
});
});
+ onHide(() => {
+ uni.$off("scancodedate");
+ });
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
details.scancode = "";
details.allocationId = "";
details.dtilobj = {};
@@ -23559,6 +23973,7 @@ This will fail in production if not fixed.`);
details.isshowtot = false;
details.scancodeList = [];
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
function goorderdetail(item) {
@@ -23581,7 +23996,7 @@ This will fail in production if not fixed.`);
details.scanlist.map((item) => {
details.codenumer += item.shelfNum;
});
- formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:332", details.codenumer);
+ formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:339", details.codenumer);
});
async function scandata() {
let res = null;
@@ -23590,7 +24005,7 @@ This will fail in production if not fixed.`);
allocationId: details.scancode
};
res = await warehouseUpdownTypemoveAllocationScanTarget(data);
- formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:342", "res1 :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:349", "res1 :>> ", res);
if (res.code == 200) {
details.dtilobj = res.data;
details.allocationId = res.data.allocationId;
@@ -23621,7 +24036,7 @@ This will fail in production if not fixed.`);
trayCode: details.scancode
};
res = await warehouseUpdownTypemoveAllocationScanTrayCode(data);
- formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:379", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:386", "res :>> ", res);
if (res.code !== 200)
return;
details.trayCode = details.scancode;
@@ -23634,14 +24049,14 @@ This will fail in production if not fixed.`);
orderPackageCode: details.scancode
};
res = await warehouseUpdownTypemoveAllocationScanPackage(data);
- formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:393", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:400", "res :>> ", res);
if (res.code == 200) {
details.scanlist.push(res.data);
utils.ttsspke(details.scanlist.length + "件");
}
}
} catch (err) {
- formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:404", "err :>> ", err);
+ formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:411", "err :>> ", err);
}
}
async function uplist() {
@@ -23665,7 +24080,7 @@ This will fail in production if not fixed.`);
}
uni.hideLoading();
if (res.code == 200) {
- formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:429", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:436", "res :>> ", res);
uni.showToast({
title: "移库成功",
icon: "success"
@@ -24247,8 +24662,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesRelocationRelocation = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__file", "D:/worksp/logpm/pagesHome/pages/Relocation/Relocation.vue"]]);
- const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesRelocationRelocation = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__file", "D:/worksp/logpm/pagesHome/pages/Relocation/Relocation.vue"]]);
+ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
__name: "PeopleScanUpType",
setup(__props) {
let typelist = vue.ref([]);
@@ -24318,8 +24733,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesPeopleScanUpTypePeopleScanUpType = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__file", "D:/worksp/logpm/pagesHome/pages/PeopleScanUpType/PeopleScanUpType.vue"]]);
- const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesPeopleScanUpTypePeopleScanUpType = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__file", "D:/worksp/logpm/pagesHome/pages/PeopleScanUpType/PeopleScanUpType.vue"]]);
+ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
__name: "PeopleScanUp",
setup(__props) {
const tip = vue.ref(null);
@@ -24346,7 +24761,6 @@ This will fail in production if not fixed.`);
details.upshelfScanType = op.type;
if (op.pageName)
utils.ttsspke(`当前上架方式为 ${op.pageName}, 请扫描货位`);
- initmarke();
});
onShow(() => {
uni.$on("scancodedate", function(code2) {
@@ -24355,12 +24769,13 @@ This will fail in production if not fixed.`);
scandata();
}
});
+ initmarke();
});
onHide(() => {
uni.$off("scancodedate");
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
details.scancode = "";
details.allocationId = "";
details.datalist = [];
@@ -24372,6 +24787,7 @@ This will fail in production if not fixed.`);
details.checkmakindex = 0;
details.checkinarr = [];
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
vue.watchEffect(() => {
@@ -24427,7 +24843,7 @@ This will fail in production if not fixed.`);
warehouseCode: "LQ"
};
let res = await warehouseTrayTypefindAllMarket(data);
- formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:418", res.data);
+ formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:471", res.data);
details.Marketlist = res.data;
}
async function scanlist() {
@@ -24447,7 +24863,7 @@ This will fail in production if not fixed.`);
};
response = await warehouseUpdownTypegetStockByParam(data);
}
- formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:439", response);
+ formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:492", response);
details.codelist = response.data;
details.codelist.map((item) => {
item["enterNum"] = 0;
@@ -24475,14 +24891,14 @@ This will fail in production if not fixed.`);
allocationId: details.scancode
};
let res = await warehouseUpdownTypeupShelfScanAllocation(data);
- formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:478", res);
+ formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:531", res);
if (res.code == 200) {
details.reqobj = res.data;
const _positionArr = details.reqobj.allocationTitle.split("-");
details.reqobj.positionInfo = _positionArr[0] + "层" + _positionArr[1] + "列";
details.allocationId = res.data.allocationId;
details.datalist = ((_a = res.data) == null ? void 0 : _a.list) || [];
- formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:486", "details.pageName.slice(0, details.pageName.length - 3) :>> ", details.pageName);
+ formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:539", "details.pageName.slice(0, details.pageName.length - 3) :>> ", details.pageName);
utils.ttsspke("请输入" + details.pageName.slice(0, details.pageName.length - 2));
} else {
uni.showToast({
@@ -24602,7 +25018,7 @@ This will fail in production if not fixed.`);
}
let isClick = null;
function inputNum(item) {
- formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:620", "item :>> ", item);
+ formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:673", "item :>> ", item);
if (isClick)
clearTimeout(isClick);
isClick = setTimeout(() => {
@@ -24613,6 +25029,7 @@ This will fail in production if not fixed.`);
item.enterNum = item.residueNumber;
if (item.enterNum <= 0)
item.enterNum = 0;
+ clearTimeout(isClick);
}, 200);
}
const {
@@ -24793,81 +25210,165 @@ This will fail in production if not fixed.`);
{ key: 0 },
vue.renderList(vue.unref(uplistarr), (item) => {
return vue.openBlock(), vue.createElementBlock("view", { class: "item1" }, [
- vue.unref(upshelfScanType) == 1 || vue.unref(upshelfScanType) == 2 ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 0,
- onClick: vue.withModifiers(item, ["stop"])
- }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/uoicondata2.png" }),
- vue.createElementVNode(
- "view",
- null,
- "合同号:" + vue.toDisplayString(item.orderCode),
- 1
- /* TEXT */
- )
- ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true),
- item.goodsType == 1 ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 1,
- class: "tpbx"
- }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/uoicondata2.png" }),
- vue.createElementVNode(
- "view",
- null,
- "运单号:" + vue.toDisplayString(item.waybillNo),
- 1
- /* TEXT */
- )
- ])) : vue.createCommentVNode("v-if", true),
- vue.unref(upshelfScanType) == 1 || vue.unref(upshelfScanType) == 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2 }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/uoicondata3.png" }),
- vue.createElementVNode("view", null, [
- vue.createTextVNode("上架数量:"),
- vue.createElementVNode(
- "text",
- { class: "numb" },
- vue.toDisplayString(item.enterNum),
- 1
- /* TEXT */
- )
- ])
- ])) : vue.createCommentVNode("v-if", true),
- vue.unref(upshelfScanType) == 3 || vue.unref(upshelfScanType) == 4 ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 3,
- onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
- }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/uoicondata2.png" }),
- vue.createElementVNode(
- "view",
- null,
- "合同号:" + vue.toDisplayString(item.orderCode),
- 1
- /* TEXT */
- )
- ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true),
- vue.unref(upshelfScanType) == 3 || vue.unref(upshelfScanType) == 4 ? (vue.openBlock(), vue.createElementBlock("view", { key: 4 }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/uoicondata3.png" }),
- vue.createElementVNode("view", null, [
- vue.createTextVNode("上架数量:"),
- vue.createElementVNode(
- "text",
- { class: "numb" },
- vue.toDisplayString(item.enterNum),
- 1
- /* TEXT */
- )
- ])
- ])) : vue.createCommentVNode("v-if", true)
- ]);
- }),
- 256
- /* UNKEYED_FRAGMENT */
- )) : vue.createCommentVNode("v-if", true),
- vue.unref(checkstate) == 2 ? (vue.openBlock(true), vue.createElementBlock(
- vue.Fragment,
- { key: 1 },
- vue.renderList(vue.unref(datalist), (item) => {
- return vue.openBlock(), vue.createElementBlock("view", { class: "item2" }, [
+ item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 0,
+ class: "tpbx"
+ }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "包条码:" + vue.toDisplayString(item.orderPackageCode),
+ 1
+ /* TEXT */
+ )
+ ])) : vue.createCommentVNode("v-if", true),
+ item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 1,
+ class: "tpbx",
+ onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
+ }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "订单号:" + vue.toDisplayString(item.orderCode),
+ 1
+ /* TEXT */
+ )
+ ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true),
+ vue.createCommentVNode(" 定制品 "),
+ item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ { key: 2 },
+ [
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "服务号:" + vue.toDisplayString(item.serviceNum),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", {
+ class: "tpbx",
+ onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
+ }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "订单号:" + vue.toDisplayString(item.orderCode),
+ 1
+ /* TEXT */
+ )
+ ], 8, ["onClick"])
+ ],
+ 64
+ /* STABLE_FRAGMENT */
+ )) : item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ { key: 3 },
+ [
+ vue.createCommentVNode(" 零担 "),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "运单号:" + vue.toDisplayString(item.waybillNo),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "订单号:" + vue.toDisplayString(item.orderCode),
+ 1
+ /* TEXT */
+ )
+ ])
+ ],
+ 64
+ /* STABLE_FRAGMENT */
+ )) : item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ { key: 4 },
+ [
+ vue.createCommentVNode(" 库存品 "),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "物料编码:" + vue.toDisplayString(item.materialCode),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "物料名称:" + vue.toDisplayString(item.materialName),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "订单号:" + vue.toDisplayString(item.orderCode || "暂无数据"),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createCommentVNode(` \r
+ \r
+ 商场名称:{{item.marketName || '暂无数据'}}\r
+ `),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "批次号:" + vue.toDisplayString(item.incomingBatch),
+ 1
+ /* TEXT */
+ )
+ ])
+ ],
+ 64
+ /* STABLE_FRAGMENT */
+ )) : vue.createCommentVNode("v-if", true),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "总包数:" + vue.toDisplayString(item.totalNumber),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]);
+ }),
+ 256
+ /* UNKEYED_FRAGMENT */
+ )) : vue.createCommentVNode("v-if", true),
+ vue.unref(checkstate) == 2 ? (vue.openBlock(true), vue.createElementBlock(
+ vue.Fragment,
+ { key: 1 },
+ vue.renderList(vue.unref(datalist), (item) => {
+ return vue.openBlock(), vue.createElementBlock("view", { class: "item2" }, [
item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
class: "tpbx"
@@ -25211,11 +25712,35 @@ This will fail in production if not fixed.`);
]),
vue.createElementVNode("view", { class: "type1s" }, [
vue.createElementVNode("view", null, [
- vue.createElementVNode("view", { class: "title" }, "运单号:"),
+ vue.createElementVNode("view", { class: "title" }, "物料编码:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.materialCode || "暂无数据"),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "type1s" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("view", { class: "title" }, "物料名称:"),
vue.createElementVNode(
"view",
null,
- vue.toDisplayString(item.waybillCode || "暂无数据"),
+ vue.toDisplayString(item.materialName || "暂无数据"),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "type1s" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("view", { class: "title" }, "批次号:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.incomingBatch || "暂无数据"),
1
/* TEXT */
)
@@ -25330,8 +25855,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesPeopleScanUpPeopleScanUp = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__file", "D:/worksp/logpm/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue"]]);
- const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesPeopleScanUpPeopleScanUp = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__file", "D:/worksp/logpm/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue"]]);
+ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
__name: "PickingScanList",
setup(__props) {
const { userInfo } = storeToRefs(useUserStore());
@@ -25349,11 +25874,11 @@ This will fail in production if not fixed.`);
details.stockupArea = op.stockupArea;
});
onShow(() => {
- formatAppLog("log", "at pagesHome/pages/PickingScanList/PickingScanList.vue:81", "onShow");
+ formatAppLog("log", "at pagesHome/pages/PickingScanList/PickingScanList.vue:87", "onShow");
initpage();
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/PickingScanList/PickingScanList.vue:85", code2);
+ formatAppLog("log", "at pagesHome/pages/PickingScanList/PickingScanList.vue:91", code2);
details.scancode = code2;
scandata();
}
@@ -25363,13 +25888,14 @@ This will fail in production if not fixed.`);
uni.$off("scancodedate");
});
async function showlist() {
+ utils.ttsspke("请选择备货区");
let list = [];
const user = userInfo.value;
let data = {
userId: user.user_id
};
let res = await distributionStockupgetStockupArea(data);
- formatAppLog("log", "at pagesHome/pages/PickingScanList/PickingScanList.vue:101", res);
+ formatAppLog("log", "at pagesHome/pages/PickingScanList/PickingScanList.vue:110", res);
if (res.code == 200) {
res.data.map((item) => {
list.push(item.headline);
@@ -25412,6 +25938,12 @@ This will fail in production if not fixed.`);
}
});
}
+ onPullDownRefresh(() => {
+ const timer = setTimeout(() => {
+ uni.stopPullDownRefresh();
+ clearTimeout(timer);
+ }, 1e3);
+ });
async function initpage() {
let data = {
stockupId: details.id
@@ -25440,7 +25972,7 @@ This will fail in production if not fixed.`);
stockupAreaCode: details.scancode
};
let res = await distributionStockupupdateStockArea(data);
- formatAppLog("log", "at pagesHome/pages/PickingScanList/PickingScanList.vue:182", "res", res);
+ formatAppLog("log", "at pagesHome/pages/PickingScanList/PickingScanList.vue:198", "res", res);
if (res.code === 200) {
initpage();
}
@@ -25579,6 +26111,16 @@ This will fail in production if not fixed.`);
1
/* TEXT */
)
+ ]),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("view", null, "已备数量"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.stockupNum || 0),
+ 1
+ /* TEXT */
+ )
])
])
])
@@ -25614,8 +26156,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesPickingScanListPickingScanList = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "D:/worksp/logpm/pagesHome/pages/PickingScanList/PickingScanList.vue"]]);
- const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesPickingScanListPickingScanList = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__file", "D:/worksp/logpm/pagesHome/pages/PickingScanList/PickingScanList.vue"]]);
+ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
__name: "Retention",
setup(__props) {
const details = vue.reactive({
@@ -25770,8 +26312,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesRetentionRetention = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "D:/worksp/logpm/pagesHome/pages/Retention/Retention.vue"]]);
- const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesRetentionRetention = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "D:/worksp/logpm/pagesHome/pages/Retention/Retention.vue"]]);
+ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
__name: "MergeTray",
setup(__props) {
const tip = vue.ref(null);
@@ -25797,9 +26339,11 @@ This will fail in production if not fixed.`);
}
});
});
- uni.$off("scancodedate");
+ onHide(() => {
+ uni.$off("scancodedate");
+ });
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
details.scantype = 1;
details.beilist = {};
details.newbeilist = {};
@@ -25808,6 +26352,7 @@ This will fail in production if not fixed.`);
details.mergeTray = "";
details.newmergeTray = "";
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
function setstate(state) {
@@ -26234,14 +26779,16 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesMergeTrayMergeTray = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "D:/worksp/logpm/pagesHome/pages/MergeTray/MergeTray.vue"]]);
- const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesMergeTrayMergeTray = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "D:/worksp/logpm/pagesHome/pages/MergeTray/MergeTray.vue"]]);
+ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
__name: "MergeTrayDetails",
setup(__props) {
let trayCode = vue.ref("");
let resdata = vue.ref({});
onLoad((op) => {
trayCode.value = op.tray;
+ });
+ onShow(() => {
init();
});
function goorderdetail(item) {
@@ -26341,46 +26888,178 @@ This will fail in production if not fixed.`);
)
])
]),
- item.orderCode ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 0,
- class: "topon2",
- onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
- }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/scanicon1.png" }),
- vue.createElementVNode(
- "view",
- null,
- "订单号:" + vue.toDisplayString(item.orderCode),
- 1
- /* TEXT */
- )
- ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true),
- item.code ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 1,
- class: "topon2"
- }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/scanicon1.png" }),
+ vue.createCommentVNode(" 定制品 "),
+ item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "服务号:" + vue.toDisplayString(item.serviceNum),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", {
+ class: "tpbx",
+ onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"])
+ }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "订单号:" + vue.toDisplayString(item.orderCode),
+ 1
+ /* TEXT */
+ )
+ ], 8, ["onClick"]),
+ vue.createCommentVNode(` \r
+ \r
+ 仓库地址:{{dtilobj.warehouseName}}\r
+ \r
+ \r
+ \r
+ 库位信息:{{dtilobj.areaTitle + '-' + dtilobj.allocationTitle}}\r
+ `),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum),
+ 1
+ /* TEXT */
+ )
+ ])
+ ])) : vue.createCommentVNode("v-if", true),
+ vue.createCommentVNode(" 零担 "),
+ item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, [
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "运单号:" + vue.toDisplayString(item.waybillNo),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "订单号:" + vue.toDisplayString(item.orderCode),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createCommentVNode(` \r
+ \r
+ 仓库地址:{{dtilobj.warehouseName}}\r
+ \r
+ \r
+ \r
+ 库位信息:{{dtilobj.areaTitle + '-' + dtilobj.allocationTitle}}\r
+ `),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum),
+ 1
+ /* TEXT */
+ )
+ ])
+ ])) : vue.createCommentVNode("v-if", true),
+ vue.createCommentVNode(" 库存品 "),
+ item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2 }, [
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "物料编码:" + vue.toDisplayString(item.materialCode),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "物料名称:" + vue.toDisplayString(item.materialName),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createCommentVNode(` \r
+ \r
+ 仓库地址:{{dtilobj.warehouseName}}\r
+ \r
+ \r
+ \r
+ 库位信息:{{dtilobj.areaTitle + '-' + dtilobj.allocationTitle}}\r
+ `),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "订单号:" + vue.toDisplayString(item.orderCode),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "商场名称:" + vue.toDisplayString(item.marketName),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "批次号:" + vue.toDisplayString(item.incomingBatch),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tpbx" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }),
+ vue.createElementVNode(
+ "view",
+ null,
+ "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum),
+ 1
+ /* TEXT */
+ )
+ ])
+ ])) : vue.createCommentVNode("v-if", true),
+ vue.createElementVNode("view", { class: "viewnum" }, [
vue.createElementVNode(
"view",
null,
- "包条码:" + vue.toDisplayString(item.code),
+ "总包数:" + vue.toDisplayString(item.totalNum),
1
/* TEXT */
- )
- ])) : vue.createCommentVNode("v-if", true),
- item.num ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 2,
- class: "topon2"
- }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/scanicon1.png" }),
+ ),
vue.createElementVNode(
"view",
null,
- "录入数量:" + vue.toDisplayString(item.num),
+ "已扫数量:" + vue.toDisplayString(item.shelfNum),
1
/* TEXT */
)
- ])) : vue.createCommentVNode("v-if", true)
+ ])
]);
}),
256
@@ -26395,8 +27074,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesMergeTrayDetailsMergeTrayDetails = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__file", "D:/worksp/logpm/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.vue"]]);
- const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesMergeTrayDetailsMergeTrayDetails = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "D:/worksp/logpm/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.vue"]]);
+ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
__name: "DownGoodsType",
setup(__props) {
let typelist = vue.ref([]);
@@ -26467,8 +27146,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesDownGoodsTypeDownGoodsType = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "D:/worksp/logpm/pagesHome/pages/DownGoodsType/DownGoodsType.vue"]]);
- const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesDownGoodsTypeDownGoodsType = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__file", "D:/worksp/logpm/pagesHome/pages/DownGoodsType/DownGoodsType.vue"]]);
+ const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
__name: "DownGoods",
setup(__props) {
const tiplists = vue.ref(null);
@@ -26490,7 +27169,7 @@ This will fail in production if not fixed.`);
checkmarkindex: 0,
allocaTitle: ""
});
- onLoad(async (op) => {
+ onLoad((op) => {
details.pageType = op.type;
if (op.type === "1")
utils.ttsspke(`当前下架方式为${op.pageName}, 请扫描下架的托盘`);
@@ -26505,9 +27184,9 @@ This will fail in production if not fixed.`);
details.typelist = ["订单号", "运单号"];
utils.ttsspke(`当前下架方式为${op.pageName}, 请录入订单号或运单号`);
}
- await initmarke();
});
- onShow(() => {
+ onShow(async () => {
+ await initmarke();
uni.$on("scancodedate", function(code2) {
if (code2) {
details.scancode = code2;
@@ -26519,7 +27198,7 @@ This will fail in production if not fixed.`);
uni.$off("scancodedate");
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
details.scancode = "";
details.datalist = [];
details.codelist = [];
@@ -26527,6 +27206,7 @@ This will fail in production if not fixed.`);
details.resdata = {};
details.allocaTitle = "";
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
function backun() {
@@ -26542,7 +27222,7 @@ This will fail in production if not fixed.`);
warehouseCode: "LQ"
};
let res = await warehouseTrayTypefindAllMarket(data);
- formatAppLog("log", "at pagesHome/pages/DownGoods/DownGoods.vue:372", res.data);
+ formatAppLog("log", "at pagesHome/pages/DownGoods/DownGoods.vue:373", res.data);
details.Marketlist = res.data;
}
vue.watchEffect(() => {
@@ -26690,7 +27370,7 @@ This will fail in production if not fixed.`);
res = await warehouseUpdownTypedownZeroOrder(data);
break;
}
- formatAppLog("log", "at pagesHome/pages/DownGoods/DownGoods.vue:529", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/DownGoods/DownGoods.vue:530", "res :>> ", res);
uni.hideLoading();
if (res.code == 200) {
uni.showToast({
@@ -27575,8 +28255,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesDownGoodsDownGoods = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "D:/worksp/logpm/pagesHome/pages/DownGoods/DownGoods.vue"]]);
- const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesDownGoodsDownGoods = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "D:/worksp/logpm/pagesHome/pages/DownGoods/DownGoods.vue"]]);
+ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
__name: "SetPrice",
setup(__props) {
let details = vue.reactive({
@@ -27600,9 +28280,10 @@ This will fail in production if not fixed.`);
init();
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
init();
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
const tiplists = vue.ref(null);
@@ -27624,8 +28305,7 @@ This will fail in production if not fixed.`);
});
}
function removeItem(_item) {
- formatAppLog("log", "at pagesHome/pages/SetPrice/SetPrice.vue:149", "_item :>> ", _item);
- formatAppLog("log", "at pagesHome/pages/SetPrice/SetPrice.vue:150", "tiplists :>> ", tiplists);
+ formatAppLog("log", "at pagesHome/pages/SetPrice/SetPrice.vue:158", "_item :>> ", _item);
tiplists.value.setdetails({
title: `确认取消该${details.priceType[Number(_item.addvalueId) - 1].typename}服务`,
isshow: true,
@@ -27634,7 +28314,24 @@ This will fail in production if not fixed.`);
inputtext: "",
confirmTxt: "确认取消",
isonecheck: true,
- success: (deta) => {
+ success: async () => {
+ const submitData = {
+ reservationId: details.items.id,
+ addvalueType: _item.addvalueId,
+ addvalueDetailId: _item.addvalueDetailId,
+ floolNum: "",
+ distance: "",
+ num: 0,
+ packageEntityList: []
+ };
+ const res = await addvalueupdateAddvalueInfo(submitData);
+ formatAppLog("log", "at pagesHome/pages/SetPrice/SetPrice.vue:178", "res :>> ", res);
+ if (res.code === 200)
+ uni.showToast({
+ title: "删除成功",
+ icon: "none"
+ });
+ init();
tiplists.value.setdetails({ isshow: false });
},
cancel: (details2) => {
@@ -27737,13 +28434,27 @@ This will fail in production if not fixed.`);
1
/* TEXT */
),
- vue.createElementVNode(
- "view",
- null,
- vue.toDisplayString(item.floolNum ? item.floolNum + " 楼" : item.distance && item.addvalueId == "2" ? item.distance + " km" : item.distance || " m"),
- 1
- /* TEXT */
- ),
+ vue.createElementVNode("view", null, [
+ item.floolNum ? (vue.openBlock(), vue.createElementBlock(
+ "text",
+ { key: 0 },
+ vue.toDisplayString(item.floolNum + " 楼"),
+ 1
+ /* TEXT */
+ )) : item.distance && item.addvalueId == "2" ? (vue.openBlock(), vue.createElementBlock(
+ "text",
+ { key: 1 },
+ vue.toDisplayString(item.distance + " km"),
+ 1
+ /* TEXT */
+ )) : item.distance ? (vue.openBlock(), vue.createElementBlock(
+ "text",
+ { key: 2 },
+ vue.toDisplayString(item.distance || " m"),
+ 1
+ /* TEXT */
+ )) : vue.createCommentVNode("v-if", true)
+ ]),
vue.createElementVNode(
"view",
null,
@@ -27843,8 +28554,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesSetPriceSetPrice = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__file", "D:/worksp/logpm/pagesHome/pages/SetPrice/SetPrice.vue"]]);
- const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesSetPriceSetPrice = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "D:/worksp/logpm/pagesHome/pages/SetPrice/SetPrice.vue"]]);
+ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
__name: "RemoveTray",
setup(__props) {
const tip = vue.ref(null);
@@ -27852,7 +28563,12 @@ This will fail in production if not fixed.`);
datalist: [],
scancode: "",
statetype: "",
- trayCodes: ""
+ trayCodes: "",
+ tabBarState: 1,
+ data: {},
+ orderList: [],
+ zeroList: [],
+ stockList: []
});
onLoad(() => {
utils.ttsspke("请扫描或输入需要空置的托盘");
@@ -27869,27 +28585,48 @@ This will fail in production if not fixed.`);
uni.$off("scancodedate");
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer = setTimeout(() => {
details.datalist = [];
details.trayCodes = "";
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
async function scandata() {
- var _a, _b, _c, _d;
- let data = {
+ let submitData = {
trayCode: details.scancode
};
- let res = await warehouseTrayTypetrayToNullScanTrayCode(data);
- if (res.code == 200) {
- formatAppLog("log", "at pagesHome/pages/RemoveTray/RemoveTray.vue:109", res);
- details.datalist = (_a = res.data) == null ? void 0 : _a.list;
- details.statetype = (_b = res.data) == null ? void 0 : _b.type;
- if (((_d = (_c = res.data) == null ? void 0 : _c.list) == null ? void 0 : _d.length) > 0) {
+ let res = await warehouseTrayTypetrayToNullScanTrayCode(submitData);
+ const { code: code2, data } = res;
+ if (code2 == 200) {
+ if (!data)
+ return;
+ formatAppLog("log", "at pagesHome/pages/RemoveTray/RemoveTray.vue:199", "res", res);
+ details.orderList = data.packageList;
+ details.zeroList = data.zeroList;
+ details.stockList = data.stockList;
+ if (details.tabBarState === 1)
+ details.datalist = details.orderList;
+ else if (details.tabBarState === 2)
+ details.datalist = details.zeroList;
+ else if (details.tabBarState === 3)
+ details.datalist = details.stockList;
+ formatAppLog("log", "at pagesHome/pages/RemoveTray/RemoveTray.vue:210", "details.datalist :>> ", details.datalist);
+ details.statetype = data.type;
+ if (details.orderList.length > 0 || details.zeroList.length > 0 || details.stockList.length > 0) {
details.trayCodes = details.scancode;
}
}
}
+ async function setTabBarState(state) {
+ details.tabBarState = state;
+ if (details.tabBarState === 1)
+ details.datalist = details.orderList;
+ else if (details.tabBarState === 2)
+ details.datalist = details.zeroList;
+ else if (details.tabBarState === 3)
+ details.datalist = details.stockList;
+ }
function removetray() {
tip.value.setdetails({
title: "提示",
@@ -27995,6 +28732,39 @@ This will fail in production if not fixed.`);
])
])
]),
+ vue.createCommentVNode(" tabBar "),
+ vue.createElementVNode("view", { class: "tabBar" }, [
+ vue.createElementVNode(
+ "view",
+ {
+ class: vue.normalizeClass({ "tabBar_item": true, "active": vue.unref(details).tabBarState === 1 }),
+ onClick: _cache[1] || (_cache[1] = ($event) => setTabBarState(1))
+ },
+ " 订制品 ",
+ 2
+ /* CLASS */
+ ),
+ vue.createElementVNode(
+ "view",
+ {
+ class: vue.normalizeClass({ "tabBar_item": true, "active": vue.unref(details).tabBarState === 2 }),
+ onClick: _cache[2] || (_cache[2] = ($event) => setTabBarState(2))
+ },
+ " 零担 ",
+ 2
+ /* CLASS */
+ ),
+ vue.createElementVNode(
+ "view",
+ {
+ class: vue.normalizeClass({ "tabBar_item": true, "active": vue.unref(details).tabBarState === 3 }),
+ onClick: _cache[3] || (_cache[3] = ($event) => setTabBarState(3))
+ },
+ " 库存品 ",
+ 2
+ /* CLASS */
+ )
+ ]),
vue.createElementVNode("scroll-view", {
class: "scvmabx",
"scroll-y": "true"
@@ -28004,88 +28774,234 @@ This will fail in production if not fixed.`);
vue.Fragment,
null,
vue.renderList(vue.unref(datalist), (item) => {
- return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [
- vue.createElementVNode("view", { class: "tophd1" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode("image", { src: "/pagesHome/static/topicons.png" }),
- vue.createCommentVNode(" "),
- vue.createCommentVNode(" {{item.dataCode}} "),
- vue.createElementVNode(
- "view",
- {
- style: vue.normalizeStyle(item.isFleeing ? "color: #ff0000;" : "")
- },
- vue.toDisplayString(item.dataCode) + vue.toDisplayString(item.isFleeing ? "(窜)" : ""),
- 5
- /* TEXT, STYLE */
- )
- ])
- ]),
- item.dataName ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 0,
- class: "tophd"
- }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/uname.png" }),
- vue.createElementVNode("view", null, "物料名称:"),
- vue.createElementVNode(
- "view",
- null,
- vue.toDisplayString(item.dataName),
- 1
- /* TEXT */
- )
- ])) : vue.createCommentVNode("v-if", true),
- item.sku ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 1,
- class: "tophd"
- }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/uname.png" }),
- vue.createElementVNode("view", null, "SKU:"),
- vue.createElementVNode(
- "view",
- null,
- vue.toDisplayString(item.sku),
- 1
- /* TEXT */
- )
- ])) : vue.createCommentVNode("v-if", true),
- item.cargoUnit ? (vue.openBlock(), vue.createElementBlock("view", {
- key: 2,
- class: "tophd"
- }, [
- vue.createElementVNode("image", { src: "/pagesHome/static/uname.png" }),
- vue.createElementVNode("view", null, "物料单位:"),
- vue.createElementVNode(
- "view",
- null,
- vue.toDisplayString(item.cargoUnit),
- 1
- /* TEXT */
- )
- ])) : vue.createCommentVNode("v-if", true),
- vue.createElementVNode("view", { class: "numbxvie" }, [
- vue.createElementVNode("view", null, [
- vue.createElementVNode(
- "view",
- { class: "zhon" },
- vue.toDisplayString(item.orderTotalNum),
- 1
- /* TEXT */
- ),
- vue.createElementVNode("view", null, "在库数")
- ]),
- vue.createElementVNode("view", null, [
- vue.createElementVNode(
- "view",
- { class: "yish" },
- vue.toDisplayString(item.scanNum),
- 1
- /* TEXT */
- ),
- vue.createElementVNode("view", null, "在托数")
- ])
- ])
- ]);
+ return vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ [
+ vue.createCommentVNode(" 定制品 "),
+ vue.unref(details).tabBarState === 1 ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 0,
+ class: "items"
+ }, [
+ vue.createElementVNode("view", {
+ class: "tophd",
+ onClick: _cache[4] || (_cache[4] = vue.withModifiers(() => {
+ }, ["stop", "prevent"]))
+ }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/topicons.png" }),
+ vue.createElementVNode("view", null, "订单号:"),
+ vue.createElementVNode(
+ "view",
+ {
+ style: vue.normalizeStyle(item.isFleeing ? "color: #ff0000;" : "")
+ },
+ vue.toDisplayString(item.dataCode) + vue.toDisplayString(item.isFleeing ? "(窜)" : ""),
+ 5
+ /* TEXT, STYLE */
+ )
+ ]),
+ vue.createElementVNode("view", {
+ class: "tophd",
+ onClick: _cache[5] || (_cache[5] = vue.withModifiers(() => {
+ }, ["stop", "prevent"]))
+ }, [
+ vue.createElementVNode("view", null, "服务号:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.serviceNumber),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "numbxvie" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode(
+ "view",
+ { class: "zhon" },
+ vue.toDisplayString(item.orderTotalNum),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode("view", null, "总数")
+ ]),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode(
+ "view",
+ { class: "yish" },
+ vue.toDisplayString(item.scanNum),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode("view", null, "已扫")
+ ]),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode(
+ "view",
+ { class: "weish" },
+ vue.toDisplayString(item.orderTotalNum - item.scanNum),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode("view", null, "未扫")
+ ])
+ ]),
+ item.orderTotalNum != item.scanNum ? (vue.openBlock(), vue.createElementBlock("image", {
+ key: 0,
+ class: "weiqt",
+ src: "/pagesHome/static/weiqitao.png"
+ })) : (vue.openBlock(), vue.createElementBlock("image", {
+ key: 1,
+ class: "qitao",
+ src: "/pagesHome/static/qitao.png"
+ }))
+ ])) : vue.createCommentVNode("v-if", true),
+ vue.createCommentVNode(" 零担 "),
+ vue.unref(details).tabBarState === 2 ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 1,
+ class: "items"
+ }, [
+ vue.createElementVNode("view", {
+ class: "tophd",
+ onClick: _cache[6] || (_cache[6] = vue.withModifiers(() => {
+ }, ["stop", "prevent"]))
+ }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/topicons.png" }),
+ vue.createElementVNode("view", null, "订单号:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.dataCode),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", {
+ class: "tophd",
+ onClick: _cache[7] || (_cache[7] = vue.withModifiers(() => {
+ }, ["stop", "prevent"]))
+ }, [
+ vue.createElementVNode("view", null, "运单号:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.waybillNo),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "numbxvie" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode(
+ "view",
+ { class: "zhon" },
+ vue.toDisplayString(item.orderTotalNum),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode("view", null, "总数")
+ ]),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode(
+ "view",
+ { class: "yish" },
+ vue.toDisplayString(item.scanNum),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode("view", null, "打托数量")
+ ])
+ ])
+ ])) : vue.createCommentVNode("v-if", true),
+ vue.createCommentVNode(" 库存品 "),
+ vue.unref(details).tabBarState === 3 ? (vue.openBlock(), vue.createElementBlock("view", {
+ key: 2,
+ class: "items"
+ }, [
+ vue.createElementVNode("view", { class: "tophd1" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/topicons.png" }),
+ vue.createElementVNode("view", null, "订单号:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.dataCode),
+ 1
+ /* TEXT */
+ )
+ ])
+ ]),
+ vue.createElementVNode("view", { class: "tophd" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/uname.png" }),
+ vue.createElementVNode("view", null, "物料名称:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.dataName),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tophd" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/uname.png" }),
+ vue.createElementVNode("view", null, "批次号:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.incomingBatch),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tophd" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/uname.png" }),
+ vue.createElementVNode("view", null, "SKU:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.sku),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "tophd" }, [
+ vue.createElementVNode("image", { src: "/pagesHome/static/uname.png" }),
+ vue.createElementVNode("view", null, "物料单位:"),
+ vue.createElementVNode(
+ "view",
+ null,
+ vue.toDisplayString(item.cargoUnit),
+ 1
+ /* TEXT */
+ )
+ ]),
+ vue.createElementVNode("view", { class: "numbxvie" }, [
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode(
+ "view",
+ { class: "zhon" },
+ vue.toDisplayString(item.orderTotalNum || 0),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode("view", null, "在库数")
+ ]),
+ vue.createElementVNode("view", null, [
+ vue.createElementVNode(
+ "view",
+ { class: "yish" },
+ vue.toDisplayString(item.scanNum || 0),
+ 1
+ /* TEXT */
+ ),
+ vue.createElementVNode("view", null, "已扫")
+ ])
+ ])
+ ])) : vue.createCommentVNode("v-if", true)
+ ],
+ 64
+ /* STABLE_FRAGMENT */
+ );
}),
256
/* UNKEYED_FRAGMENT */
@@ -28114,8 +29030,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesRemoveTrayRemoveTray = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "D:/worksp/logpm/pagesHome/pages/RemoveTray/RemoveTray.vue"]]);
- const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesRemoveTrayRemoveTray = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-8dd39525"], ["__file", "D:/worksp/logpm/pagesHome/pages/RemoveTray/RemoveTray.vue"]]);
+ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
__name: "Check",
setup(__props) {
vue.reactive({});
@@ -28133,8 +29049,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesCheckCheck = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__file", "D:/worksp/logpm/pagesHome/pages/Check/Check.vue"]]);
- const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesCheckCheck = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "D:/worksp/logpm/pagesHome/pages/Check/Check.vue"]]);
+ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
__name: "createAddServe",
setup(__props) {
const tiplists = vue.ref(null);
@@ -28158,9 +29074,10 @@ This will fail in production if not fixed.`);
scancode: "",
deliveryId: "",
editId: "",
- addvalueType: ""
+ addvalueType: "",
+ addvalueDetailId: ""
});
- onLoad(async (op) => {
+ onLoad((op) => {
details.reservationId = op.reservationId;
details.deliveryId = op.deliveryId;
details.editId = op.editId;
@@ -28168,21 +29085,24 @@ This will fail in production if not fixed.`);
if (details.addvalueType) {
details.typestate = Number(details.addvalueType);
}
- await getallpack();
- init();
});
function goorderdetail(item) {
uni.navigateTo({
url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode
});
}
- onShow(() => {
+ onShow(async () => {
uni.$on("scancodedate", function(code2) {
if (code2) {
details.scancode = code2;
scandata();
}
});
+ if (details.editId) {
+ await getallpack();
+ await init();
+ } else
+ await getallpack();
});
onHide(() => {
uni.$off("scancodedate");
@@ -28196,12 +29116,15 @@ This will fail in production if not fixed.`);
addvalueType: details.addvalueType
};
let res = await addvalueeditAddvalueInfo(data);
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:202", res);
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:203", "details.allpack :>> ", details.allpack);
+ formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:208", res);
+ formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:209", "details.allpack :>> ", details.allpack);
+ if (res.data.addvalueDetailId) {
+ details.addvalueDetailId = res.data.addvalueDetailId;
+ }
if (res.data.addvalueId) {
details.checkserveindex = Number(res.data.addvalueId) - 1;
}
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:207", details.checkserveindex);
+ formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:216", details.checkserveindex);
if (res.data.floolNum) {
details.floor = res.data.floolNum;
}
@@ -28209,13 +29132,12 @@ This will fail in production if not fixed.`);
details.distance = res.data.distance;
}
if (res.data.isAll === 1) {
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:215", "222 :>> ", 222);
details.typestate = 1;
} else {
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:218", "111 :>> ", 111);
details.typestate = 2;
details.scanpack = res.data.packageEntityList;
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:221", "details.scanpack :>> ", details.scanpack);
+ formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:228", "details.scanpack :>> ", details.scanpack);
+ details.scanpack.forEach((val) => val.zeroQuantity = val.quantity);
}
}
async function scandata(isManual) {
@@ -28263,9 +29185,17 @@ This will fail in production if not fixed.`);
details[uname] = value;
}
async function submitpackge() {
- if (details.editId) {
+ let response = null;
+ if (details.editId)
+ response = await handleEditSubmit();
+ else
+ response = await handleNewSubmit();
+ formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:297", "res >>", response);
+ if (response.code !== 200)
return;
- }
+ uni.navigateBack();
+ }
+ async function handleNewSubmit() {
if ((details.checkserve == 2 || details.checkserve == 3) && !details.distance) {
uni.showToast({
title: "请输入距离",
@@ -28290,13 +29220,46 @@ This will fail in production if not fixed.`);
if (details.typestate == 2) {
data.packageEntityList = details.scanpack;
} else {
- data.packageEntityList.forEach((val) => val.zeroQuantity = val.quantity);
+ data.packageEntityList.forEach((val) => {
+ if (Number(val.conditions) === 3) {
+ val.zeroQuantity = val.maxQuantity;
+ val.quantity = val.maxQuantity;
+ }
+ });
}
let response = await addvaluesaveAddvalueInfo(data);
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:317", response);
- if (response.code !== 200)
+ return response;
+ }
+ async function handleEditSubmit() {
+ if ((details.checkserve == 2 || details.checkserve == 3) && !details.distance) {
+ uni.showToast({
+ title: "请输入距离",
+ icon: "none"
+ });
return;
- uni.navigateBack();
+ } else if (details.checkserve == 1 && !details.floor) {
+ uni.showToast({
+ title: "请输入楼层数",
+ icon: "none"
+ });
+ return;
+ }
+ let data = {
+ addvalueType: details.checkserve,
+ floolNum: details.checkserve == 1 ? details.floor : "",
+ distance: details.checkserve != 1 ? details.distance : "",
+ num: details.allpack.length,
+ reservationId: details.reservationId,
+ packageEntityList: details.allpack,
+ addvalueDetailId: details.addvalueDetailId
+ };
+ if (details.typestate == 2) {
+ data.packageEntityList = details.scanpack;
+ } else {
+ data.packageEntityList.forEach((val) => val.zeroQuantity = val.quantity);
+ }
+ const response = await addvalueupdateAddvalueInfo(data);
+ return response;
}
function showlist() {
let list = [];
@@ -28340,7 +29303,7 @@ This will fail in production if not fixed.`);
packageListIds: []
};
let response = await addvaluegetAllPackageList(data);
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:364", "response :>> ", response);
+ formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:418", "response :>> ", response);
details.allpack = response.data;
details.scanpack = [];
details.allpack.forEach((val) => {
@@ -28349,7 +29312,7 @@ This will fail in production if not fixed.`);
details.scanpack.push(val);
}
});
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:373", "details.scanpack :>> ", details.scanpack);
+ formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:427", "details.scanpack :>> ", details.scanpack);
return response;
}
let timer = null;
@@ -28357,13 +29320,16 @@ This will fail in production if not fixed.`);
if (timer)
clearTimeout(timer);
timer = setTimeout(() => {
- formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:384", "item :>> ", item);
+ formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:438", "item :>> ", item);
let _value = parseInt(item.zeroQuantity);
if (_value < 0)
_value = 0;
- else if (_value > item.quantity)
- _value = item.quantity;
+ else if (_value > item.maxQuantity)
+ _value = item.maxQuantity;
+ else if (_value !== _value)
+ _value = 0;
item.zeroQuantity = _value;
+ clearTimeout(timer);
}, 200);
}
const {
@@ -28573,7 +29539,7 @@ This will fail in production if not fixed.`);
vue.createElementVNode(
"view",
null,
- "总数:" + vue.toDisplayString(item.quantity),
+ "总数:" + vue.toDisplayString(item.maxQuantity),
1
/* TEXT */
)
@@ -28630,7 +29596,7 @@ This will fail in production if not fixed.`);
[
vue.createCommentVNode(" 零担 "),
vue.createElementVNode("view", { style: { "display": "flex" } }, [
- vue.createElementVNode("view", null, "总数:"),
+ vue.createElementVNode("view", null, "数量:"),
vue.withDirectives(vue.createElementVNode("input", {
type: "number",
"onUpdate:modelValue": ($event) => item.zeroQuantity = $event,
@@ -28656,6 +29622,7 @@ This will fail in production if not fixed.`);
/* UNKEYED_FRAGMENT */
)) : vue.createCommentVNode("v-if", true)
]),
+ vue.createCommentVNode(" 提交增值服务 "),
vue.createElementVNode("view", {
class: "submitqrs",
onClick: submitpackge
@@ -28678,8 +29645,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesCreateAddServeCreateAddServe = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-fee6bcca"], ["__file", "D:/worksp/logpm/pagesHome/pages/createAddServe/createAddServe.vue"]]);
- const _sfc_main$o = {};
+ const PagesHomePagesCreateAddServeCreateAddServe = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-fee6bcca"], ["__file", "D:/worksp/logpm/pagesHome/pages/createAddServe/createAddServe.vue"]]);
+ const _sfc_main$p = {};
function _sfc_render$6(_ctx, _cache) {
const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0);
return vue.openBlock(), vue.createBlock(_component_u_navbar, {
@@ -28692,8 +29659,8 @@ This will fail in production if not fixed.`);
leftIconSize: "35"
});
}
- const PagesHomePagesOrderDetailOrderDetail = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["render", _sfc_render$6], ["__file", "D:/worksp/logpm/pagesHome/pages/orderDetail/orderDetail.vue"]]);
- const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesOrderDetailOrderDetail = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["render", _sfc_render$6], ["__file", "D:/worksp/logpm/pagesHome/pages/orderDetail/orderDetail.vue"]]);
+ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
__name: "RelocationAllocationId",
setup(__props) {
const tip = vue.ref(null);
@@ -29252,8 +30219,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesRelocationAllocationIdRelocationAllocationId = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "D:/worksp/logpm/pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue"]]);
- const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesRelocationAllocationIdRelocationAllocationId = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__file", "D:/worksp/logpm/pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue"]]);
+ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
__name: "orderDetails",
setup(__props) {
let tip = vue.ref(null);
@@ -29275,6 +30242,8 @@ This will fail in production if not fixed.`);
onLoad((op) => {
details.orderCode = op.orderCode;
formatAppLog("log", "at pagesHome/pages/orderDetails/orderDetails.vue:159", "details.orderCode", details.orderCode);
+ });
+ onShow(() => {
initpage();
});
async function initpage() {
@@ -29517,7 +30486,7 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesOrderDetailsOrderDetails = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__file", "D:/worksp/logpm/pagesHome/pages/orderDetails/orderDetails.vue"]]);
+ const PagesHomePagesOrderDetailsOrderDetails = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "D:/worksp/logpm/pagesHome/pages/orderDetails/orderDetails.vue"]]);
const props$2 = {
props: {
// checkbox的名称
@@ -29587,7 +30556,7 @@ This will fail in production if not fixed.`);
}
}
};
- const _sfc_main$l = {
+ const _sfc_main$m = {
name: "u-checkbox",
mixins: [mpMixin$1, mixin$1, props$2],
data() {
@@ -29798,7 +30767,7 @@ This will fail in production if not fixed.`);
/* CLASS, STYLE */
);
}
- const __easycom_1 = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["render", _sfc_render$5], ["__scopeId", "data-v-41713600"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-checkbox/u-checkbox.vue"]]);
+ const __easycom_1 = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["render", _sfc_render$5], ["__scopeId", "data-v-41713600"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-checkbox/u-checkbox.vue"]]);
const props$1 = {
props: {
// 标识符
@@ -29878,7 +30847,7 @@ This will fail in production if not fixed.`);
}
}
};
- const _sfc_main$k = {
+ const _sfc_main$l = {
name: "u-checkbox-group",
mixins: [mpMixin$1, mixin$1, props$1],
computed: {
@@ -29950,8 +30919,8 @@ This will fail in production if not fixed.`);
/* CLASS */
);
}
- const __easycom_2 = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["render", _sfc_render$4], ["__scopeId", "data-v-ff0492f0"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-checkbox-group/u-checkbox-group.vue"]]);
- const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
+ const __easycom_2 = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["render", _sfc_render$4], ["__scopeId", "data-v-ff0492f0"], ["__file", "D:/worksp/logpm/uni_modules/uview-plus/components/u-checkbox-group/u-checkbox-group.vue"]]);
+ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
__name: "orderInquiry",
setup(__props) {
const isShowTypeList = vue.ref(false);
@@ -30001,11 +30970,12 @@ This will fail in production if not fixed.`);
uni.$off("scancodedate");
});
onPullDownRefresh(() => {
- setTimeout(() => {
+ const timer2 = setTimeout(() => {
dataInfo.value = {};
scancode.value = "";
packageList.value = [];
uni.stopPullDownRefresh();
+ clearTimeout(timer2);
}, 1e3);
});
function handleSearchFormType(type) {
@@ -30039,7 +31009,7 @@ This will fail in production if not fixed.`);
if (val.id === item.id)
val.isChecked = !val.isChecked;
});
- formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:291", packageList.value);
+ formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:292", packageList.value);
};
function batchOperationBtn() {
isBatchOperation.value = true;
@@ -30064,7 +31034,7 @@ This will fail in production if not fixed.`);
});
const res = await BatchPrintPackages(ids);
const { code: code2, data } = res;
- formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:322", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:323", "res :>> ", res);
tiplists.value.setdetails({
title: "请选择需要打印的包条码",
isshow: true,
@@ -30074,7 +31044,7 @@ This will fail in production if not fixed.`);
confirmTxt: "确认选择",
isonecheck: true,
success: () => {
- formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:339", "data :>> ", data);
+ formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:340", "data :>> ", data);
data.map((item) => {
let text = "! 0 200 200 330 1\r\n";
text += "SETBOLD 1\r\n";
@@ -30105,9 +31075,9 @@ This will fail in production if not fixed.`);
text += "FORM\r\n";
text += "PRINT\r\n";
let sylist = utils.initbl();
- formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:363", sylist);
+ formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:364", sylist);
sylist.map((item2) => {
- formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:365", item2);
+ formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:366", item2);
if (item2.uuids) {
utils.getbl(item2, text);
}
@@ -30125,7 +31095,7 @@ This will fail in production if not fixed.`);
}
let timer;
vue.watch([scancode], (newVal, oldVal) => {
- formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:387", "newVal :>> ", newVal);
+ formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:388", "newVal :>> ", newVal);
if (newVal[0] === oldVal[0])
return;
if (timer)
@@ -30135,10 +31105,11 @@ This will fail in production if not fixed.`);
let res = await distributionOrderInFuzzyQuery(searchForm);
isShowOrderList.value = true;
const { code: code2, data } = res;
- formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:398", "res :>> ", res);
+ formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:399", "res :>> ", res);
if (code2 === 200) {
distributionOrderList.value = data;
}
+ clearTimeout(timer);
}, 1e3);
});
return (_ctx, _cache) => {
@@ -30537,8 +31508,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesOrderInquiryOrderInquiry = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-e1375c52"], ["__file", "D:/worksp/logpm/pagesHome/pages/orderInquiry/orderInquiry.vue"]]);
- const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesOrderInquiryOrderInquiry = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-e1375c52"], ["__file", "D:/worksp/logpm/pagesHome/pages/orderInquiry/orderInquiry.vue"]]);
+ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
__name: "CustomerTrayDetails",
setup(__props) {
const utils2 = vue.inject("utils");
@@ -30914,8 +31885,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesCustomerTrayDetailsCustomerTrayDetails = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue"]]);
- const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
+ const PagesHomePagesCustomerTrayDetailsCustomerTrayDetails = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue"]]);
+ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
__name: "StockUpListZero",
setup(__props) {
const util = vue.inject("utils");
@@ -30954,14 +31925,19 @@ This will fail in production if not fixed.`);
details.pallet = op.pallet;
details.orderCode = op.orderCode;
details.typeService = op.typeService;
- initpage();
+ });
+ onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesHome/pages/StockUpListZero/StockUpListZero.vue:126", code2);
+ formatAppLog("log", "at pagesHome/pages/StockUpListZero/StockUpListZero.vue:127", code2);
details.scancode = code2;
scandata();
}
});
+ initpage();
+ });
+ onHide(() => {
+ uni.$off("scancodedate");
});
function goorderdetail(item) {
uni.navigateTo({
@@ -31000,7 +31976,7 @@ This will fail in production if not fixed.`);
typeService: details.typeService
};
let res = await distributionStockupstockupScan(data);
- formatAppLog("log", "at pagesHome/pages/StockUpListZero/StockUpListZero.vue:169", res);
+ formatAppLog("log", "at pagesHome/pages/StockUpListZero/StockUpListZero.vue:174", res);
if (res.code == 200) {
details.isscan = true;
initpage();
@@ -31020,7 +31996,7 @@ This will fail in production if not fixed.`);
typeService: details.typeService
};
let response = await distributionStockuporderInfo(data);
- formatAppLog("log", "at pagesHome/pages/StockUpListZero/StockUpListZero.vue:189", response);
+ formatAppLog("log", "at pagesHome/pages/StockUpListZero/StockUpListZero.vue:194", response);
details.dataList = response.data.packageList;
details.customer = response.data.customer;
details.stockupArea = response.data.stockupArea;
@@ -31186,8 +32162,8 @@ This will fail in production if not fixed.`);
};
}
});
- const PagesHomePagesStockUpListZeroStockUpListZero = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUpListZero/StockUpListZero.vue"]]);
- const _sfc_main$g = {};
+ const PagesHomePagesStockUpListZeroStockUpListZero = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "D:/worksp/logpm/pagesHome/pages/StockUpListZero/StockUpListZero.vue"]]);
+ const _sfc_main$h = {};
function _sfc_render$3(_ctx, _cache) {
const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0);
return vue.openBlock(), vue.createElementBlock(
@@ -31209,7 +32185,115 @@ This will fail in production if not fixed.`);
/* STABLE_FRAGMENT */
);
}
- const PagesUserPagesAboutAbout = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["render", _sfc_render$3], ["__file", "D:/worksp/logpm/pagesUser/pages/about/about.vue"]]);
+ const PagesUserPagesAboutAbout = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["render", _sfc_render$3], ["__file", "D:/worksp/logpm/pagesUser/pages/about/about.vue"]]);
+ const usePdaStore = defineStore("usePdaStore", () => {
+ const pdaBroadcastList = vue.reactive({
+ "newPdaVersion": {
+ title: "新版本",
+ // 广播动作
+ broadcastAction: "com.android.server.scannerservice.broadcast",
+ // 广播标签
+ broadcastTag: "scannerdata"
+ },
+ "oldPdaVersion": {
+ title: "老版本",
+ // 广播动作
+ broadcastAction: "android.intent.ACTION_DECODE_DATA",
+ // 广播标签
+ broadcastTag: "barcode_string"
+ }
+ });
+ const pdaBroadcas = vue.reactive({
+ broadcastAction: "com.android.server.scannerservice.broadcast",
+ // 广播标签
+ broadcastTag: "scannerdata"
+ });
+ const HANDLE_PDABROADCAS = (choosePda) => {
+ pdaBroadcas.broadcastAction = pdaBroadcastList[choosePda].broadcastAction;
+ pdaBroadcas.broadcastTag = pdaBroadcastList[choosePda].broadcastTag;
+ formatAppLog("log", "at store/uaePdaStore.js:41", "pdaBroadcas :>> ", pdaBroadcas);
+ };
+ return {
+ pdaBroadcastList,
+ pdaBroadcas,
+ HANDLE_PDABROADCAS
+ };
+ });
+ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
+ __name: "systemSettings",
+ setup(__props) {
+ const { HANDLE_PDABROADCAS } = usePdaStore();
+ onPullDownRefresh(() => {
+ const timer = setTimeout(() => {
+ uni.stopPullDownRefresh();
+ clearTimeout(timer);
+ }, 1e3);
+ });
+ const details = vue.reactive({
+ pda: {
+ // pda版本列表
+ padVersionList: [
+ { title: "新版本", value: "newPdaVersion" },
+ { title: "老版本", value: "oldPdaVersion" }
+ ],
+ // 选中的索引
+ pdaChooseIndex: 0
+ }
+ });
+ vue.reactive(["中国", "美国", "巴西", "日本"]);
+ vue.ref(0);
+ function bindPickerChange(e) {
+ formatAppLog("log", "at pagesUser/pages/systemSettings/systemSettings.vue:54", "picker发送选择改变,携带值为", e.detail.value);
+ pda.value.pdaChooseIndex = e.detail.value;
+ HANDLE_PDABROADCAS(details.pda.padVersionList[details.pda.pdaChooseIndex].value);
+ }
+ const { pda } = vue.toRefs(details);
+ return (_ctx, _cache) => {
+ const _component_u_navbar = resolveEasycom(vue.resolveDynamicComponent("u-navbar"), __easycom_0);
+ return vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ [
+ vue.createVNode(_component_u_navbar, {
+ title: "系统设置",
+ bgColor: "#D3832A",
+ leftIconColor: "#ffffff",
+ titleStyle: "color:#ffffff",
+ placeholder: "",
+ autoBack: true,
+ leftIconSize: "35"
+ }),
+ vue.createElementVNode("view", { class: "uni-list" }, [
+ vue.createElementVNode("view", {
+ class: "uni-list-cell",
+ style: { "display": "flex" }
+ }, [
+ vue.createElementVNode("view", { class: "uni-list-cell-left" }, " 扫描版本选择 "),
+ vue.createElementVNode("view", { class: "uni-list-cell-db" }, [
+ vue.createElementVNode("picker", {
+ onChange: bindPickerChange,
+ value: vue.unref(pda).pdaChooseIndex,
+ range: vue.unref(pda).padVersionList.map((val) => val.title)
+ }, [
+ vue.createElementVNode(
+ "view",
+ { class: "uni-input" },
+ vue.toDisplayString(vue.unref(pda).padVersionList.map((val) => val.title)[vue.unref(pda).pdaChooseIndex]),
+ 1
+ /* TEXT */
+ )
+ ], 40, ["value", "range"])
+ ])
+ ])
+ ])
+ ],
+ 64
+ /* STABLE_FRAGMENT */
+ );
+ };
+ }
+ });
+ const PagesUserPagesSystemSettingsSystemSettings = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__file", "D:/worksp/logpm/pagesUser/pages/systemSettings/systemSettings.vue"]]);
const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
__name: "dynamicCheck",
setup(__props) {
@@ -31253,8 +32337,9 @@ This will fail in production if not fixed.`);
details.isEnd = false;
details.renderList = [];
await initPage();
- setTimeout(() => {
+ const timer = setTimeout(() => {
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
const goCheckList = (pageType, item) => {
@@ -31283,10 +32368,10 @@ This will fail in production if not fixed.`);
async function initPage() {
try {
const res = await getWarehouseTask({ ...details.page });
- formatAppLog("log", "at pagesTask/pages/dynamicCheck/dynamicCheck.vue:198", "res :>> ", res);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheck/dynamicCheck.vue:199", "res :>> ", res);
const { code: code2, data: { records } } = res;
if (code2 === 200 && res.data) {
- formatAppLog("log", "at pagesTask/pages/dynamicCheck/dynamicCheck.vue:201", "records :>> ", records);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheck/dynamicCheck.vue:202", "records :>> ", records);
details.renderList = [...details.renderList, ...records];
details.renderList.forEach((item) => {
item.marketName = item.list.map((val) => val.refName).join(",");
@@ -31301,7 +32386,7 @@ This will fail in production if not fixed.`);
}
return code2;
} catch (error2) {
- formatAppLog("log", "at pagesTask/pages/dynamicCheck/dynamicCheck.vue:219", "error :>> ", error2);
+ formatAppLog("log", "at pagesTask/pages/dynamicCheck/dynamicCheck.vue:220", "error :>> ", error2);
}
}
const { renderList, isEnd } = vue.toRefs(details);
@@ -31482,6 +32567,15 @@ This will fail in production if not fixed.`);
if (details.pageType === 3) {
infodata.value = data;
}
+ });
+ onShow(() => {
+ uni.$on("scancodedate", function(code2) {
+ if (code2) {
+ formatAppLog("log", "at pagesTask/pages/checkTaskList/checkTaskList.vue:227", "code :>> ", code2);
+ details.scancode = code2;
+ scandata();
+ }
+ });
if (details.pageType === 1)
details.isscan = false;
initPage();
@@ -31494,15 +32588,6 @@ This will fail in production if not fixed.`);
else if (details.pageType === 4)
return utils.ttsspke("请扫描托盘");
});
- onShow(() => {
- uni.$on("scancodedate", function(code2) {
- if (code2) {
- formatAppLog("log", "at pagesTask/pages/checkTaskList/checkTaskList.vue:238", "code :>> ", code2);
- details.scancode = code2;
- scandata();
- }
- });
- });
onHide(() => {
uni.$off("scancodedate");
});
@@ -31530,9 +32615,10 @@ This will fail in production if not fixed.`);
details.page.current = 1;
details.isEnd = false;
details.renderList = [];
- setTimeout(async () => {
+ const timer = setTimeout(async () => {
await initPage();
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
async function initPage() {
@@ -32433,9 +33519,6 @@ This will fail in production if not fixed.`);
details.questId = info.questId;
formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:385", "info :>> ", info.marketName);
details.marketName = JSON.parse(info.marketName);
- initArticle();
- initZero();
- initStock();
});
onShow(() => {
uni.$on("scancodedate", function(code2) {
@@ -32446,6 +33529,9 @@ This will fail in production if not fixed.`);
scandata();
}
});
+ initArticle();
+ initZero();
+ initStock();
});
onHide(() => {
uni.$off("scancodedate");
@@ -32470,7 +33556,7 @@ This will fail in production if not fixed.`);
};
try {
const res = await getWarehouseTaskAllocationDetailByStrip(submitData);
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:472", "res :>>1 ", res);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:473", "res :>>1 ", res);
const { code: code2, data } = res;
if (code2 === 200) {
article.total = data.allNum;
@@ -32481,7 +33567,7 @@ This will fail in production if not fixed.`);
article.articleCheckList = data.list.map(() => false);
}
} catch (err) {
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:484", "err :>> ", err);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:485", "err :>> ", err);
}
}
async function initZero() {
@@ -32494,7 +33580,7 @@ This will fail in production if not fixed.`);
};
try {
const res = await getallocationDetailByZeroWaList(submitData);
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:504", "res :>>0蛋 ", res);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:505", "res :>>0蛋 ", res);
const { code: code2, data } = res;
if (code2 === 200) {
zero.total = data.allNum;
@@ -32505,7 +33591,7 @@ This will fail in production if not fixed.`);
zero.zeroCheckList = data.list.map(() => false);
}
} catch (err) {
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:515", "err :>> ", err);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:516", "err :>> ", err);
}
}
async function initStock() {
@@ -32518,7 +33604,7 @@ This will fail in production if not fixed.`);
};
try {
const res = await getallocationDetailByStockList(submitData);
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:534", "res :>>库存 ", res);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:535", "res :>>库存 ", res);
const { code: code2, data } = res;
if (code2 === 200) {
stock.total = data.allNum;
@@ -32529,7 +33615,7 @@ This will fail in production if not fixed.`);
stock.stockCheckList = data.list.map(() => false);
}
} catch (err) {
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:545", "err :>> ", err);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:546", "err :>> ", err);
}
}
async function scandata() {
@@ -32537,7 +33623,7 @@ This will fail in production if not fixed.`);
return;
details.scancode;
const flag2 = article.articleList.find((val) => val.ordePackageCode === details.scancode);
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:555", "flag :>> ", flag2);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:556", "flag :>> ", flag2);
if (flag2) {
const questDetailList = [{
id: flag2.id,
@@ -32556,7 +33642,7 @@ This will fail in production if not fixed.`);
}];
const res = await getWarehouseUpdateQuestDetail({ questDetailList, questId: details.questId });
const { code: code2, msg } = res;
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:575", "res :>> ", res);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:576", "res :>> ", res);
if (code2 === 200) {
initPage();
utils.ttsspke(msg);
@@ -32790,7 +33876,7 @@ This will fail in production if not fixed.`);
}
function grounding() {
const marketName = Array.from(details.marketName);
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:839", "marketName :>> ", marketName);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:840", "marketName :>> ", marketName);
const goodsType = ["定制品", "零担", "库存品"];
tiplists.value.setdetails({
title: "新增",
@@ -32824,7 +33910,7 @@ This will fail in production if not fixed.`);
if (tabBarCode.value === 3)
submitData = stockAdd(deta);
const res = await getWarehouseSaveNewQuestDetail(submitData);
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:873", "res :>> ", res);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:874", "res :>> ", res);
const { code: code2 } = res;
if (code2 === 200) {
initPage();
@@ -32871,9 +33957,9 @@ This will fail in production if not fixed.`);
function zeroAdd(deta) {
}
function stockAdd(deta) {
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:925", "deta :>> ", deta);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:926", "deta :>> ", deta);
const { upform: { stock: { orderCode, stockNum, marketName, incomingBatch } } } = deta;
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:936", "data :>> ", deta);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:937", "data :>> ", deta);
const submitData = {
questDetail: {
orderCode,
@@ -32995,7 +34081,7 @@ This will fail in production if not fixed.`);
}
utils.ttsspke(res.msg);
} catch (err) {
- formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:1074", "err :>> ", err);
+ formatAppLog("log", "at pagesTask/pages/storageLocationCheckDetails/storageLocationCheckDetails.vue:1075", "err :>> ", err);
} finally {
details.showUpData = false;
details.isBatch = false;
@@ -33609,18 +34695,18 @@ This will fail in production if not fixed.`);
info.goodsType = details.pageInfo.type;
details.holdBackFirstPost = details.pageInfo.holdBackFirstPost;
formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:307", "pageInfo :>> ", details.pageInfo);
- if (details.holdBackFirstPost)
- return;
- initPage();
});
onShow(() => {
uni.$on("scancodedate", function(code2) {
if (code2) {
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:317", "code :>> ", code2);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:316", "code :>> ", code2);
details.scancode = code2;
scandata();
}
});
+ if (details.holdBackFirstPost)
+ return;
+ initPage();
});
onHide(() => {
uni.$off("scancodedate");
@@ -33634,7 +34720,7 @@ This will fail in production if not fixed.`);
trayId: details.pageInfo.trayId
};
const res = await getWarehousetrayListInfo(submitForm);
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:371", "res :>> ", res);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:372", "res :>> ", res);
const { code: code2, data } = res;
if (code2 === 200) {
const dataInfo = res.data;
@@ -33644,7 +34730,7 @@ This will fail in production if not fixed.`);
details.checkList = dataInfo.list.map(() => false);
}
} catch (err) {
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:381", "err :>> ", err);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:382", "err :>> ", err);
} finally {
return true;
}
@@ -33654,7 +34740,7 @@ This will fail in production if not fixed.`);
return;
details.scancode;
const flag2 = details.renderList.find((val) => val.ordePackageCode === details.scancode);
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:393", "flag :>> ", flag2);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:394", "flag :>> ", flag2);
if (flag2) {
const questDetailList = [{
id: flag2.id,
@@ -33673,14 +34759,14 @@ This will fail in production if not fixed.`);
}];
const res = await getWarehouseUpdateQuestDetail({ questDetailList, questId: details.pageInfo.taskId });
const { code: code2, msg } = res;
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:413", "res :>> ", res);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:414", "res :>> ", res);
if (code2 === 200) {
initPage();
utils.ttsspke(msg);
}
} else {
const res = await postWarehouseTaskSelectPackageInfo({ orderPackageCode: details.scancode, questId: details.pageInfo.taskId });
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:420", "res :>> ", res);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:421", "res :>> ", res);
}
}
function submitSearch() {
@@ -33698,7 +34784,7 @@ This will fail in production if not fixed.`);
icon: "none"
});
const arr = details.renderList.filter((v) => v.questStatus !== 3);
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:450", "arr :>> ", arr);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:451", "arr :>> ", arr);
const questDetailList = arr.map((val) => {
return { id: val.id };
});
@@ -33715,7 +34801,7 @@ This will fail in production if not fixed.`);
details.checkList = details.checkList.map((val) => !val);
}
function handleBatchDel() {
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:478", "details :>> ", details.checkList);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:479", "details :>> ", details.checkList);
if (!details.checkList.some((val) => val)) {
return uni.showToast({
icon: "none",
@@ -33735,7 +34821,7 @@ This will fail in production if not fixed.`);
confirmTxt: "确认删除",
isonecheck: true,
success: (deta) => {
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:497", "111 :>> ", 111);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:498", "111 :>> ", 111);
try {
getWarehouseDeleteQuestDetail({ questDetailList, questId: details.pageInfo.taskId }).then((res) => {
initPage();
@@ -33898,7 +34984,7 @@ This will fail in production if not fixed.`);
}
function grounding() {
const marketName = Array.from(details.pageInfo.marketName);
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:681", "marketName :>> ", marketName);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:682", "marketName :>> ", marketName);
tiplists.value.setdetails({
title: "新增",
isshow: true,
@@ -33931,7 +35017,7 @@ This will fail in production if not fixed.`);
if (info.goodsType === "库存品")
submitData = stockAdd(deta);
const res = await getWarehouseSaveNewQuestDetail(submitData);
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:714", "res :>> ", res);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:715", "res :>> ", res);
const { code: code2 } = res;
if (code2 === 200) {
initPage();
@@ -33978,9 +35064,9 @@ This will fail in production if not fixed.`);
function zeroAdd(deta) {
}
function stockAdd(deta) {
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:767", "deta :>> ", deta);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:768", "deta :>> ", deta);
const { upform: { stock: { orderCode, stockNum, marketName, incomingBatch } } } = deta;
- formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:778", "data :>> ", deta);
+ formatAppLog("log", "at pagesTask/pages/trayCheckDetails/trayCheckDetails.vue:779", "data :>> ", deta);
const submitData = {
questDetail: {
orderCode,
@@ -34562,9 +35648,9 @@ This will fail in production if not fixed.`);
infos.value = info;
details.marketName = JSON.parse(info.marketName);
formatAppLog("log", "at pagesTask/pages/contracts/contracts.vue:398", info, "infos==========");
- Tjinfo();
});
onShow(() => {
+ Tjinfo();
uni.$on("scancodedate", function(code2) {
if (code2) {
details.scancode = code2;
@@ -35665,6 +36751,7 @@ This will fail in production if not fixed.`);
__definePage("pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails", PagesHomePagesCustomerTrayDetailsCustomerTrayDetails);
__definePage("pagesHome/pages/StockUpListZero/StockUpListZero", PagesHomePagesStockUpListZeroStockUpListZero);
__definePage("pagesUser/pages/about/about", PagesUserPagesAboutAbout);
+ __definePage("pagesUser/pages/systemSettings/systemSettings", PagesUserPagesSystemSettingsSystemSettings);
__definePage("pagesTask/pages/dynamicCheck/dynamicCheck", PagesTaskPagesDynamicCheckDynamicCheck);
__definePage("pagesTask/pages/checkTaskList/checkTaskList", PagesTaskPagesCheckTaskListCheckTaskList);
__definePage("pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails", PagesTaskPagesDynamicCheckDetailsDynamicCheckDetails);
@@ -35675,13 +36762,13 @@ This will fail in production if not fixed.`);
setup() {
onLaunch(() => {
const utils2 = vue.inject("utils");
- formatAppLog("log", "at App.vue:15", utils2);
+ formatAppLog("log", "at App.vue:17", utils2);
utils2.inittts();
utils2.setting();
- formatAppLog("log", "at App.vue:25", "onLaunch");
+ formatAppLog("log", "at App.vue:22", "onLaunch");
});
onShow(() => {
- formatAppLog("log", "at App.vue:30", "onshow");
+ formatAppLog("log", "at App.vue:27", "onshow");
});
return {};
}
@@ -39191,6 +40278,7 @@ This will fail in production if not fixed.`);
}
}
function checkitem(index2) {
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:267", "123 :>> ", 123);
if (details.isonecheck) {
if (details.checklist.indexOf(index2) == -1) {
details.checklist = [index2];
@@ -39199,6 +40287,7 @@ This will fail in production if not fixed.`);
}
return;
}
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:276", "222 :>> ", 222);
if (details.checklist.indexOf(index2) == -1) {
details.checklist.push(index2);
} else {
@@ -39235,23 +40324,25 @@ This will fail in production if not fixed.`);
uni.chooseImage({
count: details.maximglength,
success: async (chooseImageRes) => {
- formatAppLog("log", "at compoment/tiplist/tiplist.vue:311", "chooseImageRes >>>>>>>>", chooseImageRes);
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:313", "chooseImageRes >>>>>>>>", chooseImageRes);
const tempFilePaths = chooseImageRes.tempFilePaths;
tempFilePaths.map(async (item) => {
- formatAppLog("log", "at compoment/tiplist/tiplist.vue:315", 1232131231);
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:317", 1232131231);
let url2 = await api.upfile(item);
- formatAppLog("log", "at compoment/tiplist/tiplist.vue:317", "url :>> ", url2);
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:319", "url :>> ", url2);
details.imglist[index2].imgList.push({ urlRoute: url2.link, type, name: url2.originalName });
});
}
});
}
function checkall() {
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:334", "111 :>> ", 111);
details.list.map((item, index2) => {
details.checklist.push(index2);
});
}
function removeall() {
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:340", "111 :>> ", 111);
details.checklist = [];
}
function checkallItem() {
@@ -39287,13 +40378,14 @@ This will fail in production if not fixed.`);
clearTimeout(isInputN);
isInputN = setTimeout(() => {
const maxNum = details.list[0].value - details.checkSectionList.reduce((curr, val) => curr + parseInt(val.value), 0) + parseInt(item.value);
- formatAppLog("log", "at compoment/tiplist/tiplist.vue:383", "maxNum :>> ", maxNum);
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:386", "maxNum :>> ", maxNum);
item.value = parseInt(item.value);
if (item.value <= 0 || isNaN(item.value))
item.value = 0;
if (item.value >= maxNum)
item.value = maxNum;
isInputN = null;
+ clearTimeout(isInputN);
}, 500);
}
let isInput = null;
@@ -39306,12 +40398,13 @@ This will fail in production if not fixed.`);
item.value = item.minNum;
if (item.value >= item.maxNum)
item.value = item.maxNum;
+ clearTimeout(isInput);
}, 300);
}
function handleshowMarket() {
details.showMarketList = !details.showMarketList;
- formatAppLog("log", "at compoment/tiplist/tiplist.vue:405", "123 :>> ", 123);
- formatAppLog("log", "at compoment/tiplist/tiplist.vue:406", "details.showMarketList :>> ", details.showMarketList);
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:411", "123 :>> ", 123);
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:412", "details.showMarketList :>> ", details.showMarketList);
}
let _atn = null;
function searchStock() {
@@ -39319,10 +40412,11 @@ This will fail in production if not fixed.`);
clearTimeout(_atn);
_atn = setTimeout(async () => {
const res = await postqueryfindMaterialList({ materialCode: details.upform.stock.materialName });
- formatAppLog("log", "at compoment/tiplist/tiplist.vue:414", "res :>> ", res);
+ formatAppLog("log", "at compoment/tiplist/tiplist.vue:420", "res :>> ", res);
const { code: code2 } = res;
if (code2 === 200)
details.materialName = res.data;
+ clearTimeout(_atn);
}, 1e3);
}
function checkSec(val) {
@@ -39908,6 +41002,7 @@ This will fail in production if not fixed.`);
if (number2.value <= props2.minNum)
number2.value = props2.minNum;
$emit("update:modelValue", number2.value);
+ clearTimeout(isInput);
}, 500);
}
return (_ctx, _cache) => {
@@ -39979,10 +41074,11 @@ This will fail in production if not fixed.`);
}, 1e3);
});
onPullDownRefresh(() => {
- setTimeout(async () => {
+ const timer = setTimeout(async () => {
await pullDownRefreshInitPage();
formatAppLog("log", "at compoment/BasicContainer/BasicContainer.vue:103", "111 :>> ", 111);
uni.stopPullDownRefresh();
+ clearTimeout(timer);
}, 1e3);
});
return (_ctx, _cache) => {
@@ -40112,23 +41208,43 @@ This will fail in production if not fixed.`);
if (props2 == null ? void 0 : props2.ishidestop)
return;
stopScan();
- formatAppLog("log", "at compoment/saomiao2.vue:36", "扫描的--------------onHide");
+ formatAppLog("log", "at compoment/saomiao2.vue:40", "扫描的--------------onHide");
});
onUnload(() => {
stopScan();
uni.$off("scancodedate");
});
function initScan() {
+ const pdaBroadcastList = {
+ "seuic": {
+ // 广播动作
+ broadcastAction: "com.android.server.scannerservice.broadcast",
+ // 广播标签
+ broadcastTag: "scannerdata"
+ },
+ "ubx": {
+ // 广播动作
+ broadcastAction: "android.intent.ACTION_DECODE_DATA",
+ // 广播标签
+ broadcastTag: "barcode_string"
+ }
+ };
+ formatAppLog("log", "at compoment/saomiao2.vue:65", "广播");
if (plus) {
+ formatAppLog("log", "at compoment/saomiao2.vue:67", "getDeviceBrand() :>> ", uni.getSystemInfoSync());
+ const { brand } = uni.getSystemInfoSync();
+ formatAppLog("log", "at compoment/saomiao2.vue:69", "进入");
details.activity = plus.android.runtimeMainActivity();
+ formatAppLog("log", "at compoment/saomiao2.vue:71", "details.activity :>> ", details.activity);
var IntentFilter = plus.android.importClass("android.content.IntentFilter");
details.intentFilter = new IntentFilter();
- details.intentFilter.addAction("com.android.server.scannerservice.broadcast");
+ details.intentFilter.addAction(pdaBroadcastList[brand].broadcastAction);
details.receiver = plus.android.implements("io.dcloud.feature.internal.reflect.BroadcastReceiver", {
onReceive: function(context, intent) {
- formatAppLog("log", "at compoment/saomiao2.vue:53", "intent", intent);
+ formatAppLog("log", "at compoment/saomiao2.vue:81", "111 :>> ", 111);
+ formatAppLog("log", "at compoment/saomiao2.vue:82", "intent", intent);
plus.android.importClass(intent);
- let content = intent.getStringExtra("scannerdata");
+ let content = intent.getStringExtra(pdaBroadcastList[brand].broadcastTag);
uni.$emit("scancodedate", content.replace(/\n/g, ""));
}
});
diff --git a/unpackage/dist/dev/app-plus/app.css b/unpackage/dist/dev/app-plus/app.css
index e478cae..ba4e0bb 100644
--- a/unpackage/dist/dev/app-plus/app.css
+++ b/unpackage/dist/dev/app-plus/app.css
@@ -896,12 +896,11 @@ body {
border-radius: 0.3125rem;
}
-.inputNum[data-v-92b65ffd]{
+.inputNum[data-v-92b65ffd] {
border: 0.03125rem solid #000;
padding-left: 0.3125rem;
border-radius: 0.15625rem;
}
-
/**
* 这里是uni-app内置的常用样式变量
diff --git a/unpackage/dist/dev/app-plus/manifest.json b/unpackage/dist/dev/app-plus/manifest.json
index 3ef8d3f..b8a8baf 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.0.16",
- "code": 1016
+ "name": "1.0.17",
+ "code": 1017
},
"description": "",
"developer": {
@@ -185,7 +185,7 @@
"uni-app": {
"control": "uni-v3",
"vueVersion": "3",
- "compilerVersion": "3.8.12",
+ "compilerVersion": "3.95",
"nvueCompiler": "uni-app",
"renderer": "auto",
"nvue": {
diff --git a/unpackage/dist/dev/app-plus/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.css b/unpackage/dist/dev/app-plus/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.css
index ed92e1a..ac021f6 100644
--- a/unpackage/dist/dev/app-plus/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.css
+++ b/unpackage/dist/dev/app-plus/pagesHome/pages/MergeTrayDetails/MergeTrayDetails.css
@@ -403,4 +403,37 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
}
.topbos > .srview > uni-view:nth-of-type(2) > uni-input {
flex: 1;
+}
+.tpbx {
+ display: flex;
+ align-items: center;
+ padding: 0.5625rem 0.75rem;
+ box-sizing: border-box;
+ border-bottom: 0.125rem solid #EEEEEE;
+}
+.tpbx > uni-image {
+ flex: none;
+ width: 1rem;
+ height: 1rem;
+ margin-right: 0.46875rem;
+}
+.tpbx > uni-view {
+ font-size: 0.875rem;
+ font-weight: 400;
+ color: #020B18;
+}
+.tpbx > uni-view .numb {
+ font-size: 0.875rem;
+ color: #178AF2;
+}
+.viewnum {
+ height: 3.125rem;
+ display: flex;
+ align-items: center;
+ justify-content: space-around;
+}
+.viewnum > uni-view {
+ font-size: 0.875rem;
+ font-weight: 400;
+ color: #020B18;
}
\ No newline at end of file
diff --git a/unpackage/dist/dev/app-plus/pagesHome/pages/RemoveTray/RemoveTray.css b/unpackage/dist/dev/app-plus/pagesHome/pages/RemoveTray/RemoveTray.css
index d315248..1a82505 100644
--- a/unpackage/dist/dev/app-plus/pagesHome/pages/RemoveTray/RemoveTray.css
+++ b/unpackage/dist/dev/app-plus/pagesHome/pages/RemoveTray/RemoveTray.css
@@ -225,11 +225,39 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
-.topbos {
+.tabBar[data-v-8dd39525] {
+ margin-top: 0.3125rem;
+ padding: 0 0.9375rem;
+ display: flex;
+}
+.tabBar_item[data-v-8dd39525] {
+ flex: 1;
+ flex-basis: 0;
+ text-align: center;
+ line-height: 2.5rem;
+ background: #fff;
+ position: relative;
+}
+.tabBar_item[data-v-8dd39525]::after {
+ content: "";
+ display: block;
+ position: absolute;
+ height: 0.125rem;
+ background: #d3832a;
+ width: 0;
+ left: 50%;
+ bottom: 0;
+ transition: all 0.5s;
+}
+.tabBar_item.active[data-v-8dd39525]::after {
+ left: 0;
+ width: 100%;
+}
+.topbos[data-v-8dd39525] {
display: flex;
flex-direction: column;
}
-.topbos > .srview {
+.topbos > .srview[data-v-8dd39525] {
display: flex;
align-items: center;
padding: 0.8125rem 1rem;
@@ -237,7 +265,7 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
background-color: #ffffff;
margin-bottom: 0.125rem;
}
-.topbos > .srview .sbm {
+.topbos > .srview .sbm[data-v-8dd39525] {
width: 4.6875rem;
height: 2rem;
display: flex;
@@ -247,24 +275,24 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
color: #ffffff;
border-radius: 0.3125rem;
}
-.topbos > .srview:nth-last-child(1) {
+.topbos > .srview[data-v-8dd39525]:nth-last-child(1) {
margin-bottom: 0;
}
-.topbos > .srview > uni-view:nth-of-type(1) {
+.topbos > .srview > uni-view[data-v-8dd39525]:nth-of-type(1) {
width: 5.9375rem;
font-size: 0.875rem;
}
-.topbos > .srview > uni-view:nth-of-type(2) {
+.topbos > .srview > uni-view[data-v-8dd39525]:nth-of-type(2) {
font-size: 0.875rem;
flex: 1;
display: flex;
align-items: center;
}
-.topbos > .srview > uni-view:nth-of-type(2) > uni-input {
+.topbos > .srview > uni-view:nth-of-type(2) > uni-input[data-v-8dd39525] {
flex: 1;
font-size: 0.875rem;
}
-.flbuts {
+.flbuts[data-v-8dd39525] {
width: 10rem;
height: 2.75rem;
background: #D3832A;
@@ -280,24 +308,25 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
transform: translate(-50%);
bottom: 1.875rem;
}
-.bgimg {
+.bgimg[data-v-8dd39525] {
position: absolute;
left: 0;
top: 0;
width: 100%;
}
-.scvmabx {
+.scvmabx[data-v-8dd39525] {
width: 100%;
height: 68vh;
margin-top: 0.625rem;
}
-.scvmabx .maxboxs {
+.scvmabx .maxboxs[data-v-8dd39525] {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
-.scvmabx .maxboxs > .items {
+.scvmabx .maxboxs > .items[data-v-8dd39525] {
+ position: relative;
width: 21.5625rem;
display: flex;
flex-direction: column;
@@ -308,10 +337,10 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
border-radius: 0.3125rem;
margin-bottom: 0.9375rem;
}
-.scvmabx .maxboxs > .items:nth-last-child(1) {
+.scvmabx .maxboxs > .items[data-v-8dd39525]:nth-last-child(1) {
margin-bottom: 0.625rem;
}
-.scvmabx .maxboxs > .items .tophd {
+.scvmabx .maxboxs > .items .tophd[data-v-8dd39525] {
width: 100%;
display: flex;
align-items: flex-start;
@@ -320,22 +349,22 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
box-sizing: border-box;
border-bottom: 0.125rem solid #EEEEEE;
}
-.scvmabx .maxboxs > .items .tophd > uni-image {
+.scvmabx .maxboxs > .items .tophd > uni-image[data-v-8dd39525] {
width: 1.5rem;
height: 1.5rem;
margin-right: 0.3125rem;
}
-.scvmabx .maxboxs > .items .tophd > uni-view {
+.scvmabx .maxboxs > .items .tophd > uni-view[data-v-8dd39525] {
font-size: 1rem;
color: #020B18;
font-weight: 400;
word-wrap: break-word;
word-break: break-all;
}
-.scvmabx .maxboxs > .items .tophd > uni-view:nth-of-type(2) {
+.scvmabx .maxboxs > .items .tophd > uni-view[data-v-8dd39525]:nth-of-type(2) {
flex: 1;
}
-.scvmabx .maxboxs > .items .tophd1 {
+.scvmabx .maxboxs > .items .tophd1[data-v-8dd39525] {
width: 100%;
display: flex;
align-items: center;
@@ -344,21 +373,21 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
box-sizing: border-box;
border-bottom: 0.125rem solid #EEEEEE;
}
-.scvmabx .maxboxs > .items .tophd1 > uni-image {
+.scvmabx .maxboxs > .items .tophd1 > uni-image[data-v-8dd39525] {
width: 1.5rem;
height: 1.5rem;
margin-right: -0.625rem;
}
-.scvmabx .maxboxs > .items .tophd1 > uni-view {
+.scvmabx .maxboxs > .items .tophd1 > uni-view[data-v-8dd39525] {
display: flex;
align-items: center;
}
-.scvmabx .maxboxs > .items .tophd1 > uni-view > uni-image {
+.scvmabx .maxboxs > .items .tophd1 > uni-view > uni-image[data-v-8dd39525] {
width: 1.5rem;
height: 1.5rem;
margin-right: 0.3125rem;
}
-.scvmabx .maxboxs > .items .numbxvie {
+.scvmabx .maxboxs > .items .numbxvie[data-v-8dd39525] {
width: 100%;
display: flex;
align-items: center;
@@ -366,42 +395,56 @@ uni-view[data-v-f631659b], uni-scroll-view[data-v-f631659b], uni-swiper-item[dat
padding: 0.46875rem 0.78125rem;
box-sizing: border-box;
}
-.scvmabx .maxboxs > .items .numbxvie .zhon {
+.scvmabx .maxboxs > .items .numbxvie .zhon[data-v-8dd39525] {
color: #D3832A;
}
-.scvmabx .maxboxs > .items .numbxvie .yish {
+.scvmabx .maxboxs > .items .numbxvie .yish[data-v-8dd39525] {
color: #1197EB;
}
-.scvmabx .maxboxs > .items .numbxvie .weish {
+.scvmabx .maxboxs > .items .numbxvie .weish[data-v-8dd39525] {
color: #020B18;
}
-.scvmabx .maxboxs > .items .numbxvie > uni-view {
+.scvmabx .maxboxs > .items .numbxvie > uni-view[data-v-8dd39525] {
display: flex;
flex-direction: column;
align-items: center;
}
-.scvmabx .maxboxs > .items .numbxvie > uni-view > uni-view:nth-of-type(1) {
+.scvmabx .maxboxs > .items .numbxvie > uni-view > uni-view[data-v-8dd39525]:nth-of-type(1) {
font-size: 1.125rem;
margin-bottom: 0.375rem;
}
-.scvmabx .maxboxs > .items .numbxvie > uni-view > uni-view:nth-of-type(2) {
+.scvmabx .maxboxs > .items .numbxvie > uni-view > uni-view[data-v-8dd39525]:nth-of-type(2) {
font-size: 0.875rem;
}
-.scvmabx .maxboxs > .items .type1 {
+.scvmabx .maxboxs > .items .type1[data-v-8dd39525] {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 0.625rem;
}
-.scvmabx .maxboxs > .items .type1 > uni-view {
+.scvmabx .maxboxs > .items .type1 > uni-view[data-v-8dd39525] {
display: flex;
align-items: center;
font-size: 0.875rem;
}
-.scvmabx .maxboxs > .items .type1 > uni-view > uni-view:nth-of-type(1) {
+.scvmabx .maxboxs > .items .type1 > uni-view > uni-view[data-v-8dd39525]:nth-of-type(1) {
color: #90A0AF;
}
-.scvmabx .maxboxs > .items .type1 > uni-view > uni-view:nth-of-type(2) {
+.scvmabx .maxboxs > .items .type1 > uni-view > uni-view[data-v-8dd39525]:nth-of-type(2) {
color: #092C4D;
+}
+.weiqt[data-v-8dd39525] {
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 2.1875rem;
+ height: 2.1875rem;
+}
+.qitao[data-v-8dd39525] {
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 2.1875rem;
+ height: 2.1875rem;
}
\ No newline at end of file
diff --git a/utils/request.js b/utils/request.js
index a301e36..6221479 100644
--- a/utils/request.js
+++ b/utils/request.js
@@ -28,7 +28,7 @@ import {
const service = (params) => {
- return new Promise((relove, reject) => {
+ return new Promise(async (relove, reject) => {
let refresh_token = uni.getStorageSync('refresh_token')
let token = uni.getStorageSync('access_token')
let user = uni.getStorageSync('userinfo')
@@ -63,14 +63,36 @@ const service = (params) => {
urlhd = host
}
+ let version = ''
+ if (!version) {
+ // #ifdef APP
+ version = await utils.getversion()
+ version = version.version
+ // #endif
+ }
+
function req() {
- uni.request({
+ let submitData = {
url: urlhd + params.url,
data: params.data,
method: params.method,
+ header
+ }
+ // 当程序在app上运行时, 带上版本号
+ // #ifdef APP
+ submitData = {
+ url: urlhd + params.url,
+ data: {
+ ...params.data,
+ version
+ },
+ method: params.method,
// dataType: "json",
header
- }).then(res => {
+ }
+ // #endif
+
+ uni.request(submitData).then(res => {
// console.log(res);
uni.hideLoading()
if (res.statusCode == 200) {
diff --git a/utils/watermark.js b/utils/watermark.js
new file mode 100644
index 0000000..1907324
--- /dev/null
+++ b/utils/watermark.js
@@ -0,0 +1,61 @@
+'use strict';
+let watermark = {};
+watermark.set = (path) => {
+ let id = '1.23452384164.123412415';
+ // #ifdef H5
+ if (document.getElementById(id) !== null) {
+ document.body.removeChild(document.getElementById(id));
+ }
+ let div = document.createElement('div');
+ div.id = id;
+ div.style.pointerEvents = 'none';
+ div.style.top = '44px';
+ div.style.left = '0px';
+ div.style.bottom = '50px';
+ div.style.right = '0px';
+ div.style.position = 'fixed';
+ div.style.zIndex = '100000';
+ div.style.zoom = '0.6'; //设置缩放
+ div.style.opacity = '0.5'; //设置透明度
+ div.style.background = 'url(' + path + ') left top repeat';
+ div.innerText = '测试'
+ document.body.appendChild(div);
+ return id;
+ // #endif
+ // #ifdef APP-PLUS
+ if (plus.nativeObj.View.getViewById(id) !== null) {
+ plus.nativeObj.View.getViewById(id).close();
+ }
+ uni.getSystemInfo({
+ success: function(res) {
+ //水印排列行数
+ let row = Math.floor(res.windowHeight / uni.upx2px(250));
+ let tarArr = [];
+ for (let i = 0; i < row; i++) {
+ for (let j = 0; j < 3; j++) {
+ tarArr.push({
+ tag: 'img',
+ src: path,
+ position: {
+ top: (uni.upx2px(255) * i) + 'px',
+ left: (uni.upx2px(255) * j) + 'px',
+ width: uni.upx2px(255) + 'px',
+ height: uni.upx2px(255) + 'px'
+ }
+ });
+ }
+ }
+ var watermarkView = new plus.nativeObj.View(id, {
+ top: '70px',
+ left: '0px',
+ right: '0px',
+ bottom: '50px'
+ }, tarArr);
+ //拦截View控件的触屏事件,将事件穿透给下一层view
+ watermarkView.interceptTouchEvent(false);
+ watermarkView.show();
+ }
+ });
+ // #endif
+}
+export default watermark;
\ No newline at end of file