From d70be52f66cc25e24c2393b05cb066ac00356f43 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Tue, 28 May 2024 18:44:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/user.js | 2 +- config/host.js | 4 +- .../pages/PickUpLotList/PickUpLotList.vue | 16 +- .../pages/SelfPScanList/SelfPScanList.vue | 2 + .../SelfPickupDetails/SelfPickupDetails.vue | 7 +- .../VehicleArrivalDetails.vue | 2 +- .../codePlateBracket/codePlateBracket.vue | 4 +- pagesHome/pages/onLoadByScan/onLoadByScan.vue | 8 +- unpackage/dist/dev/app-plus/app-service.js | 5109 +++++++++-------- 9 files changed, 2587 insertions(+), 2567 deletions(-) diff --git a/api/user.js b/api/user.js index 51e9424..d37066e 100644 --- a/api/user.js +++ b/api/user.js @@ -2844,7 +2844,7 @@ export function postIncomingIncomingPackage(data, loadingObj = {}, canCancel = f } /** - * 入库扫描 + * 入库扫描列表 * @param {Object} data */ export function postIncomingBillladingBillladingList(data, loadingObj = {}, canCancel = false) { diff --git a/config/host.js b/config/host.js index 2c432e2..711079c 100644 --- a/config/host.js +++ b/config/host.js @@ -12,7 +12,7 @@ const devhost = 'http://test.api.huo5you.com/' // xiaohei // const devhost = 'http://192.168.3.18:13000/' // tjj -// const devhost = 'http://192.168.3.14:13000/' +// const devhost = 'http://192.168.3.14:13000/ ' // cyz // const devhost = 'http://192.168.6.169:9777/' // const devhost = 'http://192.168.6.141:8777/' @@ -22,6 +22,8 @@ const devhost = 'http://test.api.huo5you.com/' // const devhost = 'https://h5uapi.huitongys.com/' // cg // const devhost = 'http://192.168.10.200:13000/' + +// const devhost = 'http://192.168.5.10:13000/' /** * 正式域名 * */ diff --git a/pagesHome/pages/PickUpLotList/PickUpLotList.vue b/pagesHome/pages/PickUpLotList/PickUpLotList.vue index f51f7ce..30c1110 100644 --- a/pagesHome/pages/PickUpLotList/PickUpLotList.vue +++ b/pagesHome/pages/PickUpLotList/PickUpLotList.vue @@ -37,11 +37,11 @@ - 订单在托数:{{details.detauser.orderlNum || '暂无数据'}} + 订单在托数:{{details.detauser.orderlNum }} - 订单总数:{{details.detauser.orderTotalNum || '暂无数据'}} + 订单总数:{{details.detauser.orderTotalNum }} @@ -153,7 +153,7 @@ // 组件配置 const option = reactive({ // 标题 - title: '提货批次', + title: '码板打托', // 下拉刷新回调函数 async pullDownRefreshInitPage() { // 重置被选中数据 @@ -227,7 +227,7 @@ details.pageInfo = JSON.parse(op.pageInfo) // #ifdef APP - utils.ttsspke('请扫描或输入托盘码') + utils.ttsspke('请扫描或输入包条码') // #endif }) @@ -262,12 +262,18 @@ const { code, data } = res + console.log('data :>> ', data); + console.log('111 :>> ', 111); if (code !== 200) return if (res.data.isHasData == 1) { // details.datelist = res.data.data.list - details.detauser = res.data.data + details.detauser = data.data + details.pageInfo.trayName = data.data.trayName + details.pageInfo.pageName = data.data.trayTypeName + + console.log('details.pageInfo :>> ', details.pageInfo); for (let item of details.detauser.packageList) { item.scanNum = item.scanNum || 0 diff --git a/pagesHome/pages/SelfPScanList/SelfPScanList.vue b/pagesHome/pages/SelfPScanList/SelfPScanList.vue index a33b721..31aea73 100644 --- a/pagesHome/pages/SelfPScanList/SelfPScanList.vue +++ b/pagesHome/pages/SelfPScanList/SelfPScanList.vue @@ -202,6 +202,8 @@ /* onHide(() => { uni.$off('scancodedate') }) */ + + /** 显示手动输入包条码弹窗 */ function showsdqs() { tiplists.value.setdetails({ isshow: true, diff --git a/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue b/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue index 60f336b..544469b 100644 --- a/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue +++ b/pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue @@ -59,6 +59,7 @@ 订单号:{{item.orderCode}} 包条码:{{item.orderPackageCode}} + @@ -223,7 +224,7 @@ uni.$off('scancodedate') }) */ function showsdqs() { - if (details.planNum <= details.signedNum) return utils.handleToast('提货计划已完成') + if (details.planNum <= details.signedNum) return tiplists.value.setdetails({ isshow: true, @@ -306,9 +307,8 @@ async function sacn() { try { // 标签页为3时, 不支持扫描 - if (details.orderCode === 3) return + if (Number(details.orderType) === 3) return - if (details.planNum <= details.signedNum) return utils.handleToast('提货计划已完成') let content = '' let haveData = false @@ -333,6 +333,7 @@ if (!haveData) return utils.handleToast('码值错误, 不在本计划内') if (content) return utils.handleToast(content) + if (details.planNum <= details.signedNum) return let data = { id: details.billLadingId, coding: details.scancode, diff --git a/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue b/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue index 4cc62c8..91b16b4 100644 --- a/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue +++ b/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails.vue @@ -494,7 +494,7 @@ return } - utils.handleToast(`卸车${_total}件`) + utils.handleToast(`${_total}件`) // #endif } } diff --git a/pagesHome/pages/codePlateBracket/codePlateBracket.vue b/pagesHome/pages/codePlateBracket/codePlateBracket.vue index 06e1288..b58ecad 100644 --- a/pagesHome/pages/codePlateBracket/codePlateBracket.vue +++ b/pagesHome/pages/codePlateBracket/codePlateBracket.vue @@ -254,7 +254,7 @@ uni.navigateTo({ url: '/pagesHome/pages/billsList/billsList?trayCode=' + res.data.data.trayCode + '&trayType=' - + res.data.data.trayType + + res.data.data.trayType + '&pageName=' + item.trayTypeName }) } } @@ -284,7 +284,7 @@ uni.navigateTo({ url: '/pagesHome/pages/billsList/billsList?trayCode=' + item.trayCode + '&trayType=' - + item.trayType + + item.trayType + '&pageName=' + item.trayTypeName }) } function showCalendar() { diff --git a/pagesHome/pages/onLoadByScan/onLoadByScan.vue b/pagesHome/pages/onLoadByScan/onLoadByScan.vue index 1683df4..92e6526 100644 --- a/pagesHome/pages/onLoadByScan/onLoadByScan.vue +++ b/pagesHome/pages/onLoadByScan/onLoadByScan.vue @@ -234,13 +234,13 @@ const scandata = async () => { const _code = details.scancode - const _submitData = { + const _submitData : any = { orderPackageCode: _code, billladingId: details.pageInfo.id, incomingType: "2", } - if (details.pageInfo.tranNumber) _submitData.tranNumber = details.pageInfo.tranNumber + if (details.pageInfo.tranNumber) _submitData.customerTrain = details.pageInfo.tranNumber const res = await postIncomingIncomingPackage(_submitData) @@ -295,12 +295,14 @@ icon: 'none' }) try { - const _submitData = { + const _submitData : any = { ...details.page, startDateStr: details.date[0], endDateStr: details.date[1] } + if (details.pageInfo.tranNumber) _submitData.customerTrain = details.pageInfo.tranNumber + const res = await postIncomingBillladingBillladingList(_submitData) const { code, data } = res diff --git a/unpackage/dist/dev/app-plus/app-service.js b/unpackage/dist/dev/app-plus/app-service.js index fe88dc8..e885949 100644 --- a/unpackage/dist/dev/app-plus/app-service.js +++ b/unpackage/dist/dev/app-plus/app-service.js @@ -80,8 +80,8 @@ if (uni.restoreGlobal) { const defaultSettings = {}; if (plugin.settings) { for (const id in plugin.settings) { - const item = plugin.settings[id]; - defaultSettings[id] = item.defaultValue; + const item2 = plugin.settings[id]; + defaultSettings[id] = item2.defaultValue; } } const localSettingsSaveId = `__vue-devtools-plugin-settings__${plugin.id}`; @@ -155,11 +155,11 @@ if (uni.restoreGlobal) { } async setRealTarget(target) { this.target = target; - for (const item of this.onQueue) { - this.target.on[item.method](...item.args); + for (const item2 of this.onQueue) { + this.target.on[item2.method](...item2.args); } - for (const item of this.targetQueue) { - item.resolve(await this.target[item.method](...item.args)); + for (const item2 of this.targetQueue) { + item2.resolve(await this.target[item2.method](...item2.args)); } } }; @@ -1809,7 +1809,7 @@ if (uni.restoreGlobal) { }; }; const Base64$1 = new Base64(); - const devhost = "http://192.168.3.2:13000/"; + const devhost = "http://test.api.huo5you.com/"; const imghost = ""; const host = devhost; const APPKEY = "h5u:h5u_secret"; @@ -1967,13 +1967,13 @@ if (uni.restoreGlobal) { // 扁平数据转成树形结构 formatTree: (list, rootValue, key) => { const treeData = []; - list.forEach((item) => { - if (item[key] == rootValue) { - const children = formatTree(list, item.id, key); + list.forEach((item2) => { + if (item2[key] == rootValue) { + const children = formatTree(list, item2.id, key); if (children.length) { - item.children = children; + item2.children = children; } - treeData.push(item); + treeData.push(item2); } }); return treeData; @@ -2132,11 +2132,11 @@ if (uni.restoreGlobal) { resolve(res); } else { const res2 = uni.getStorageInfoSync(); - res2.keys.map((item) => { - if (item == "loginuser" || item == "HistoryDate" || item == "setip" || item == "checkname" || item.indexOf("IMAGE_CACHE_INFO") != -1) { + res2.keys.map((item2) => { + if (item2 == "loginuser" || item2 == "HistoryDate" || item2 == "setip" || item2 == "checkname" || item2.indexOf("IMAGE_CACHE_INFO") != -1) { return; } - uni.removeStorageSync(item); + uni.removeStorageSync(item2); }); uni.reLaunch({ url: "/pages/login/login" @@ -2153,11 +2153,11 @@ if (uni.restoreGlobal) { url: "/pages/login/login" }); const res = uni.getStorageInfoSync(); - res.keys.map((item) => { - if (item == "loginuser" || item == "HistoryDate" || item == "setip" || item == "checkname" || item.indexOf("IMAGE_CACHE_INFO") != -1) { + res.keys.map((item2) => { + if (item2 == "loginuser" || item2 == "HistoryDate" || item2 == "setip" || item2 == "checkname" || item2.indexOf("IMAGE_CACHE_INFO") != -1) { return; } - uni.removeStorageSync(item); + uni.removeStorageSync(item2); }); uni.reLaunch({ url: "/pages/login/login" @@ -4686,8 +4686,8 @@ if (uni.restoreGlobal) { const defaultSettings = {}; if (plugin.settings) { for (const id in plugin.settings) { - const item = plugin.settings[id]; - defaultSettings[id] = item.defaultValue; + const item2 = plugin.settings[id]; + defaultSettings[id] = item2.defaultValue; } } const localSettingsSaveId = `__vue-devtools-plugin-settings__${plugin.id}`; @@ -4766,11 +4766,11 @@ if (uni.restoreGlobal) { } async setRealTarget(target) { this.target = target; - for (const item of this.onQueue) { - this.target.on[item.method](...item.args); + for (const item2 of this.onQueue) { + this.target.on[item2.method](...item2.args); } - for (const item of this.targetQueue) { - item.resolve(await this.target[item.method](...item.args)); + for (const item2 of this.targetQueue) { + item2.resolve(await this.target[item2.method](...item2.args)); } } } @@ -6369,8 +6369,8 @@ This will fail in production if not fixed.`); clearTimeout(timer); }, 500); }); - function ckeckitem(item) { - details.checkitem = item; + function ckeckitem(item2) { + details.checkitem = item2; } async function sbckck() { if (!details.checkitem.id) { @@ -6605,11 +6605,11 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(warehouseList), (item) => { + vue.renderList(vue.unref(warehouseList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - onClick: ($event) => ckeckitem(item), - class: vue.normalizeClass(item.name == vue.unref(checkitem).name ? "items xzck" : "items") - }, vue.toDisplayString(item.name), 11, ["onClick"]); + onClick: ($event) => ckeckitem(item2), + class: vue.normalizeClass(item2.name == vue.unref(checkitem).name ? "items xzck" : "items") + }, vue.toDisplayString(item2.name), 11, ["onClick"]); }), 256 /* UNKEYED_FRAGMENT */ @@ -8283,13 +8283,13 @@ This will fail in production if not fixed.`); const prefix = `u-${name}--`; const classes = {}; if (fixed) { - fixed.map((item) => { - classes[prefix + this[item]] = true; + fixed.map((item2) => { + classes[prefix + this[item2]] = true; }); } if (change) { - change.map((item) => { - this[item] ? classes[prefix + item] = this[item] : delete classes[prefix + item]; + change.map((item2) => { + this[item2] ? classes[prefix + item2] = this[item2] : delete classes[prefix + item2]; }); } return Object.keys(classes); @@ -9302,8 +9302,8 @@ This will fail in production if not fixed.`); let butres = await appbuttons({}); formatAppLog("log", "at pages/index/index.vue:395", butres.data); let qxan = []; - butres.data.map((item) => { - item.children.map((ite) => { + butres.data.map((item2) => { + item2.children.map((ite) => { qxan.push({ name: ite.name, code: ite.code }); }); }); @@ -9332,13 +9332,13 @@ This will fail in production if not fixed.`); let maxarr = []; if (!data[0]) return; - for (let item of data[0].children) { + for (let item2 of data[0].children) { let arr = { type: 1, - name: item.name, + name: item2.name, minilist: [] }; - for (let ite of item.children) { + for (let ite of item2.children) { let result = null; if (ite.source != null) { result = await getImageCache(ite.source); @@ -9354,14 +9354,14 @@ This will fail in production if not fixed.`); } details.tablist = maxarr; const _taskArr = []; - for (let item of data[1].children) { + for (let item2 of data[1].children) { let arr = { type: 1, - name: item.name, + name: item2.name, minilist: [] }; - if (item.children) { - for (let ite of item.children) { + if (item2.children) { + for (let ite of item2.children) { let result = null; if (ite.source != null) { result = await getImageCache(ite.source); @@ -9375,13 +9375,13 @@ This will fail in production if not fixed.`); } } else { let result = null; - if (item.source != null) { - result = await getImageCache(item.source); + if (item2.source != null) { + result = await getImageCache(item2.source); } let obj = { icon: result, - name: item.name, - router: item.path + name: item2.name, + router: item2.path }; arr.minilist.push(obj); } @@ -9448,12 +9448,12 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(tablist), (item) => { + vue.renderList(vue.unref(tablist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "mabox" }, [ vue.createElementVNode( "view", { class: "boxtitl" }, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ), @@ -9461,7 +9461,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.minilist, (ite) => { + vue.renderList(item2.minilist, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { onClick: ($event) => gopathpage(ite.router) }, [ @@ -9550,8 +9550,8 @@ This will fail in production if not fixed.`); clearTimeout(timer); }, 500); }); - function ckeckitemck(item) { - details.checkitems = item; + function ckeckitemck(item2) { + details.checkitems = item2; } async function sbckck() { if (!details.checkitems.id) { @@ -9583,32 +9583,32 @@ This will fail in production if not fixed.`); details.warehouseList = res.data; details.showck = true; } - function checkitem(item) { - if (item.type == 1) + function checkitem(item2) { + if (item2.type == 1) ; - else if (item.type == 3) { + else if (item2.type == 3) { uni.navigateTo({ url: "/pagesUser/pages/systemSettings/systemSettings" }); - } else if (item.type == 4) { + } else if (item2.type == 4) { uni.navigateTo({ url: "/pagesUser/pages/securitySettings/securitySettings" }); - } else if (item.type == 5) + } else if (item2.type == 5) ; - else if (item.type == 6) { + else if (item2.type == 6) { updateApp(); - } else if (item.type == 8) { + } else if (item2.type == 8) { gologin(); } } function removeall() { const res = uni.getStorageInfoSync(); - res.keys.map((item) => { - if (item == "loginuser" || item == "HistoryDate" || item == "setip" || item == "checkname" || item.indexOf("IMAGE_CACHE_INFO") != -1) { + res.keys.map((item2) => { + if (item2 == "loginuser" || item2 == "HistoryDate" || item2 == "setip" || item2 == "checkname" || item2.indexOf("IMAGE_CACHE_INFO") != -1) { return; } - uni.removeStorageSync(item); + uni.removeStorageSync(item2); }); uni.reLaunch({ url: "/pages/login/login" @@ -9734,18 +9734,18 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(butlist), (item) => { + vue.renderList(vue.unref(butlist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - onClick: ($event) => checkitem(item) + onClick: ($event) => checkitem(item2) }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("image", { - src: item.icon + src: item2.icon }, null, 8, ["src"]), vue.createElementVNode( "view", null, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -9791,11 +9791,11 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(warehouseList), (item) => { + vue.renderList(vue.unref(warehouseList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - onClick: ($event) => ckeckitemck(item), - class: vue.normalizeClass(item.name == vue.unref(checkitems).name ? "items xzck" : "items") - }, vue.toDisplayString(item.name), 11, ["onClick"]); + onClick: ($event) => ckeckitemck(item2), + class: vue.normalizeClass(item2.name == vue.unref(checkitems).name ? "items xzck" : "items") + }, vue.toDisplayString(item2.name), 11, ["onClick"]); }), 256 /* UNKEYED_FRAGMENT */ @@ -9949,13 +9949,13 @@ This will fail in production if not fixed.`); let maxarr = []; if (!data[0]) return; - for (let item of data[0].children) { + for (let item2 of data[0].children) { let arr = { type: 1, - name: item.name, + name: item2.name, minilist: [] }; - for (let ite of item.children) { + for (let ite of item2.children) { let result = null; if (ite.source != null) { result = await getImageCache(ite.source); @@ -9971,14 +9971,14 @@ This will fail in production if not fixed.`); } uni.setStorageSync("homerouter", maxarr); const _taskArr = []; - for (let item of data[1].children) { + for (let item2 of data[1].children) { let arr = { type: 1, - name: item.name, + name: item2.name, minilist: [] }; - if (item.children) { - for (let ite of item.children) { + if (item2.children) { + for (let ite of item2.children) { formatAppLog("log", "at pages/taskList/taskList.vue:124", "getImageCache(ite.source) :>> ", getImageCache(ite.source)); let result = null; if (ite.source != null) { @@ -9992,15 +9992,15 @@ This will fail in production if not fixed.`); arr.minilist.push(obj); } } else { - formatAppLog("log", "at pages/taskList/taskList.vue:140", "getImageCache(item.source) :>> ", getImageCache(item.source)); + formatAppLog("log", "at pages/taskList/taskList.vue:140", "getImageCache(item.source) :>> ", getImageCache(item2.source)); let result = null; - if (item.source != null) { - result = await getImageCache(item.source); + if (item2.source != null) { + result = await getImageCache(item2.source); } let obj = { icon: result, - name: item.name, - router: item.path + name: item2.name, + router: item2.path }; arr.minilist.push(obj); } @@ -10027,15 +10027,15 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(tablist), (item) => { + vue.renderList(vue.unref(tablist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "mabox", - key: item.name + key: item2.name }, [ vue.createElementVNode( "view", { class: "boxtitl" }, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ), @@ -10043,7 +10043,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.minilist, (ite) => { + vue.renderList(item2.minilist, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { onClick: ($event) => gopathpage(ite.router), key: ite.name @@ -11545,7 +11545,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($data.weekdayArr, (item, index2) => { + vue.renderList($data.weekdayArr, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { key: index2, class: "date-weekday-item" @@ -11557,7 +11557,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($data.daysArr, (item, index2) => { + vue.renderList($data.daysArr, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: vue.normalizeClass(["date-weekday-item", { "l-opacity": $options.isDisable($data.year, $data.month, index2 + 1), @@ -11802,10 +11802,10 @@ This will fail in production if not fixed.`); uni.hideLoading(); } } - function gostockuplist(item) { - formatAppLog("log", "at pagesHome/pages/pickingScan/pickingScan.vue:257", "item :>> ", item); + function gostockuplist(item2) { + formatAppLog("log", "at pagesHome/pages/pickingScan/pickingScan.vue:257", "item :>> ", item2); uni.navigateTo({ - url: "/pagesHome/pages/PickingScanList/PickingScanList?id=" + item.id + "&stockupArea=" + item.stockupArea + "&typeService=" + item.typeService + url: "/pagesHome/pages/PickingScanList/PickingScanList?id=" + item2.id + "&stockupArea=" + item2.stockupArea + "&typeService=" + item2.typeService }); } function cleartime() { @@ -11973,14 +11973,14 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(dataList), (item) => { - return vue.openBlock(), vue.createElementBlock("view", { key: item }, [ + vue.renderList(vue.unref(dataList), (item2) => { + return vue.openBlock(), vue.createElementBlock("view", { key: item2 }, [ vue.createElementVNode("view", { class: "topbox" }, [ vue.createElementVNode("view", { class: "type1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配车类型:"), vue.createTextVNode( - vue.toDisplayString(item.typeServiceStr), + vue.toDisplayString(item2.typeServiceStr), 1 /* TEXT */ ) @@ -11988,7 +11988,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货是否完成:"), vue.createTextVNode( - vue.toDisplayString(item.stockupStatusStr), + vue.toDisplayString(item2.stockupStatusStr), 1 /* TEXT */ ) @@ -11998,7 +11998,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "客户:"), vue.createTextVNode( - vue.toDisplayString(item.customer), + vue.toDisplayString(item2.customer), 1 /* TEXT */ ) @@ -12006,7 +12006,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货区域:"), vue.createTextVNode( - vue.toDisplayString(item.stockupArea), + vue.toDisplayString(item2.stockupArea), 1 /* TEXT */ ) @@ -12016,7 +12016,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "库位:"), vue.createTextVNode( - vue.toDisplayString(item.warehouseArea), + vue.toDisplayString(item2.warehouseArea), 1 /* TEXT */ ) @@ -12026,7 +12026,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "托盘:"), vue.createTextVNode( - vue.toDisplayString(item.trays), + vue.toDisplayString(item2.trays), 1 /* TEXT */ ) @@ -12038,7 +12038,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderNum), + vue.toDisplayString(item2.orderNum), 1 /* TEXT */ ) @@ -12048,7 +12048,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.planNum + item.inventoryNub), + vue.toDisplayString(item2.planNum + item2.inventoryNub), 1 /* TEXT */ ) @@ -12058,7 +12058,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.realNum), + vue.toDisplayString(item2.realNum), 1 /* TEXT */ ) @@ -12068,20 +12068,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.inventoryNub), + vue.toDisplayString(item2.inventoryNub), 1 /* TEXT */ ) ]) ]) ]), - Number(item.stockupStatus) != 40 ? (vue.openBlock(), vue.createElementBlock("view", { + Number(item2.stockupStatus) != 40 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "bts" }, [ vue.createCommentVNode(' \r\n 备货完成\r\n '), vue.createElementVNode("view", { - onClick: ($event) => gostockuplist(item) + onClick: ($event) => gostockuplist(item2) }, " 去备货 ", 8, ["onClick"]) ])) : vue.createCommentVNode("v-if", true) ]); @@ -12278,7 +12278,7 @@ This will fail in production if not fixed.`); _ctx.mode === "spinner" ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList($data.array12, (item, index2) => { + vue.renderList($data.array12, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { key: index2, class: "u-loading-icon__dot" @@ -12323,12 +12323,12 @@ This will fail in production if not fixed.`); }, {}); } function formatImage(res) { - return res.tempFiles.map((item) => ({ - ...pickExclude(item, ["path"]), + return res.tempFiles.map((item2) => ({ + ...pickExclude(item2, ["path"]), type: "image", - url: item.path, - thumb: item.path, - size: item.size + url: item2.path, + thumb: item2.path, + size: item2.size })); } function formatVideo(res) { @@ -12545,11 +12545,11 @@ This will fail in production if not fixed.`); maxCount } = this; const lists = fileList.map( - (item) => Object.assign(Object.assign({}, item), { + (item2) => Object.assign(Object.assign({}, item2), { // 如果item.url为本地选择的blob文件的话,无法判断其为video还是image,此处优先通过accept做判断处理 - isImage: this.accept === "image" || uni.$u.test.image(item.url || item.thumb), - isVideo: this.accept === "video" || uni.$u.test.video(item.url || item.thumb), - deletable: typeof item.deletable === "boolean" ? item.deletable : this.deletable + isImage: this.accept === "image" || uni.$u.test.image(item2.url || item2.thumb), + isVideo: this.accept === "video" || uni.$u.test.video(item2.url || item2.thumb), + deletable: typeof item2.deletable === "boolean" ? item2.deletable : this.deletable }) ); this.lists = lists; @@ -12632,7 +12632,7 @@ This will fail in production if not fixed.`); maxSize, afterRead } = this; - const oversize = Array.isArray(file2) ? file2.some((item) => item.size > maxSize) : file2.size > maxSize; + const oversize = Array.isArray(file2) ? file2.some((item2) => item2.size > maxSize) : file2.size > maxSize; if (oversize) { this.$emit("oversize", Object.assign({ file: file2 @@ -12655,13 +12655,13 @@ This will fail in production if not fixed.`); ); }, // 预览图片 - onPreviewImage(item) { - if (!item.isImage || !this.previewFullImage) + onPreviewImage(item2) { + if (!item2.isImage || !this.previewFullImage) return; uni.previewImage({ // 先filter找出为图片的item,再返回filter结果中的图片url - urls: this.lists.filter((item2) => this.accept === "image" || uni.$u.test.image(item2.url || item2.thumb)).map((item2) => item2.url || item2.thumb), - current: item.url || item.thumb, + urls: this.lists.filter((item3) => this.accept === "image" || uni.$u.test.image(item3.url || item3.thumb)).map((item3) => item3.url || item3.thumb), + current: item2.url || item2.thumb, fail() { uni.$u.toast("预览图片失败"); } @@ -12677,8 +12677,8 @@ This will fail in production if not fixed.`); lists } = this.data; wx.previewMedia({ - sources: lists.filter((item) => isVideoFile(item)).map( - (item) => Object.assign(Object.assign({}, item), { + sources: lists.filter((item2) => isVideoFile(item2)).map( + (item2) => Object.assign(Object.assign({}, item2), { type: "video" }) ), @@ -12692,10 +12692,10 @@ This will fail in production if not fixed.`); const { index: index2 } = event.currentTarget.dataset; - const item = this.data.lists[index2]; + const item2 = this.data.lists[index2]; this.$emit( "clickPreview", - Object.assign(Object.assign({}, item), this.getDetail(index2)) + Object.assign(Object.assign({}, item2), this.getDetail(index2)) ); } } @@ -12714,17 +12714,17 @@ This will fail in production if not fixed.`); _ctx.previewImage ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList($data.lists, (item, index2) => { + vue.renderList($data.lists, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "u-upload__wrap__preview", key: index2 }, [ - item.isImage || item.type && item.type === "image" ? (vue.openBlock(), vue.createElementBlock("image", { + item2.isImage || item2.type && item2.type === "image" ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, - src: item.thumb || item.url, + src: item2.thumb || item2.url, mode: _ctx.imageMode, class: "u-upload__wrap__preview__image", - onClick: ($event) => $options.onPreviewImage(item), + onClick: ($event) => $options.onPreviewImage(item2), style: vue.normalizeStyle([{ width: _ctx.$u.addUnit(_ctx.width), height: _ctx.$u.addUnit(_ctx.height) @@ -12736,22 +12736,22 @@ This will fail in production if not fixed.`); vue.createVNode(_component_u_icon, { color: "#80CBF9", size: "26", - name: item.isVideo || item.type && item.type === "video" ? "movie" : "folder" + name: item2.isVideo || item2.type && item2.type === "video" ? "movie" : "folder" }, null, 8, ["name"]), vue.createElementVNode( "text", { class: "u-upload__wrap__preview__other__text" }, - vue.toDisplayString(item.isVideo || item.type && item.type === "video" ? "视频" : "文件"), + vue.toDisplayString(item2.isVideo || item2.type && item2.type === "video" ? "视频" : "文件"), 1 /* TEXT */ ) ])), - item.status === "uploading" || item.status === "failed" ? (vue.openBlock(), vue.createElementBlock("view", { + item2.status === "uploading" || item2.status === "failed" ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "u-upload__status" }, [ vue.createElementVNode("view", { class: "u-upload__status__icon" }, [ - item.status === "failed" ? (vue.openBlock(), vue.createBlock(_component_u_icon, { + item2.status === "failed" ? (vue.openBlock(), vue.createBlock(_component_u_icon, { key: 0, name: "close-circle", color: "#ffffff", @@ -12763,18 +12763,18 @@ This will fail in production if not fixed.`); color: "#ffffff" })) ]), - item.message ? (vue.openBlock(), vue.createElementBlock( + item2.message ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0, class: "u-upload__status__message" }, - vue.toDisplayString(item.message), + vue.toDisplayString(item2.message), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true) ])) : vue.createCommentVNode("v-if", true), - item.status !== "uploading" && (_ctx.deletable || item.deletable) ? (vue.openBlock(), vue.createElementBlock("view", { + item2.status !== "uploading" && (_ctx.deletable || item2.deletable) ? (vue.openBlock(), vue.createElementBlock("view", { key: 3, class: "u-upload__deletable", onClick: vue.withModifiers(($event) => $options.deleteItem(index2), ["stop"]) @@ -12787,7 +12787,7 @@ This will fail in production if not fixed.`); }) ]) ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true), - item.status === "success" ? (vue.openBlock(), vue.createElementBlock("view", { + item2.status === "success" ? (vue.openBlock(), vue.createElementBlock("view", { key: 4, class: "u-upload__success" }, [ @@ -12946,12 +12946,12 @@ This will fail in production if not fixed.`); } } if (data.type === 1) { - for (let item of response2.data.records) { - details.NoTrainData.push(item); + for (let item2 of response2.data.records) { + details.NoTrainData.push(item2); } } else { - for (let item of response2.data.records) { - details.HaveLeftnData.push(item); + for (let item2 of response2.data.records) { + details.HaveLeftnData.push(item2); } } } catch (err) { @@ -12961,19 +12961,19 @@ This will fail in production if not fixed.`); return null; } } - function gostockuplist(item) { + function gostockuplist(item2) { uni.navigateTo({ - url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item.id + "&type=1" + url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item2.id + "&type=1" }); } - function gostockuplistBytray(item) { + function gostockuplistBytray(item2) { uni.navigateTo({ - url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item.id + "&type=2" + url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item2.id + "&type=2" }); } - const handleShowImg = async (item) => { - formatAppLog("log", "at pagesHome/pages/StowageList/StowageList.vue:261", "item :>> ", item); - const res = await postFindFinanceList({ loadId: item.id }); + const handleShowImg = async (item2) => { + formatAppLog("log", "at pagesHome/pages/StowageList/StowageList.vue:261", "item :>> ", item2); + const res = await postFindFinanceList({ loadId: item2.id }); const { code: code2, data } = res; if (code2 !== 200) return; @@ -12989,7 +12989,7 @@ This will fail in production if not fixed.`); }); formatAppLog("log", "at pagesHome/pages/StowageList/StowageList.vue:279", "details.imgFileList :>> ", details.imgFileList); const submitData = { - loadId: item.id, + loadId: item2.id, url: details.imgFileList.map((val) => val.url).join(",") }; const res2 = await postAddContractByLoadId(submitData); @@ -13010,12 +13010,12 @@ This will fail in production if not fixed.`); const writeArr = ["jpg", "jpeg", "png"]; const PromiseAll = []; for (let i2 = 0; i2 < event.file.length; i2++) { - const item = event.file[i2]; - const type2 = item.name.split(".").slice(-1)[0]; + const item2 = event.file[i2]; + const type2 = item2.name.split(".").slice(-1)[0]; if (writeArr.indexOf(type2) === -1) continue; formatAppLog("log", "at pagesHome/pages/StowageList/StowageList.vue:318", "type :>> ", type2); - PromiseAll.push(api.upfile(item.url)); + PromiseAll.push(api.upfile(item2.url)); } const res = await Promise.all(PromiseAll); formatAppLog("log", "at pagesHome/pages/StowageList/StowageList.vue:326", "res :>> ", res); @@ -13152,8 +13152,8 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(dataList), (item) => { - return vue.openBlock(), vue.createElementBlock("view", { key: item }, [ + vue.renderList(vue.unref(dataList), (item2) => { + return vue.openBlock(), vue.createElementBlock("view", { key: item2 }, [ vue.createElementVNode("view", { class: "topbox font-color" }, [ vue.createElementVNode("view", { class: "type1" }, [ vue.createElementVNode("view", null, [ @@ -13161,7 +13161,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.carsNo), + vue.toDisplayString(item2.carsNo), 1 /* TEXT */ ) @@ -13171,7 +13171,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.carNumber), + vue.toDisplayString(item2.carNumber), 1 /* TEXT */ ) @@ -13183,7 +13183,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.planLoadingNumber + "/" + item.realLoadingNumber), + vue.toDisplayString(item2.planLoadingNumber + "/" + item2.realLoadingNumber), 1 /* TEXT */ ) @@ -13199,7 +13199,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.driverName), + vue.toDisplayString(item2.driverName), 1 /* TEXT */ ) @@ -13209,7 +13209,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.driverMobile), + vue.toDisplayString(item2.driverMobile), 1 /* TEXT */ ) @@ -13220,7 +13220,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(vue.unref(details).loadType[item.loadType]), + vue.toDisplayString(vue.unref(details).loadType[item2.loadType]), 1 /* TEXT */ ) @@ -13230,7 +13230,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.carsLineName), + vue.toDisplayString(item2.carsLineName), 1 /* TEXT */ ) @@ -13241,13 +13241,13 @@ This will fail in production if not fixed.`); class: "bts flex-c-sa" }, [ vue.createElementVNode("view", { - onClick: ($event) => handleShowImg(item) + onClick: ($event) => handleShowImg(item2) }, " 上传运输合同 ", 8, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => gostockuplistBytray(item) + onClick: ($event) => gostockuplistBytray(item2) }, " 整托装车 ", 8, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => gostockuplist(item) + onClick: ($event) => gostockuplist(item2) }, " 按件装车 ", 8, ["onClick"]) ])) : vue.createCommentVNode("v-if", true) ]); @@ -14052,22 +14052,22 @@ This will fail in production if not fixed.`); } }); }; - const handleDetails = async (item, index2, type2) => { - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:587", "item :>> ", item); + const handleDetails = async (item2, index2, type2) => { + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:587", "item :>> ", item2); if (details.listcheckindex == index2) { details.listcheckindex = -1; } else { details.listcheckindex = index2; try { - item.distributionAppParcelListVOS = []; + item2.distributionAppParcelListVOS = []; uni.showLoading({ mask: true }); - const res = await postFindCarsLoadingOrderDetail({ loadId: details.loadId, orderCode: item.orderCode }); + const res = await postFindCarsLoadingOrderDetail({ loadId: details.loadId, orderCode: item2.orderCode }); if (res.code !== 200) return; - item.distributionAppParcelListVOS = res.data; - formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:602", "item.distributionAppParcelListVOS :>> ", item.distributionAppParcelListVOS); + item2.distributionAppParcelListVOS = res.data; + formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:602", "item.distributionAppParcelListVOS :>> ", item2.distributionAppParcelListVOS); formatAppLog("log", "at pagesHome/pages/StowageListDetails/StowageListDetails.vue:603", "res :>> ", res); } catch (e2) { } finally { @@ -14269,22 +14269,22 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item, index2) => { + vue.renderList(vue.unref(datalist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, - { key: item }, + { key: item2 }, [ vue.createCommentVNode(" 定制品 "), vue.unref(orderStatus) == 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "itec", - onClick: ($event) => handleDetails(item, index2) + onClick: ($event) => handleDetails(item2, index2) }, [ vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "订单编号:"), vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -14294,7 +14294,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "运单号:"), vue.createTextVNode( - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -14304,7 +14304,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "订单总数:"), vue.createTextVNode( - vue.toDisplayString(item.totalNum), + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ) @@ -14312,7 +14312,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, " 计划数/已扫数:"), vue.createTextVNode( - vue.toDisplayString(item.planNum + "/" + item.realNum), + vue.toDisplayString(item2.planNum + "/" + item2.realNum), 1 /* TEXT */ ) @@ -14325,7 +14325,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.distributionAppParcelListVOS, (ite) => { + vue.renderList(item2.distributionAppParcelListVOS, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { key: ite, class: "box" @@ -14371,13 +14371,13 @@ This will fail in production if not fixed.`); /* KEYED_FRAGMENT */ )) ])) : vue.createCommentVNode("v-if", true), - item.complete ? (vue.openBlock(), vue.createElementBlock( + item2.complete ? (vue.openBlock(), vue.createElementBlock( "view", { key: 1, - class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3") + class: vue.normalizeClass(item2.completecode == 3 ? "tip tp1" : item2.completecode == 1 ? "tip tp2" : "tip tp3") }, - vue.toDisplayString(item.complete), + vue.toDisplayString(item2.complete), 3 /* TEXT, CLASS */ )) : vue.createCommentVNode("v-if", true) @@ -14388,13 +14388,13 @@ This will fail in production if not fixed.`); vue.createCommentVNode(" 零担 "), vue.createElementVNode("view", { class: "itec", - onClick: ($event) => handleDetails(item, index2) + onClick: ($event) => handleDetails(item2, index2) }, [ vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "订单编号:"), vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -14404,7 +14404,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "运单号:"), vue.createTextVNode( - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -14414,7 +14414,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划数量:"), vue.createTextVNode( - vue.toDisplayString(item.planNum || 0), + vue.toDisplayString(item2.planNum || 0), 1 /* TEXT */ ) @@ -14422,7 +14422,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "装车数量:"), vue.createTextVNode( - vue.toDisplayString(item.loadingNum || 0), + vue.toDisplayString(item2.loadingNum || 0), 1 /* TEXT */ ) @@ -14431,7 +14431,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "flex-c-sb" }, [ vue.createElementVNode("view", { class: "button", - onClick: vue.withModifiers(($event) => handleShowZeroStowage(item), ["stop"]) + onClick: vue.withModifiers(($event) => handleShowZeroStowage(item2), ["stop"]) }, " 零担装车 ", 8, ["onClick"]) ]), vue.unref(listcheckindex) == index2 ? (vue.openBlock(), vue.createElementBlock("view", { @@ -14441,7 +14441,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.distributionAppParcelListVOS, (ite) => { + vue.renderList(item2.distributionAppParcelListVOS, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { key: ite, class: "box" @@ -14487,13 +14487,13 @@ This will fail in production if not fixed.`); /* KEYED_FRAGMENT */ )) ])) : vue.createCommentVNode("v-if", true), - item.complete ? (vue.openBlock(), vue.createElementBlock( + item2.complete ? (vue.openBlock(), vue.createElementBlock( "view", { key: 1, - class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3") + class: vue.normalizeClass(item2.completecode == 3 ? "tip tp1" : item2.completecode == 1 ? "tip tp2" : "tip tp3") }, - vue.toDisplayString(item.complete), + vue.toDisplayString(item2.complete), 3 /* TEXT, CLASS */ )) : vue.createCommentVNode("v-if", true) @@ -14511,7 +14511,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { style: { "word-break": "break-all" } }, [ vue.createElementVNode("view", { style: { "color": "#90A0AF" } }, "订单编号:"), vue.createTextVNode( - " " + vue.toDisplayString(item.orderCode || "暂无数据"), + " " + vue.toDisplayString(item2.orderCode || "暂无数据"), 1 /* TEXT */ ) @@ -14519,7 +14519,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("view", { style: { "color": "#90A0AF" } }, "运单号:"), vue.createTextVNode( - " " + vue.toDisplayString(item.waybillNo || "暂无数据"), + " " + vue.toDisplayString(item2.waybillNo || "暂无数据"), 1 /* TEXT */ ) @@ -14529,7 +14529,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { style: { "word-break": "break-all" } }, [ vue.createElementVNode("view", { style: { "color": "#90A0AF" } }, "码值:"), vue.createTextVNode( - " " + vue.toDisplayString(item.scanCode || 0), + " " + vue.toDisplayString(item2.scanCode || 0), 1 /* TEXT */ ) @@ -14537,7 +14537,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("view", { style: { "color": "#90A0AF" } }, "装车数量:"), vue.createTextVNode( - " " + vue.toDisplayString(item.num || 0), + " " + vue.toDisplayString(item2.num || 0), 1 /* TEXT */ ) @@ -14545,15 +14545,15 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "deleteBtn button", - onClick: vue.withModifiers(($event) => handleDelete(item, 3), ["stop"]) + onClick: vue.withModifiers(($event) => handleDelete(item2, 3), ["stop"]) }, " 删除 ", 8, ["onClick"]), - item.complete ? (vue.openBlock(), vue.createElementBlock( + item2.complete ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, - class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3") + class: vue.normalizeClass(item2.completecode == 3 ? "tip tp1" : item2.completecode == 1 ? "tip tp2" : "tip tp3") }, - vue.toDisplayString(item.complete), + vue.toDisplayString(item2.complete), 3 /* TEXT, CLASS */ )) : vue.createCommentVNode("v-if", true) @@ -14670,23 +14670,23 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).trayInfo.zeroList, (item) => { + vue.renderList(vue.unref(details).trayInfo.zeroList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.associationValue, + key: item2.associationValue, class: "pop_row" }, [ vue.createElementVNode("view", { class: "flex-c-sb" }, [ vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.associationValue), + "订单号:" + vue.toDisplayString(item2.associationValue), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.num), + "数量:" + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -14700,23 +14700,23 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).trayInfo.packageList, (item) => { + vue.renderList(vue.unref(details).trayInfo.packageList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item, + key: item2, class: "pop_row" }, [ vue.createElementVNode("view", { class: "flex-c-sb" }, [ vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.associationValue), + "包条码:" + vue.toDisplayString(item2.associationValue), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.num), + "数量:" + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -14842,12 +14842,12 @@ This will fail in production if not fixed.`); } } if (data.type === 1) { - for (let item of response2.data.records) { - details.NoTrainData.push(item); + for (let item2 of response2.data.records) { + details.NoTrainData.push(item2); } } else { - for (let item of response2.data.records) { - details.HaveLeftnData.push(item); + for (let item2 of response2.data.records) { + details.HaveLeftnData.push(item2); } } } catch (err) { @@ -14857,19 +14857,19 @@ This will fail in production if not fixed.`); return null; } } - function gostockuplist(item) { + function gostockuplist(item2) { uni.navigateTo({ - url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item.id + "&type=1" + url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item2.id + "&type=1" }); } - function gostockuplistBytray(item) { + function gostockuplistBytray(item2) { uni.navigateTo({ - url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item.id + "&type=2" + url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item2.id + "&type=2" }); } - const handleDetailsByOrder = (item, type2) => { + const handleDetailsByOrder = (item2, type2) => { uni.navigateTo({ - url: "/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails?id=" + item.id + "&type=" + type2 + "&page=RelayScanList" + url: "/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails?id=" + item2.id + "&type=" + type2 + "&page=RelayScanList" }); }; function cleartime() { @@ -14985,8 +14985,8 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(dataList), (item) => { - return vue.openBlock(), vue.createElementBlock("view", { key: item }, [ + vue.renderList(vue.unref(dataList), (item2) => { + return vue.openBlock(), vue.createElementBlock("view", { key: item2 }, [ vue.createElementVNode("view", { class: "topbox font-color" }, [ vue.createElementVNode("view", { class: "type1" }, [ vue.createElementVNode("view", null, [ @@ -14994,7 +14994,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.carsNo), + vue.toDisplayString(item2.carsNo), 1 /* TEXT */ ) @@ -15006,7 +15006,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.carrierOrderCode), + vue.toDisplayString(item2.carrierOrderCode), 1 /* TEXT */ ) @@ -15018,7 +15018,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.carrierName), + vue.toDisplayString(item2.carrierName), 1 /* TEXT */ ) @@ -15030,7 +15030,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.driverName), + vue.toDisplayString(item2.driverName), 1 /* TEXT */ ) @@ -15042,7 +15042,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(Number(item.isSettlement) !== 1 ? "已结算" : "未结算"), + vue.toDisplayString(Number(item2.isSettlement) !== 1 ? "已结算" : "未结算"), 1 /* TEXT */ ) @@ -15054,7 +15054,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.planLoadingNumber + " / " + item.realLoadingNumber), + vue.toDisplayString(item2.planLoadingNumber + " / " + item2.realLoadingNumber), 1 /* TEXT */ ) @@ -15066,20 +15066,20 @@ This will fail in production if not fixed.`); class: "bts" }, [ vue.createElementVNode("view", { - onClick: ($event) => gostockuplistBytray(item) + onClick: ($event) => gostockuplistBytray(item2) }, " 整托装车 ", 8, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => gostockuplist(item) + onClick: ($event) => gostockuplist(item2) }, " 按件装车 ", 8, ["onClick"]) ])) : (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "bts" }, [ vue.createElementVNode("view", { - onClick: ($event) => handleDetailsByOrder(item, 2) + onClick: ($event) => handleDetailsByOrder(item2, 2) }, " 整托卸车 ", 8, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => handleDetailsByOrder(item, 1) + onClick: ($event) => handleDetailsByOrder(item2, 1) }, " 按件卸车 ", 8, ["onClick"]) ])) ]); @@ -15237,7 +15237,7 @@ This will fail in production if not fixed.`); }); } else { uni.navigateTo({ - url: "/pagesHome/pages/billsList/billsList?trayCode=" + res.data.data.trayCode + "&trayType=" + res.data.data.trayType + url: "/pagesHome/pages/billsList/billsList?trayCode=" + res.data.data.trayCode + "&trayType=" + res.data.data.trayType + "&pageName=" + item.trayTypeName }); } } @@ -15263,9 +15263,9 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/codePlateBracket/codePlateBracket.vue:278", "err :>> ", err); } } - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/billsList/billsList?trayCode=" + item.trayCode + "&trayType=" + item.trayType + url: "/pagesHome/pages/billsList/billsList?trayCode=" + item2.trayCode + "&trayType=" + item2.trayType + "&pageName=" + item2.trayTypeName }); } function showCalendar() { @@ -15370,7 +15370,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "headtopv" }, [ vue.createElementVNode("view", null, [ @@ -15378,13 +15378,13 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(`${item.trayName} ( ${item.trayCode} )`), + vue.toDisplayString(`${item2.trayName} ( ${item2.trayCode} )`), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { - onClick: ($event) => goorderdetail(item) + onClick: ($event) => goorderdetail(item2) }, "继续分拣", 8, ["onClick"]) ]), vue.createElementVNode("view", { class: "contentbx" }, [ @@ -15397,7 +15397,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.marketName) + vue.toDisplayString(item.filterValue), + vue.toDisplayString(item2.marketName) + vue.toDisplayString(item2.filterValue), 1 /* TEXT */ ) @@ -15410,7 +15410,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.trayTypeName), + vue.toDisplayString(item2.trayTypeName), 1 /* TEXT */ ) @@ -15423,7 +15423,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.remark), + vue.toDisplayString(item2.remark), 1 /* TEXT */ ) @@ -15435,7 +15435,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.totalNum), + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ) @@ -15445,7 +15445,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ) @@ -15455,7 +15455,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.stockNum), + vue.toDisplayString(item2.stockNum), 1 /* TEXT */ ) @@ -15465,7 +15465,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.stockTotalNum), + vue.toDisplayString(item2.stockTotalNum), 1 /* TEXT */ ) @@ -15641,23 +15641,23 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).data, (item, index2) => { + vue.renderList(vue.unref(details).data, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.id, + key: item2.id, onClick: ($event) => handleChooseStatus(index2), class: vue.normalizeClass({ "list_container": true, "active": vue.unref(details).chooseIndex === index2 }) }, [ vue.createElementVNode( "view", { class: "list_row" }, - " 提货批次: " + vue.toDisplayString(item.billladingCode || "暂无数据"), + " 提货批次: " + vue.toDisplayString(item2.billladingCode || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "list_row" }, - " 路线: " + vue.toDisplayString(item.lineNameTitle || "暂无数据"), + " 路线: " + vue.toDisplayString(item2.lineNameTitle || "暂无数据"), 1 /* TEXT */ ), @@ -15665,14 +15665,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "" }, - " 仓库名称:" + vue.toDisplayString(item.warehouseName || "暂无数据"), + " 仓库名称:" + vue.toDisplayString(item2.warehouseName || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - " 承运商:" + vue.toDisplayString(item.carrierName || "暂无数据"), + " 承运商:" + vue.toDisplayString(item2.carrierName || "暂无数据"), 1 /* TEXT */ ) @@ -15681,14 +15681,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "" }, - " 司机名字:" + vue.toDisplayString(item.driverName || "暂无数据"), + " 司机名字:" + vue.toDisplayString(item2.driverName || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - " 司机电话:" + vue.toDisplayString(item.driverPhone || "暂无数据"), + " 司机电话:" + vue.toDisplayString(item2.driverPhone || "暂无数据"), 1 /* TEXT */ ) @@ -15696,7 +15696,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "list_row" }, - " 备注:" + vue.toDisplayString(item.remark || "暂无数据"), + " 备注:" + vue.toDisplayString(item2.remark || "暂无数据"), 1 /* TEXT */ ), @@ -15704,7 +15704,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "list_tips" }, - vue.toDisplayString(vue.unref(details).type[Number(item.billladingStatus)] || "暂无状态数据"), + vue.toDisplayString(vue.unref(details).type[Number(item2.billladingStatus)] || "暂无状态数据"), 1 /* TEXT */ ) @@ -15746,7 +15746,7 @@ This will fail in production if not fixed.`); const { scanState } = storeToRefs(useSystemSettingsStore()); const option = vue.reactive({ // 标题 - title: "提货批次", + title: "码板打托", // 下拉刷新回调函数 async pullDownRefreshInitPage() { details.chooseIndex = -1; @@ -15809,7 +15809,7 @@ This will fail in production if not fixed.`); onLoad((op) => { formatAppLog("log", "at pagesHome/pages/PickUpLotList/PickUpLotList.vue:226", "op :>> ", op); details.pageInfo = JSON.parse(op.pageInfo); - utils.ttsspke("请扫描或输入托盘码"); + utils.ttsspke("请扫描或输入包条码"); }); onShow(async () => { uni.$off("scancodedate"); @@ -15830,27 +15830,31 @@ This will fail in production if not fixed.`); }; const res = await warehouseTrayTypeorderScanTrayCode(_submitData); const { code: code2, data } = res; - formatAppLog("log", "at pagesHome/pages/PickUpLotList/PickUpLotList.vue:265", "111 :>> ", 111); + formatAppLog("log", "at pagesHome/pages/PickUpLotList/PickUpLotList.vue:265", "data :>> ", data); + formatAppLog("log", "at pagesHome/pages/PickUpLotList/PickUpLotList.vue:267", "111 :>> ", 111); if (code2 !== 200) return; if (res.data.isHasData == 1) { - details.detauser = res.data.data; - for (let item of details.detauser.packageList) { - item.scanNum = item.scanNum || 0; - item.orderTotalNum = item.orderTotalNum || 0; - item.residueNum = (item.orderTotalNum || 0) - (item.scanNum || 0); + details.detauser = data.data; + details.pageInfo.trayName = data.data.trayName; + details.pageInfo.pageName = data.data.trayTypeName; + formatAppLog("log", "at pagesHome/pages/PickUpLotList/PickUpLotList.vue:276", "details.pageInfo :>> ", details.pageInfo); + for (let item2 of details.detauser.packageList) { + item2.scanNum = item2.scanNum || 0; + item2.orderTotalNum = item2.orderTotalNum || 0; + item2.residueNum = (item2.orderTotalNum || 0) - (item2.scanNum || 0); } details.data = details.detauser.packageList; } return null; } catch (err) { - formatAppLog("log", "at pagesHome/pages/PickUpLotList/PickUpLotList.vue:295", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/PickUpLotList/PickUpLotList.vue:301", "err :>> ", err); } finally { return null; } } const reachDown = () => { - formatAppLog("log", "at pagesHome/pages/PickUpLotList/PickUpLotList.vue:303", "111 :>> ", 111); + formatAppLog("log", "at pagesHome/pages/PickUpLotList/PickUpLotList.vue:309", "111 :>> ", 111); details.page.pageNum += 1; if (details.page.total <= details.data.length) return uni.showToast({ @@ -15859,9 +15863,9 @@ This will fail in production if not fixed.`); }); initpage(); }; - async function godetaillist(item) { + async function godetaillist(item2) { uni.navigateTo({ - url: "/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList?orderCode=" + item.dataCode + "&trayCode=" + details.pageInfo.trayCode + url: "/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList?orderCode=" + item2.dataCode + "&trayCode=" + details.pageInfo.trayCode }); } const handleSearch = () => { @@ -15954,14 +15958,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - " 订单在托数:" + vue.toDisplayString(vue.unref(details).detauser.orderlNum || "暂无数据"), + " 订单在托数:" + vue.toDisplayString(vue.unref(details).detauser.orderlNum), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - " 订单总数:" + vue.toDisplayString(vue.unref(details).detauser.orderTotalNum || "暂无数据"), + " 订单总数:" + vue.toDisplayString(vue.unref(details).detauser.orderTotalNum), 1 /* TEXT */ ) @@ -16015,23 +16019,23 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).data, (item, index2) => { + vue.renderList(vue.unref(details).data, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.id, + key: item2.id, onClick: ($event) => handleChooseStatus(), class: vue.normalizeClass({ "list_container": true, "active": vue.unref(details).chooseIndex === index2 }) }, [ vue.createElementVNode("view", { class: "list_row", - onClick: ($event) => godetaillist(item) - }, " 订单号: " + vue.toDisplayString(item.dataCode || "暂无数据"), 9, ["onClick"]), + onClick: ($event) => godetaillist(item2) + }, " 订单号: " + vue.toDisplayString(item2.dataCode || "暂无数据"), 9, ["onClick"]), vue.createElementVNode("view", { class: "list_row" }, [ vue.createElementVNode("view", { class: "" }, [ vue.createTextVNode(" 总数: "), vue.createElementVNode( "text", null, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ) @@ -16041,7 +16045,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { style: { "color": "#10d269" } }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ) @@ -16051,9 +16055,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { - style: vue.normalizeStyle({ color: item.residueNum > 0 ? "#f00" : "#000" }) + style: vue.normalizeStyle({ color: item2.residueNum > 0 ? "#f00" : "#000" }) }, - vue.toDisplayString(item.residueNum), + vue.toDisplayString(item2.residueNum), 5 /* TEXT, STYLE */ ) @@ -16065,12 +16069,12 @@ This will fail in production if not fixed.`); { class: vue.normalizeClass({ "list_tips": true, - "none": item.scanNum === 0, - "portion": item.scanNum < item.orderTotalNum && item.scanNum > 0, - "all": item.scanNum === item.orderTotalNum + "none": item2.scanNum === 0, + "portion": item2.scanNum < item2.orderTotalNum && item2.scanNum > 0, + "all": item2.scanNum === item2.orderTotalNum }) }, - vue.toDisplayString(vue.unref(details).type[item.scanNum === item.orderTotalNum ? 3 : item.scanNum !== 0 ? 2 : 1] || "暂无状态数据"), + vue.toDisplayString(vue.unref(details).type[item2.scanNum === item2.orderTotalNum ? 3 : item2.scanNum !== 0 ? 2 : 1] || "暂无状态数据"), 3 /* TEXT, CLASS */ ) @@ -16309,23 +16313,23 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).data, (item, index2) => { + vue.renderList(vue.unref(details).data, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.id, + key: item2.id, onClick: ($event) => handleChooseStatus(index2), class: vue.normalizeClass({ "list_container": true, "active": vue.unref(details).chooseIndex === index2 }) }, [ vue.createElementVNode( "view", { class: "list_row" }, - " 提货批次: " + vue.toDisplayString(item.billladingCode || "暂无数据"), + " 提货批次: " + vue.toDisplayString(item2.billladingCode || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "list_row" }, - " 路线: " + vue.toDisplayString(item.lineNameTitle || "暂无数据"), + " 路线: " + vue.toDisplayString(item2.lineNameTitle || "暂无数据"), 1 /* TEXT */ ), @@ -16333,14 +16337,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "" }, - " 仓库名称:" + vue.toDisplayString(item.warehouseName || "暂无数据"), + " 仓库名称:" + vue.toDisplayString(item2.warehouseName || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - " 承运商:" + vue.toDisplayString(item.carrierName || "暂无数据"), + " 承运商:" + vue.toDisplayString(item2.carrierName || "暂无数据"), 1 /* TEXT */ ) @@ -16349,14 +16353,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "" }, - " 司机名字:" + vue.toDisplayString(item.driverName || "暂无数据"), + " 司机名字:" + vue.toDisplayString(item2.driverName || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - " 司机电话:" + vue.toDisplayString(item.driverPhone || "暂无数据"), + " 司机电话:" + vue.toDisplayString(item2.driverPhone || "暂无数据"), 1 /* TEXT */ ) @@ -16364,7 +16368,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "list_row" }, - " 备注:" + vue.toDisplayString(item.remark || "暂无数据"), + " 备注:" + vue.toDisplayString(item2.remark || "暂无数据"), 1 /* TEXT */ ), @@ -16372,7 +16376,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "list_tips" }, - vue.toDisplayString(vue.unref(details).type[Number(item.billladingStatus)] || "暂无状态数据"), + vue.toDisplayString(vue.unref(details).type[Number(item2.billladingStatus)] || "暂无状态数据"), 1 /* TEXT */ ) @@ -16474,7 +16478,7 @@ This will fail in production if not fixed.`); incomingType: "2" }; if (details.pageInfo.tranNumber) - _submitData.tranNumber = details.pageInfo.tranNumber; + _submitData.customerTrain = details.pageInfo.tranNumber; const res = await postIncomingIncomingPackage(_submitData); if (res.code !== 200) return; @@ -16516,22 +16520,24 @@ This will fail in production if not fixed.`); startDateStr: details.date[0], endDateStr: details.date[1] }; + if (details.pageInfo.tranNumber) + _submitData.customerTrain = details.pageInfo.tranNumber; const res = await postIncomingBillladingBillladingList(_submitData); const { code: code2, data } = res; const { page: page2 } = data; if (code2 !== 200) return; - for (let item of page2.records) { - item.scanNum = item.scanNum || 0; - item.totalNum = item.totalNum || 0; - item.residueNum = (item.totalNum || 0) - (item.scanNum || 0); + for (let item2 of page2.records) { + item2.scanNum = item2.scanNum || 0; + item2.totalNum = item2.totalNum || 0; + item2.residueNum = (item2.totalNum || 0) - (item2.scanNum || 0); } details.data = [...details.data, ...page2.records]; details.page.total = data.total; details.info = data; return null; } catch (err) { - formatAppLog("log", "at pagesHome/pages/onLoadByScan/onLoadByScan.vue:324", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/onLoadByScan/onLoadByScan.vue:326", "err :>> ", err); } finally { return null; } @@ -16557,7 +16563,7 @@ This will fail in production if not fixed.`); icon: "none" }); } - formatAppLog("log", "at pagesHome/pages/onLoadByScan/onLoadByScan.vue:362", e2); + formatAppLog("log", "at pagesHome/pages/onLoadByScan/onLoadByScan.vue:364", e2); details.date[0] = e2.startDate; details.date[1] = e2.endDate; details.datatime = details.date[0] + " 至 " + details.date[1]; @@ -16568,7 +16574,7 @@ This will fail in production if not fixed.`); basicContainer.value.startPullDownRefresh(); } const reachDown = () => { - formatAppLog("log", "at pagesHome/pages/onLoadByScan/onLoadByScan.vue:380", "111 :>> ", 111); + formatAppLog("log", "at pagesHome/pages/onLoadByScan/onLoadByScan.vue:382", "111 :>> ", 111); details.page.pageNum += 1; if (details.page.total <= details.data.length) return uni.showToast({ @@ -16579,9 +16585,9 @@ This will fail in production if not fixed.`); }; const handleChooseStatus = (index2) => { }; - const handleGoDetails = (item) => { + const handleGoDetails = (item2) => { uni.navigateTo({ - url: "/pagesHome/pages/onLoadOrderDetails/onLoadOrderDetails?pageInfo=" + JSON.stringify(item) + url: "/pagesHome/pages/onLoadOrderDetails/onLoadOrderDetails?pageInfo=" + JSON.stringify(item2) }); }; return (_ctx, _cache) => { @@ -16768,23 +16774,23 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).data, (item, index2) => { + vue.renderList(vue.unref(details).data, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.id, + key: item2.id, onClick: ($event) => handleChooseStatus(), class: vue.normalizeClass({ "list_container": true, "active": vue.unref(details).chooseIndex === index2 }) }, [ vue.createElementVNode("view", { class: "list_row", - onClick: ($event) => handleGoDetails(item) - }, " 订单号: " + vue.toDisplayString(item.orderCode || "暂无数据"), 9, ["onClick"]), + onClick: ($event) => handleGoDetails(item2) + }, " 订单号: " + vue.toDisplayString(item2.orderCode || "暂无数据"), 9, ["onClick"]), vue.createElementVNode("view", { class: "list_row" }, [ vue.createElementVNode("view", { class: "" }, [ vue.createTextVNode(" 总数: "), vue.createElementVNode( "text", null, - vue.toDisplayString(item.totalNum), + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ) @@ -16794,7 +16800,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { style: { "color": "#10d269" } }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ) @@ -16804,9 +16810,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { - style: vue.normalizeStyle({ color: item.residueNum > 0 ? "#f00" : "#000" }) + style: vue.normalizeStyle({ color: item2.residueNum > 0 ? "#f00" : "#000" }) }, - vue.toDisplayString(item.residueNum), + vue.toDisplayString(item2.residueNum), 5 /* TEXT, STYLE */ ) @@ -16818,12 +16824,12 @@ This will fail in production if not fixed.`); { class: vue.normalizeClass({ "list_tips": true, - "none": item.scanNum === 0, - "portion": item.scanNum < item.totalNum && item.scanNum > 0, - "all": item.scanNum === item.totalNum + "none": item2.scanNum === 0, + "portion": item2.scanNum < item2.totalNum && item2.scanNum > 0, + "all": item2.scanNum === item2.totalNum }) }, - vue.toDisplayString(vue.unref(details).type[item.scanNum === item.totalNum ? 3 : item.scanNum !== 0 ? 2 : 1] || "暂无状态数据"), + vue.toDisplayString(vue.unref(details).type[item2.scanNum === item2.totalNum ? 3 : item2.scanNum !== 0 ? 2 : 1] || "暂无状态数据"), 3 /* TEXT, CLASS */ ) @@ -16930,9 +16936,9 @@ This will fail in production if not fixed.`); _scanNum++; let _item = null; for (let index2 = 0; index2 < _data.length; index2++) { - const item = _data[index2]; - if (value.thirdPackName === item.title) { - _item = item; + const item2 = _data[index2]; + if (value.thirdPackName === item2.title) { + _item = item2; break; } } @@ -17104,12 +17110,12 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(value.dataList, (item, index22) => { + vue.renderList(value.dataList, (item2, index22) => { return vue.openBlock(), vue.createElementBlock( "view", { key: value.id, - class: vue.normalizeClass({ "table-row": true, "red": Number(item.packageStatus) !== 1, "green": Number(item.packageStatus) === 1, "mb20": index22 !== value.dataList.length - 1 }) + class: vue.normalizeClass({ "table-row": true, "red": Number(item2.packageStatus) !== 1, "green": Number(item2.packageStatus) === 1, "mb20": index22 !== value.dataList.length - 1 }) }, [ vue.createElementVNode("view", { class: "table-row-item" }, [ @@ -17117,7 +17123,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.orderPackageCode), + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -17127,7 +17133,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.materialName || "暂无数据"), + vue.toDisplayString(item2.materialName || "暂无数据"), 1 /* TEXT */ ) @@ -17135,9 +17141,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - class: vue.normalizeClass({ "table-tag": true, "red": Number(item.packageStatus) !== 1, "green": Number(item.packageStatus) === 1 }) + class: vue.normalizeClass({ "table-tag": true, "red": Number(item2.packageStatus) !== 1, "green": Number(item2.packageStatus) === 1 }) }, - vue.toDisplayString(Number(item.packageStatus) === 1 ? "已 扫" : "未 扫"), + vue.toDisplayString(Number(item2.packageStatus) === 1 ? "已 扫" : "未 扫"), 3 /* TEXT, CLASS */ ) @@ -17341,10 +17347,10 @@ This will fail in production if not fixed.`); date2.value = []; basicContainer.value.startPullDownRefresh(); } - const handleArriveCarByLoadId = async (item) => { + const handleArriveCarByLoadId = async (item2) => { try { const submitData = { - loadId: item.id + loadId: item2.id }; const res = await postArriveCarByLoadId(submitData); if (res.code !== 200) @@ -17356,24 +17362,24 @@ This will fail in production if not fixed.`); } finally { } }; - const handleDetailsByOrder = (item, type2) => { + const handleDetailsByOrder = (item2, type2) => { uni.navigateTo({ - url: "/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails?id=" + item.id + "&type=" + type2 + "&page=ArrivalList" + url: "/pagesHome/pages/VehicleArrivalDetails/VehicleArrivalDetails?id=" + item2.id + "&type=" + type2 + "&page=ArrivalList" }); }; - const handleScanByTray = (item) => { + const handleScanByTray = (item2) => { uni.navigateTo({ - url: "/pagesHome/pages/VehicleArrivalDetailsByTray/VehicleArrivalDetailsByTray?id=" + item.id + "&carsNo=" + item.carsNo + url: "/pagesHome/pages/VehicleArrivalDetailsByTray/VehicleArrivalDetailsByTray?id=" + item2.id + "&carsNo=" + item2.carsNo }); }; - function gostockuplist(item) { + function gostockuplist(item2) { uni.navigateTo({ - url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item.id + "&type=1" + url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item2.id + "&type=1" }); } - function gostockuplistBytray(item) { + function gostockuplistBytray(item2) { uni.navigateTo({ - url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item.id + "&type=2" + url: "/pagesHome/pages/StowageListDetails/StowageListDetails?id=" + item2.id + "&type=2" }); } const { @@ -17451,13 +17457,13 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "items_row" }, [ vue.createElementVNode( "view", null, - " 车次号:" + vue.toDisplayString(item.carsNo), + " 车次号:" + vue.toDisplayString(item2.carsNo), 1 /* TEXT */ ) @@ -17466,7 +17472,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - " 实际装车/计划装车:" + vue.toDisplayString(item.realLoadingNumber + "/" + item.planLoadingNumber), + " 实际装车/计划装车:" + vue.toDisplayString(item2.realLoadingNumber + "/" + item2.planLoadingNumber), 1 /* TEXT */ ), @@ -17476,14 +17482,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - " 主驾司机:" + vue.toDisplayString(item.driverName), + " 主驾司机:" + vue.toDisplayString(item2.driverName), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - " 电话:" + vue.toDisplayString(item.driverMobile), + " 电话:" + vue.toDisplayString(item2.driverMobile), 1 /* TEXT */ ) @@ -17492,14 +17498,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - " 发车时间:" + vue.toDisplayString(item.startTime), + " 发车时间:" + vue.toDisplayString(item2.startTime), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - " 车牌号:" + vue.toDisplayString(item.carNumber), + " 车牌号:" + vue.toDisplayString(item2.carNumber), 1 /* TEXT */ ) @@ -17507,52 +17513,52 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "items_row" }, - " 线路:" + vue.toDisplayString(item.carsLineName), + " 线路:" + vue.toDisplayString(item2.carsLineName), 1 /* TEXT */ ), - Number(item.lastStartCarStatus) === 1 ? (vue.openBlock(), vue.createElementBlock( + Number(item2.lastStartCarStatus) === 1 ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 0 }, [ - Number(item.loadStatus) === 10 || Number(item.loadStatus) === 30 ? (vue.openBlock(), vue.createElementBlock("view", { + Number(item2.loadStatus) === 10 || Number(item2.loadStatus) === 30 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "button-container" }, [ vue.createElementVNode("view", { class: "button", style: { "background-color": "#86cad0", "width": "60%", "margin": "0 auto" }, - onClick: ($event) => handleArriveCarByLoadId(item) + onClick: ($event) => handleArriveCarByLoadId(item2) }, " 到车 ", 8, ["onClick"]) - ])) : item.showControl && (Number(item.loadStatus) === 20 || Number(item.loadStatus) === 40) ? (vue.openBlock(), vue.createElementBlock("view", { + ])) : item2.showControl && (Number(item2.loadStatus) === 20 || Number(item2.loadStatus) === 40) ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "button-container" }, [ vue.createElementVNode("view", { class: "" }, [ vue.createElementVNode("view", { class: "button", - onClick: ($event) => handleDetailsByOrder(item, 1) + onClick: ($event) => handleDetailsByOrder(item2, 1) }, " 按件入库 ", 8, ["onClick"]), vue.createElementVNode("view", { class: "button", - onClick: ($event) => handleDetailsByOrder(item, 2) + onClick: ($event) => handleDetailsByOrder(item2, 2) }, " 整托入库 ", 8, ["onClick"]), vue.createElementVNode("view", { class: "button", - onClick: ($event) => handleScanByTray(item) + onClick: ($event) => handleScanByTray(item2) }, " 卸分一体 ", 8, ["onClick"]) ]), - item.showTruckLoading ? (vue.openBlock(), vue.createElementBlock("view", { + item2.showTruckLoading ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "" }, [ vue.createElementVNode("view", { class: "button", - onClick: ($event) => gostockuplist(item) + onClick: ($event) => gostockuplist(item2) }, " 按件装车 ", 8, ["onClick"]), vue.createElementVNode("view", { class: "button", - onClick: ($event) => gostockuplistBytray(item) + onClick: ($event) => gostockuplistBytray(item2) }, " 整托装车 ", 8, ["onClick"]) ])) : vue.createCommentVNode("v-if", true) ])) : vue.createCommentVNode("v-if", true) @@ -17733,7 +17739,7 @@ This will fail in production if not fixed.`); utils.handleToast(`卸车${_total}件, 异常卸车${_abnormal}件`); return; } - utils.handleToast(`卸车${_total}件`); + utils.handleToast(`${_total}件`); } } } catch (e2) { @@ -17775,9 +17781,9 @@ This will fail in production if not fixed.`); let isHave = false; let returnContent = ""; let _trayCode = ""; - for (let item of details.pageInfo.unloadScanOrderList) { + for (let item2 of details.pageInfo.unloadScanOrderList) { let isBreak = false; - for (let val of item.unloadPackageList) { + for (let val of item2.unloadPackageList) { if (_scanCode === val.orderPackageCode) { isHave = true; isBreak = true; @@ -18142,9 +18148,9 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.waybillNo + key: item2.waybillNo }, [ Number(vue.unref(orderStatus)) !== 3 ? (vue.openBlock(), vue.createBlock( _component_PullDownBox, @@ -18157,7 +18163,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "row_value" }, - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -18169,7 +18175,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "row_value" }, - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -18179,7 +18185,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", null, "订单总数:"), vue.createTextVNode( - " " + vue.toDisplayString(item.totalNumber), + " " + vue.toDisplayString(item2.totalNumber), 1 /* TEXT */ ) @@ -18189,7 +18195,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { style: { "color": "#000" } }, - vue.toDisplayString(item.loadingNum), + vue.toDisplayString(item2.loadingNum), 1 /* TEXT */ ), @@ -18197,7 +18203,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { style: { "color": "#00d400" } }, - vue.toDisplayString(item.unloadNum), + vue.toDisplayString(item2.unloadNum), 1 /* TEXT */ ) @@ -18209,7 +18215,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.unloadPackageList, (value) => { + vue.renderList(item2.unloadPackageList, (value) => { return vue.openBlock(), vue.createElementBlock("view", { key: value.name, class: "details_container" @@ -18284,7 +18290,7 @@ This will fail in production if not fixed.`); [ vue.createElementVNode("view", { class: "flex-c-sb", - onClick: ($event) => handleZeroStowage(item, value) + onClick: ($event) => handleZeroStowage(item2, value) }, [ vue.createElementVNode( "view", @@ -18352,7 +18358,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "flex1" }, - " 包条码: " + vue.toDisplayString(item.scanCode), + " 包条码: " + vue.toDisplayString(item2.scanCode), 1 /* TEXT */ ), @@ -18366,12 +18372,12 @@ This will fail in production if not fixed.`); { class: vue.normalizeClass({ "tip": true, - "red": Number(item.scanStatus) === 1, - "portion": Number(item.scanStatus) === 2, - "blue": Number(item.scanStatus) === 3 + "red": Number(item2.scanStatus) === 1, + "portion": Number(item2.scanStatus) === 2, + "blue": Number(item2.scanStatus) === 3 }) }, - vue.toDisplayString(Number(item.scanStatus) === 1 ? "已装车" : Number(item.scanStatus) === 2 ? "已卸车" : "已签收"), + vue.toDisplayString(Number(item2.scanStatus) === 1 ? "已装车" : Number(item2.scanStatus) === 2 ? "已卸车" : "已签收"), 3 /* TEXT, CLASS */ ) @@ -18384,14 +18390,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "flex1" }, - " 托盘名称: " + vue.toDisplayString(item.trayName || "暂无数据"), + " 托盘名称: " + vue.toDisplayString(item2.trayName || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "flex1" }, - " 托盘码: " + vue.toDisplayString(item.trayCode || "暂无数据"), + " 托盘码: " + vue.toDisplayString(item2.trayCode || "暂无数据"), 1 /* TEXT */ ) @@ -18549,22 +18555,22 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).trayInfo.zeroList, (item) => { + vue.renderList(vue.unref(details).trayInfo.zeroList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.scanCode, + key: item2.scanCode, class: "pop_row" }, [ vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "运单号:" + vue.toDisplayString(item.waybillNo), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ), @@ -18572,14 +18578,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "产品名称:" + vue.toDisplayString(item.scanCode), + "产品名称:" + vue.toDisplayString(item2.scanCode), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.num), + "数量:" + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -18593,15 +18599,15 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).trayInfo.packageList, (item) => { + vue.renderList(vue.unref(details).trayInfo.packageList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item, + key: item2, class: "pop_row" }, [ vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ), @@ -18609,14 +18615,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.scanCode), + "包条码:" + vue.toDisplayString(item2.scanCode), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.num), + "数量:" + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -18867,9 +18873,9 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(details.data, (item, index2) => { + vue.renderList(details.data, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.id, + key: item2.id, class: "orderPackage_container" }, [ vue.createElementVNode("view", { class: "orderPackage_container_item" }, [ @@ -18877,7 +18883,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { class: "flex1" }, - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -18887,7 +18893,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { class: "flex1" }, - vue.toDisplayString(item.orderPackageCode), + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -18897,7 +18903,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { class: "flex1" }, - vue.toDisplayString(item.firsts), + vue.toDisplayString(item2.firsts), 1 /* TEXT */ ) @@ -18907,7 +18913,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { class: "flex1" }, - vue.toDisplayString(item.second), + vue.toDisplayString(item2.second), 1 /* TEXT */ ) @@ -18917,7 +18923,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { class: "flex1" }, - vue.toDisplayString(item.thirdProduct), + vue.toDisplayString(item2.thirdProduct), 1 /* TEXT */ ) @@ -18927,7 +18933,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { class: "flex1" }, - vue.toDisplayString(item.materialName), + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -19101,9 +19107,9 @@ This will fail in production if not fixed.`); async function initpage() { return await scanTray(); } - function godetaillist(item) { + function godetaillist(item2) { uni.navigateTo({ - url: "/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList?orderCode=" + item.dataCode + "&trayCode=" + details.trayInfo.trayCode + url: "/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList?orderCode=" + item2.dataCode + "&trayCode=" + details.trayInfo.trayCode }); } function setorderStatus(state) { @@ -19152,9 +19158,9 @@ This will fail in production if not fixed.`); for (let i2 = 0; i2 < details.scansortingType.length; i2++) { const value = details.scansortingType[i2]; for (let index2 = 0; index2 < data.data.length; index2++) { - const item = data.data[index2]; - if (item.dictValue === value.name) { - value.type = item.dictKey; + const item2 = data.data[index2]; + if (item2.dictValue === value.name) { + value.type = item2.dictKey; break; } } @@ -19191,18 +19197,18 @@ This will fail in production if not fixed.`); const leftClick = () => { uni.navigateBack(); }; - const handleChooseType = (item) => { + const handleChooseType = (item2) => { details.isShowType = false; - details.trayInfo.trayType = item.type; - details.trayInfo.trayTypeName = item.name; + details.trayInfo.trayType = item2.type; + details.trayInfo.trayTypeName = item2.name; }; - function removeitem(item) { + function removeitem(item2) { if (details.orderStatus === 1) - removeOrder(item); + removeOrder(item2); else if (details.orderStatus === 2) - removeZero(item); + removeZero(item2); } - function removeOrder(item) { + function removeOrder(item2) { tip.value.setdetails({ title: "提示", content: "确认删除该订单与托盘码的绑定?", @@ -19212,7 +19218,7 @@ This will fail in production if not fixed.`); success: async () => { let data = { trayCode: details.trayInfo.trayCode, - orderCode: item.dataCode + orderCode: item2.dataCode }; let res = await warehouseTrayTypedeleteOrderCode(data); if (res.code !== 200) @@ -19229,7 +19235,7 @@ This will fail in production if not fixed.`); } }); } - function removeZero(item) { + function removeZero(item2) { tip.value.setdetails({ title: "提示", content: "确认删除该订单和托盘的绑定?", @@ -19239,7 +19245,7 @@ This will fail in production if not fixed.`); success: async () => { let data = { trayCode: details.trayInfo.trayCode, - orderCode: item.dataCode + orderCode: item2.dataCode }; let response2 = await warehouseTrayTypedeleteZeroOrderByTrayCode(data); if (response2.code == 200) { @@ -19275,10 +19281,10 @@ This will fail in production if not fixed.`); const handleZeroTabbar = (code2) => { details.zeroTabBar = code2; }; - const handleShowPalletize = (item) => { - details.zeroForm = item; - formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetailsByTray/VehicleArrivalDetailsByTray.vue:691", "item.num :>> ", item.num); - details.zeroForm.unLoadNum = item.num; + const handleShowPalletize = (item2) => { + details.zeroForm = item2; + formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetailsByTray/VehicleArrivalDetailsByTray.vue:691", "item.num :>> ", item2.num); + details.zeroForm.unLoadNum = item2.num; formatAppLog("log", "at pagesHome/pages/VehicleArrivalDetailsByTray/VehicleArrivalDetailsByTray.vue:693", "details.zeroForm :>> ", details.zeroForm); ZeroPalletizeList.value.setDetails({ title: "零担打托", @@ -19330,11 +19336,11 @@ This will fail in production if not fixed.`); const handleConfirmZero = async () => { let zeroList = []; let isfl = false; - isfl = !details.zeroStorageList.some((item) => { - if (item.number === 0) { + isfl = !details.zeroStorageList.some((item2) => { + if (item2.number === 0) { return false; } - if (item.number > item.orderTotalNum) { + if (item2.number > item2.orderTotalNum) { isfl = true; uni.showToast({ title: "不能大于订单总数", @@ -19342,9 +19348,9 @@ This will fail in production if not fixed.`); }); } else { let obj = { - orderId: item.dataId, - orderCode: item.dataCode, - num: item.number + orderId: item2.dataId, + orderCode: item2.dataCode, + num: item2.number }; zeroList.push(obj); } @@ -19528,15 +19534,15 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item, index2) => { + vue.renderList(vue.unref(datalist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.orderCode + key: item2.orderCode }, [ vue.createCommentVNode(" 定制品 "), vue.unref(details).orderStatus === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "items chuanhuo", - onClick: ($event) => godetaillist(item) + onClick: ($event) => godetaillist(item2) }, [ vue.createElementVNode("view", { class: "tophd", @@ -19554,14 +19560,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: #ff0000;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: #ff0000;" : "") }, - vue.toDisplayString(item.dataCode) + vue.toDisplayString(item.isFleeing ? "(窜)" : ""), + vue.toDisplayString(item2.dataCode) + vue.toDisplayString(item2.isFleeing ? "(窜)" : ""), 5 /* TEXT, STYLE */ ), vue.createElementVNode("image", { - onClick: ($event) => removeitem(item), + onClick: ($event) => removeitem(item2), src: "/pagesHome/static/removeitem.png" }, null, 8, ["onClick"]) ]), @@ -19570,7 +19576,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.serviceNumber), + vue.toDisplayString(item2.serviceNumber), 1 /* TEXT */ ) @@ -19581,7 +19587,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ) @@ -19591,7 +19597,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ) @@ -19601,13 +19607,13 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "weish" }, - vue.toDisplayString(item.orderTotalNum - item.scanNum), + vue.toDisplayString(item2.orderTotalNum - item2.scanNum), 1 /* TEXT */ ) ]) ]), - item.orderTotalNum != item.scanNum ? (vue.openBlock(), vue.createElementBlock("image", { + item2.orderTotalNum != item2.scanNum ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, class: "weiqt", src: "/pagesHome/static/weiqitao.png" @@ -19621,7 +19627,7 @@ This will fail in production if not fixed.`); vue.unref(details).orderStatus === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "items chuanhuo", - onClick: ($event) => godetaillist(item) + onClick: ($event) => godetaillist(item2) }, [ vue.createElementVNode("view", { class: "tophd", @@ -19639,12 +19645,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ), vue.createElementVNode("image", { - onClick: ($event) => removeitem(item), + onClick: ($event) => removeitem(item2), src: "/pagesHome/static/removeitem.png" }, null, 8, ["onClick"]) ]), @@ -19657,7 +19663,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -19668,7 +19674,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ) @@ -19678,13 +19684,13 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ) ]) ]), - item.orderTotalNum != item.scanNum ? (vue.openBlock(), vue.createElementBlock("image", { + item2.orderTotalNum != item2.scanNum ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, class: "weiqt", src: "/pagesHome/static/weiqitao.png" @@ -19862,16 +19868,16 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).zeroPalletizeList, (item) => { + vue.renderList(vue.unref(details).zeroPalletizeList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.orderCode, + key: item2.orderCode, class: "zeroBox" }, [ vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "订单编号:"), vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -19881,7 +19887,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "运单号:"), vue.createTextVNode( - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -19891,7 +19897,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物料名称:"), vue.createTextVNode( - vue.toDisplayString(item.scanCode), + vue.toDisplayString(item2.scanCode), 1 /* TEXT */ ) @@ -19904,7 +19910,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "flex1" }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "装车数:"), vue.createTextVNode( - vue.toDisplayString(item.num || 0), + vue.toDisplayString(item2.num || 0), 1 /* TEXT */ ) @@ -19914,7 +19920,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "flex-c-c mt20" }, [ vue.createElementVNode("view", { class: "button", - onClick: ($event) => handleShowPalletize(item) + onClick: ($event) => handleShowPalletize(item2) }, " 确认打托 ", 8, ["onClick"]) ]) ]); @@ -19959,16 +19965,16 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).zeroStorageList, (item, index2) => { + vue.renderList(vue.unref(details).zeroStorageList, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.orderCode, + key: item2.orderCode, class: "zeroBox mt20" }, [ vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "订单编号:"), vue.createTextVNode( - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ) @@ -19978,7 +19984,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "运单号:"), vue.createTextVNode( - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -19988,7 +19994,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物料名称:"), vue.createTextVNode( - vue.toDisplayString(item.dataName), + vue.toDisplayString(item2.dataName), 1 /* TEXT */ ) @@ -20001,7 +20007,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "flex1" }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "总件数:"), vue.createTextVNode( - vue.toDisplayString(item.orderTotalNum || 0), + vue.toDisplayString(item2.orderTotalNum || 0), 1 /* TEXT */ ) @@ -20009,7 +20015,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "flex1" }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "剩余件数:"), vue.createTextVNode( - vue.toDisplayString(item.residueNum || 0), + vue.toDisplayString(item2.residueNum || 0), 1 /* TEXT */ ) @@ -20023,9 +20029,9 @@ This will fail in production if not fixed.`); vue.createVNode(_component_inputNum, { class: "flex1", minNum: 0, - maxNum: item.residueNum, - modelValue: item.number, - "onUpdate:modelValue": ($event) => item.number = $event + maxNum: item2.residueNum, + modelValue: item2.number, + "onUpdate:modelValue": ($event) => item2.number = $event }, null, 8, ["maxNum", "modelValue", "onUpdate:modelValue"]) ]) ]); @@ -20064,19 +20070,19 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).scansortingType, (item) => { + vue.renderList(vue.unref(details).scansortingType, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.name, + key: item2.name, class: "items", - onClick: ($event) => handleChooseType(item) + onClick: ($event) => handleChooseType(item2) }, [ vue.createElementVNode("image", { - src: item.src + src: item2.src }, null, 8, ["src"]), vue.createElementVNode( "view", null, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -20255,14 +20261,14 @@ This will fail in production if not fixed.`); details.recordsList = details.recordsList.concat(response2.data.records); } } - function goselscan(item) { + function goselscan(item2) { uni.navigateTo({ - url: "/pagesHome/pages/SelfPScanList/SelfPScanList?billLadingId=" + item.billLadingId + url: "/pagesHome/pages/SelfPScanList/SelfPScanList?billLadingId=" + item2.billLadingId }); } - function goselscandetails(item) { + function goselscandetails(item2) { uni.navigateTo({ - url: "/pagesHome/pages/SelfPickupDetails/SelfPickupDetails?billLadingId=" + item.billLadingId + url: "/pagesHome/pages/SelfPickupDetails/SelfPickupDetails?billLadingId=" + item2.billLadingId }); } function cleartime() { @@ -20270,9 +20276,9 @@ This will fail in production if not fixed.`); date2.value = []; handlSearch(); } - const showUpImg = async (item) => { + const showUpImg = async (item2) => { let submitData = { - billLadingId: item.billLadingId + billLadingId: item2.billLadingId }; let res = await billLadingGetReceivedImage(submitData); const { code: code2, data } = res; @@ -20281,8 +20287,8 @@ This will fail in production if not fixed.`); return; remark = res.data.remark; if (data.list) { - for (let item2 of data.list) { - details.imgList.find((val) => val.state === Number(item2.state)).imgList.push({ ...item2, urlRoute: item2.url }); + for (let item22 of data.list) { + details.imgList.find((val) => val.state === Number(item22.state)).imgList.push({ ...item22, urlRoute: item22.url }); } } tiplists.value.setdetails({ @@ -20300,17 +20306,17 @@ This will fail in production if not fixed.`); success: async (detail) => { formatAppLog("log", "at pagesHome/pages/SelfPickupScan/SelfPickupScan.vue:363", "detail :>> ", detail); let data2 = { - billLadingId: item.billLadingId, + billLadingId: item2.billLadingId, printList: [], remark: detail.inputtext }; let res2 = null; - const isSubmit = detail.imglist.every((item2) => { - if (item2.imgList.length < 1) + const isSubmit = detail.imglist.every((item22) => { + if (item22.imgList.length < 1) return false; else { - data2.printList = [...data2.printList, ...item2.imgList.map((val) => { - val.state = item2.state; + data2.printList = [...data2.printList, ...item22.imgList.map((val) => { + val.state = item22.state; val.url = val.urlRoute; return val; })]; @@ -20333,8 +20339,8 @@ This will fail in production if not fixed.`); res2 = await billLadingAddReceivedImage(data2); if (res2.code !== 200) return; - for (let item2 of details.imgList) { - item2.imgList = []; + for (let item22 of details.imgList) { + item22.imgList = []; } initpage(); uni.showToast({ @@ -20349,14 +20355,14 @@ This will fail in production if not fixed.`); } }, cancel: () => { - for (let item2 of details.imgList) { - item2.imgList = []; + for (let item22 of details.imgList) { + item22.imgList = []; } tiplists.value.setdetails({ isshow: false }); }, close: () => { - for (let item2 of details.imgList) { - item2.imgList = []; + for (let item22 of details.imgList) { + item22.imgList = []; } tiplists.value.setdetails({ isshow: false }); } @@ -20465,7 +20471,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(recordsList), (item) => { + vue.renderList(vue.unref(recordsList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode("view", { class: "headtop" }, [ vue.createCommentVNode(' \r\n \r\n 配车类型:{{item.item}}\r\n \r\n \r\n 配车状态:{{item.conditionStr}}\r\n \r\n '), @@ -20473,7 +20479,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "车牌号:"), vue.createTextVNode( - vue.toDisplayString(item.pickUpPlate), + vue.toDisplayString(item2.pickUpPlate), 1 /* TEXT */ ) @@ -20481,7 +20487,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "司机:"), vue.createTextVNode( - vue.toDisplayString(item.consignee), + vue.toDisplayString(item2.consignee), 1 /* TEXT */ ) @@ -20501,7 +20507,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "制单时间:"), vue.createTextVNode( - vue.toDisplayString(item.createTime), + vue.toDisplayString(item2.createTime), 1 /* TEXT */ ) @@ -20511,7 +20517,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "任务时间:"), vue.createTextVNode( - vue.toDisplayString(item.createTime), + vue.toDisplayString(item2.createTime), 1 /* TEXT */ ) @@ -20523,7 +20529,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderNum), + vue.toDisplayString(item2.orderNum), 1 /* TEXT */ ) @@ -20533,7 +20539,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.planNum), + vue.toDisplayString(item2.planNum), 1 /* TEXT */ ) @@ -20543,7 +20549,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.signedNum), + vue.toDisplayString(item2.signedNum), 1 /* TEXT */ ) @@ -20553,7 +20559,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.inventoryNub), + vue.toDisplayString(item2.inventoryNub), 1 /* TEXT */ ) @@ -20566,17 +20572,17 @@ This will fail in production if not fixed.`); { key: 0 }, [ vue.createElementVNode("view", { - onClick: ($event) => goselscandetails(item) + onClick: ($event) => goselscandetails(item2) }, "明细扫描", 8, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => goselscan(item) + onClick: ($event) => goselscan(item2) }, "扫描", 8, ["onClick"]) ], 64 /* STABLE_FRAGMENT */ )) : vue.createCommentVNode("v-if", true), vue.createElementVNode("view", { - onClick: ($event) => showUpImg(item) + onClick: ($event) => showUpImg(item2) }, "签收图片", 8, ["onClick"]) ]) ]); @@ -20676,7 +20682,7 @@ This will fail in production if not fixed.`); details.recordsList = []; basicContainer.value.startPullDownRefresh(); } - async function startld(item) { + async function startld(item2) { tip.value.setdetails({ title: "提示", content: "确认发车?", @@ -20684,7 +20690,7 @@ This will fail in production if not fixed.`); isshow: true, isshowcancel: true, success: async () => { - Departure(item); + Departure(item2); }, cancel: () => { tip.value.setisshow(false); @@ -20694,17 +20700,17 @@ This will fail in production if not fixed.`); } }); } - async function Departure(item) { + async function Departure(item2) { tip.value.setisshow(false); let data = { - deliveryId: item.id + deliveryId: item2.id }; let res = await deliveryvehicle(data); if (res.code !== 200) return; if (res.data.length == 1) { let data2 = { - deliveryId: item.id, + deliveryId: item2.id, loadingId: res.data[0].id }; let response2 = await deliverystart(data2); @@ -20725,8 +20731,8 @@ This will fail in production if not fixed.`); return; } let list = []; - res.data.map((item2) => { - list.push(item2.driverName + "---" + item2.vehicleNub); + res.data.map((item22) => { + list.push(item22.driverName + "---" + item22.vehicleNub); }); tiplists.value.setdetails({ title: "请选择车辆", @@ -20747,7 +20753,7 @@ This will fail in production if not fixed.`); } tiplists.value.setdetails({ isshow: false }); let data2 = { - deliveryId: item.id, + deliveryId: item2.id, loadingId: res.data[deta.checklist[0]].id }; let response2 = await deliverystart(data2); @@ -20827,30 +20833,30 @@ This will fail in production if not fixed.`); } return null; } - async function goselscan(item) { + async function goselscan(item2) { const jumpData = { - type_name: item.type_name, - deliStatus_name: item.deliStatus_name, - vehicleName: item.vehicleName, - driverName: item.driverName, - loadingTeamName: item.loadingTeamName, - isstock: item.isstock, - customersNumber: item.customersNumber, - orderNumber: item.orderNumber, - loadCusNub: item.loadCusNub, - loadOrdNub: item.loadOrdNub, - signNub: item.signNub, - signNubSr: item.signNubSr, - id: item.id + type_name: item2.type_name, + deliStatus_name: item2.deliStatus_name, + vehicleName: item2.vehicleName, + driverName: item2.driverName, + loadingTeamName: item2.loadingTeamName, + isstock: item2.isstock, + customersNumber: item2.customersNumber, + orderNumber: item2.orderNumber, + loadCusNub: item2.loadCusNub, + loadOrdNub: item2.loadOrdNub, + signNub: item2.signNub, + signNubSr: item2.signNubSr, + id: item2.id }; let data = { - deliveryId: item.id + deliveryId: item2.id }; 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(jumpData) + "&loadingId=" + res.data[0].id + url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item2.id + "&item=" + JSON.stringify(jumpData) + "&loadingId=" + res.data[0].id }); return; } @@ -20862,8 +20868,8 @@ This will fail in production if not fixed.`); return; } let list = []; - res.data.map((item2) => { - list.push(item2.driverName + "---" + item2.vehicleNub); + res.data.map((item22) => { + list.push(item22.driverName + "---" + item22.vehicleNub); }); tiplists.value.setdetails({ title: "请选择车辆", @@ -20885,7 +20891,7 @@ This will fail in production if not fixed.`); tiplists.value.setdetails({ isshow: false }); uni.setStorageSync("checkvehicle", res.data[deta.checklist[0]]); uni.navigateTo({ - url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item.id + "&item=" + JSON.stringify(jumpData) + "&loadingId=" + res.data[deta.checklist[0]].id + url: "/pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan?id=" + item2.id + "&item=" + JSON.stringify(jumpData) + "&loadingId=" + res.data[deta.checklist[0]].id }); }, cancel: (details2) => { @@ -20896,17 +20902,17 @@ This will fail in production if not fixed.`); } }); } - async function goRetention(item) { - formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:441", "item :>> ", item); + async function goRetention(item2) { + formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:441", "item :>> ", item2); let data = { - deliveryId: item.id + deliveryId: item2.id }; let res = await deliveryvehicle(data); formatAppLog("log", "at pagesHome/pages/LoadingScan/LoadingScan.vue:446", res); if (res.data.length == 1) { uni.setStorageSync("checkvehicle", res.data[0]); uni.navigateTo({ - url: "/pagesHome/pages/loadingRetention/loadingRetention?item=" + JSON.stringify(item) + "&loadingId=" + res.data[0].id + url: "/pagesHome/pages/loadingRetention/loadingRetention?item=" + JSON.stringify(item2) + "&loadingId=" + res.data[0].id }); return; } @@ -20918,8 +20924,8 @@ This will fail in production if not fixed.`); return; } let list = []; - res.data.map((item2) => { - list.push(item2.driverName + "---" + item2.vehicleNub); + res.data.map((item22) => { + list.push(item22.driverName + "---" + item22.vehicleNub); }); tiplists.value.setdetails({ title: "请选择车辆", @@ -20941,7 +20947,7 @@ This will fail in production if not fixed.`); tiplists.value.setdetails({ isshow: false }); uni.setStorageSync("checkvehicle", res.data[deta.checklist[0]]); uni.navigateTo({ - url: "/pagesHome/pages/LoadingDetails/LoadingDetails?item=" + JSON.stringify(item) + "&loadingId=" + res.data[deta.checklist[0]].id + url: "/pagesHome/pages/LoadingDetails/LoadingDetails?item=" + JSON.stringify(item2) + "&loadingId=" + res.data[deta.checklist[0]].id }); }, cancel: (details2) => { @@ -20952,9 +20958,9 @@ This will fail in production if not fixed.`); } }); } - async function goloddeta(item) { + async function goloddeta(item2) { let data = { - deliveryId: item.id + deliveryId: item2.id }; let res = await deliveryvehicle(data); if (res.code !== 200) @@ -20963,7 +20969,7 @@ This will fail in production if not fixed.`); if (res.data.length == 1) { uni.setStorageSync("checkvehicle", res.data[0]); uni.navigateTo({ - url: "/pagesHome/pages/LoadingDetails/LoadingDetails?item=" + JSON.stringify(item) + url: "/pagesHome/pages/LoadingDetails/LoadingDetails?item=" + JSON.stringify(item2) }); return; } @@ -20975,8 +20981,8 @@ This will fail in production if not fixed.`); return; } let list = []; - res.data.map((item2) => { - list.push(item2.driverName + "---" + item2.vehicleNub); + res.data.map((item22) => { + list.push(item22.driverName + "---" + item22.vehicleNub); }); tiplists.value.setdetails({ title: "请选择车辆", @@ -20998,7 +21004,7 @@ This will fail in production if not fixed.`); tiplists.value.setdetails({ isshow: false }); uni.setStorageSync("checkvehicle", res.data[deta.checklist[0]]); uni.navigateTo({ - url: "/pagesHome/pages/LoadingDetails/LoadingDetails?item=" + JSON.stringify(item) + url: "/pagesHome/pages/LoadingDetails/LoadingDetails?item=" + JSON.stringify(item2) }); }, cancel: (details2) => { @@ -21112,14 +21118,14 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(recordsList), (item) => { + vue.renderList(vue.unref(recordsList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode("view", { class: "headtop" }, [ vue.createElementVNode("view", { class: "type1s" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送类型:"), vue.createTextVNode( - vue.toDisplayString(item.type_name), + vue.toDisplayString(item2.type_name), 1 /* TEXT */ ) @@ -21127,7 +21133,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送状态:"), vue.createTextVNode( - vue.toDisplayString(item.vehicleStatus_name), + vue.toDisplayString(item2.vehicleStatus_name), 1 /* TEXT */ ) @@ -21137,7 +21143,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "车牌号:"), vue.createTextVNode( - vue.toDisplayString(item.vehicleName), + vue.toDisplayString(item2.vehicleName), 1 /* TEXT */ ) @@ -21145,7 +21151,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "司机:"), vue.createTextVNode( - vue.toDisplayString(item.driverName), + vue.toDisplayString(item2.driverName), 1 /* TEXT */ ) @@ -21155,7 +21161,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "装卸班组:"), vue.createTextVNode( - vue.toDisplayString(item.loadingTeamName), + vue.toDisplayString(item2.loadingTeamName), 1 /* TEXT */ ) @@ -21163,7 +21169,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "bhcolor" }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货是否完成:"), vue.createTextVNode( - vue.toDisplayString(item.isstock), + vue.toDisplayString(item2.isstock), 1 /* TEXT */ ) @@ -21173,7 +21179,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "客户:"), vue.createTextVNode( - vue.toDisplayString(item.consignee), + vue.toDisplayString(item2.consignee), 1 /* TEXT */ ) @@ -21183,20 +21189,20 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送日期:"), vue.createTextVNode( - vue.toDisplayString(item.taskTime), + vue.toDisplayString(item2.taskTime), 1 /* TEXT */ ) ]) ]), - item.departureTime ? (vue.openBlock(), vue.createElementBlock("view", { + item2.departureTime ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "type1s" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "发车时间:"), vue.createTextVNode( - vue.toDisplayString(item.departureTime), + vue.toDisplayString(item2.departureTime), 1 /* TEXT */ ) @@ -21206,7 +21212,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货区:"), vue.createTextVNode( - vue.toDisplayString(item.stockupArea || "无备货区"), + vue.toDisplayString(item2.stockupArea || "无备货区"), 1 /* TEXT */ ) @@ -21214,14 +21220,14 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "type1s", - onClick: ($event) => goloddeta(item) + onClick: ($event) => goloddeta(item2) }, [ vue.createElementVNode("view", { class: "bhcolor" }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "车次号:"), vue.createElementVNode( "text", { style: { "text-decoration": "underline" } }, - vue.toDisplayString(item.trainNumber), + vue.toDisplayString(item2.trainNumber), 1 /* TEXT */ ) @@ -21229,13 +21235,13 @@ This will fail in production if not fixed.`); ], 8, ["onClick"]), vue.createElementVNode("view", { class: "liebs" }, [ vue.createElementVNode("view", { - onClick: ($event) => goselscan(item) + onClick: ($event) => goselscan(item2) }, [ vue.createElementVNode("view", null, "配送客户数"), vue.createElementVNode( "view", null, - vue.toDisplayString(item.customersNumber), + vue.toDisplayString(item2.customersNumber), 1 /* TEXT */ ) @@ -21245,7 +21251,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderNumber), + vue.toDisplayString(item2.orderNumber), 1 /* TEXT */ ) @@ -21255,7 +21261,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.deliveryNumber), + vue.toDisplayString(item2.deliveryNumber), 1 /* TEXT */ ) @@ -21265,7 +21271,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.scannedNumber), + vue.toDisplayString(item2.scannedNumber), 1 /* TEXT */ ) @@ -21275,7 +21281,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.inventoryNub), + vue.toDisplayString(item2.inventoryNub), 1 /* TEXT */ ) @@ -21284,14 +21290,14 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "buts" }, [ vue.createElementVNode("view", { - onClick: ($event) => goselscan(item) + onClick: ($event) => goselscan(item2) }, "装车扫描", 8, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => goRetention(item) + onClick: ($event) => goRetention(item2) }, "滞留", 8, ["onClick"]), - !item.departureTime ? (vue.openBlock(), vue.createElementBlock("view", { + !item2.departureTime ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, - onClick: ($event) => startld(item) + onClick: ($event) => startld(item2) }, "发车", 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ]) ]); @@ -23124,7 +23130,7 @@ This will fail in production if not fixed.`); if (!uni.$u.test.array(value) && value !== null) { return uni.$u.error("非手风琴模式下,u-collapse组件的value参数必须为数组"); } - this.expanded = (value || []).some((item) => item == this.name); + this.expanded = (value || []).some((item2) => item2 == this.name); } await vue.nextTick(); this.setContentAnimate(); @@ -23346,15 +23352,15 @@ This will fail in production if not fixed.`); id.value = res.data.id; StatusUpdate.value = false; if (res.data.retentionScanVOList) { - res.data.retentionScanVOList.forEach((item) => { - if (item.scanType == 1) { - DataList1.value.push(item); + res.data.retentionScanVOList.forEach((item2) => { + if (item2.scanType == 1) { + DataList1.value.push(item2); } - if (item.scanType == 2) { - DataList2.value.push(item); + if (item2.scanType == 2) { + DataList2.value.push(item2); } - if (item.scanType == 3) { - DataList3.value.push(item); + if (item2.scanType == 3) { + DataList3.value.push(item2); } }); const groupedData = DataList3.value.reduce((acc, obj) => { @@ -23387,10 +23393,10 @@ This will fail in production if not fixed.`); const ZelYes = () => { formatAppLog("log", "at pagesHome/pages/loadingRetention/loadingRetention.vue:380", NumList.value); ZelNum.value = false; - NumList.value.forEach((item) => { - if (item.retentionQuantity) { - item.parameter = true; - DataList2.value.unshift(item); + NumList.value.forEach((item2) => { + if (item2.retentionQuantity) { + item2.parameter = true; + DataList2.value.unshift(item2); } }); }; @@ -23424,20 +23430,20 @@ This will fail in production if not fixed.`); ZelNum.value = true; } if (OrType.value == 1) { - let hasDuplicate = DataList1.value.some((item) => item.orderPackageCode == res.data[0].orderPackageCode); + let hasDuplicate = DataList1.value.some((item2) => item2.orderPackageCode == res.data[0].orderPackageCode); formatAppLog("log", "at pagesHome/pages/loadingRetention/loadingRetention.vue:430", hasDuplicate, "当前状态"); if (hasDuplicate) { utils.ttsspke("重复扫描"); } if (!hasDuplicate) { - res.data.forEach((item) => { - item.parameter = true; - if (item.scanType == 1) { + res.data.forEach((item2) => { + item2.parameter = true; + if (item2.scanType == 1) { formatAppLog("log", "at pagesHome/pages/loadingRetention/loadingRetention.vue:441", "定制品当前"); - DataList1.value.unshift(item); + DataList1.value.unshift(item2); } - if (item.scanType == 2) { - NumList.value.unshift(item); + if (item2.scanType == 2) { + NumList.value.unshift(item2); } }); utils.ttsspke(`${DataList1.value.length}件`); @@ -23445,13 +23451,13 @@ This will fail in production if not fixed.`); } if (OrType.value == 2) { formatAppLog("log", "at pagesHome/pages/loadingRetention/loadingRetention.vue:459", "OrType.value==2"); - res.data.forEach((item) => { - item.parameter = true; - if (item.scanType == 1) { - DataList1.value.unshift(item); + res.data.forEach((item2) => { + item2.parameter = true; + if (item2.scanType == 1) { + DataList1.value.unshift(item2); } - if (item.scanType == 2) { - NumList.value.unshift(item); + if (item2.scanType == 2) { + NumList.value.unshift(item2); } }); } @@ -23481,13 +23487,13 @@ This will fail in production if not fixed.`); } } if (res.data.data.goodsList) { - res.data.data.goodsList.forEach((item) => { - item.trayCode = res.data.data.trayCode; - item.parameter = true; - item.trayName = res.data.data.trayName; - item.trayId = res.data.data.trayTypeId; - item.warehosueId = res.data.data.warehosueId; - item.warehosueName = res.data.data.warehosueName; + res.data.data.goodsList.forEach((item2) => { + item2.trayCode = res.data.data.trayCode; + item2.parameter = true; + item2.trayName = res.data.data.trayName; + item2.trayId = res.data.data.trayTypeId; + item2.warehosueId = res.data.data.warehosueId; + item2.warehosueName = res.data.data.warehosueName; }); const groupedData = res.data.data.goodsList.reduce((acc, obj) => { const key = obj.trayCode; @@ -23513,10 +23519,10 @@ This will fail in production if not fixed.`); return; const _driverId = uni.getStorageSync("checkvehicle").driverId; let _flag = false; - for (let item of data) { - if (item.driverId === _driverId) { + for (let item2 of data) { + if (item2.driverId === _driverId) { _flag = true; - uni.setStorageSync("checkvehicle", item); + uni.setStorageSync("checkvehicle", item2); break; } } @@ -23595,22 +23601,22 @@ This will fail in production if not fixed.`); }); vue.computed(() => { let num = 0; - details.renderList.map((item) => { - num += Number(item.ordNub); + details.renderList.map((item2) => { + num += Number(item2.ordNub); }); return num; }); vue.computed(() => { let num = 0; - details.renderList.map((item) => { - num += Number(item.reservationNum); + details.renderList.map((item2) => { + num += Number(item2.reservationNum); }); return num; }); vue.computed(() => { let num = 0; - details.renderList.map((item) => { - num += Number(item.loadingNub); + details.renderList.map((item2) => { + num += Number(item2.loadingNub); }); return num; }); @@ -23762,15 +23768,15 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(NumList.value, (item) => { + vue.renderList(NumList.value, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "content", - key: item.id + key: item2.id }, [ vue.createElementVNode("view", { class: "num" }, [ vue.createElementVNode("text", { class: "name" }, "物料名称:"), vue.createTextVNode( - vue.toDisplayString(item.materialName), + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -23778,7 +23784,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "num" }, [ vue.createElementVNode("text", { class: "name" }, "物料总数:"), vue.createTextVNode( - vue.toDisplayString(item.maxQuantity), + vue.toDisplayString(item2.maxQuantity), 1 /* TEXT */ ) @@ -23788,9 +23794,9 @@ This will fail in production if not fixed.`); vue.createTextVNode(), vue.createVNode(_component_u_number_box, { min: 0, - max: item.retentionQuantity, - modelValue: item.retentionQuantity, - "onUpdate:modelValue": ($event) => item.retentionQuantity = $event, + max: item2.retentionQuantity, + modelValue: item2.retentionQuantity, + "onUpdate:modelValue": ($event) => item2.retentionQuantity = $event, "button-size": "36", color: "#ffffff", bgColor: "#d3832a", @@ -23840,10 +23846,10 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(DataList1.value, (item, index2) => { + vue.renderList(DataList1.value, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "InfoList transition", - key: item.id + key: item2.id }, [ vue.createElementVNode("view", null, [ vue.createVNode(_component_u_icon, { @@ -23855,9 +23861,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { - class: vue.normalizeClass({ "type1": item.conditions == 1, "type2": item.conditions == 2, "type3": item.conditions == 3 }) + class: vue.normalizeClass({ "type1": item2.conditions == 1, "type2": item2.conditions == 2, "type3": item2.conditions == 3 }) }, - vue.toDisplayString(item.conditions == 1 ? "定制品" : item.conditions == 2 ? "库存品" : "暂无信息"), + vue.toDisplayString(item2.conditions == 1 ? "定制品" : item2.conditions == 2 ? "库存品" : "暂无信息"), 3 /* TEXT, CLASS */ ) @@ -23871,7 +23877,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.orderPackageCode), + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -23888,7 +23894,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -23902,14 +23908,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.reservationCode), + vue.toDisplayString(item2.reservationCode), 1 /* TEXT */ ) ]), - item.parameter ? (vue.openBlock(), vue.createBlock(_component_u_button, { + item2.parameter ? (vue.openBlock(), vue.createBlock(_component_u_button, { key: 0, - onClick: ($event) => RemoveData(item, index2), + onClick: ($event) => RemoveData(item2, index2), class: "uni-Btn", type: "primary", icon: "close", @@ -23936,10 +23942,10 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(DataList2.value, (item) => { + vue.renderList(DataList2.value, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "InfoList", - key: item.id + key: item2.id }, [ vue.createElementVNode("view", null, [ vue.createVNode(_component_u_icon, { @@ -23951,9 +23957,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { - class: vue.normalizeClass({ "type1": item.conditions == 1, "type2": item.conditions == 2, "type3": item.conditions == 3 }) + class: vue.normalizeClass({ "type1": item2.conditions == 1, "type2": item2.conditions == 2, "type3": item2.conditions == 3 }) }, - vue.toDisplayString(item.conditions == 1 ? "定制品" : item.conditions == 2 ? "库存品" : item.conditions == 3 ? "零担" : "暂无信息"), + vue.toDisplayString(item2.conditions == 1 ? "定制品" : item2.conditions == 2 ? "库存品" : item2.conditions == 3 ? "零担" : "暂无信息"), 3 /* TEXT, CLASS */ ) @@ -23967,7 +23973,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.orderPackageCode ? item.orderPackageCode : "暂无数据"), + vue.toDisplayString(item2.orderPackageCode ? item2.orderPackageCode : "暂无数据"), 1 /* TEXT */ ) @@ -23981,7 +23987,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -23995,14 +24001,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.reservationCode), + vue.toDisplayString(item2.reservationCode), 1 /* TEXT */ ) ]), - item.parameter ? (vue.openBlock(), vue.createBlock(_component_u_button, { + item2.parameter ? (vue.openBlock(), vue.createBlock(_component_u_button, { key: 0, - onClick: ($event) => RemoveData(item, _ctx.index), + onClick: ($event) => RemoveData(item2, _ctx.index), class: "uni-Btn", type: "primary", icon: "close", @@ -24029,7 +24035,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(DataList3.value, (item, index2) => { + vue.renderList(DataList3.value, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "InfoMax", key: index2 @@ -24044,7 +24050,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item[0].trayCode), + vue.toDisplayString(item2[0].trayCode), 1 /* TEXT */ ) @@ -24058,7 +24064,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item[0].trayName ? item[0].trayName : "暂无名称"), + vue.toDisplayString(item2[0].trayName ? item2[0].trayName : "暂无名称"), 1 /* TEXT */ ) @@ -24072,14 +24078,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.length), + vue.toDisplayString(item2.length), 1 /* TEXT */ ) ]), - item[0].parameter ? (vue.openBlock(), vue.createBlock(_component_u_button, { + item2[0].parameter ? (vue.openBlock(), vue.createBlock(_component_u_button, { key: 0, - onClick: ($event) => RemoveData(item, index2), + onClick: ($event) => RemoveData(item2, index2), class: "uni-Btn", type: "primary", icon: "close", @@ -24101,7 +24107,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item, (items2, indexs) => { + vue.renderList(item2, (items2, indexs) => { return vue.openBlock(), vue.createElementBlock("view", { class: "InfoList", key: items2.id @@ -24116,7 +24122,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", { - class: vue.normalizeClass({ "type1": items2.conditions == 1, "type2": item.conditions == 2, "type3": items2.conditions == 3 }) + class: vue.normalizeClass({ "type1": items2.conditions == 1, "type2": item2.conditions == 2, "type3": items2.conditions == 3 }) }, vue.toDisplayString(items2.conditions == 1 ? "定制品" : items2.conditions == 2 ? "库存品" : items2.conditions == 3 ? "零担" : "暂无信息"), 3 @@ -24338,9 +24344,9 @@ This will fail in production if not fixed.`); await vue.nextTick(); details.scrollHeight = await utils2.getViewDistanceFormTop(".scvew"); }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } async function initpage() { @@ -24376,15 +24382,15 @@ This will fail in production if not fixed.`); details.isscan = false; return null; } - function godetails(item) { + function godetails(item2) { uni.navigateTo({ - url: "/pagesHome/pages/StockUplistScandetails/StockUplistScandetails?stockArticleId=" + (item.stockArticleId || "") + "&orderStatus=" + details.orderStatus + "&reservationId=" + details.reservationId + "&allocation=" + item.allocation + "&pallet=" + item.pallet + "&orderCode=" + item.orderCode + "&stockupId=" + details.stockupId + "&allocationId=" + item.allocationId + "&typeService=" + details.items.typeService + "&status=" + (item.completeStact ? "1" : "0") + "&stockupAllocationId=" + details.stockupAllocationId + "&stockupAllocationName=" + details.stockupAllocationName + url: "/pagesHome/pages/StockUplistScandetails/StockUplistScandetails?stockArticleId=" + (item2.stockArticleId || "") + "&orderStatus=" + details.orderStatus + "&reservationId=" + details.reservationId + "&allocation=" + item2.allocation + "&pallet=" + item2.pallet + "&orderCode=" + item2.orderCode + "&stockupId=" + details.stockupId + "&allocationId=" + item2.allocationId + "&typeService=" + details.items.typeService + "&status=" + (item2.completeStact ? "1" : "0") + "&stockupAllocationId=" + details.stockupAllocationId + "&stockupAllocationName=" + details.stockupAllocationName }); } - async function ckscanningCode(item) { + async function ckscanningCode(item2) { let content = "请扫描托盘码"; - details.isscan = item.taryLean; - details.trayId = item.trayId; + details.isscan = item2.taryLean; + details.trayId = item2.trayId; uni.showToast({ title: content, icon: "none" @@ -24400,8 +24406,8 @@ This will fail in production if not fixed.`); utils2.ttsspke(_tts[details.orderStatus - 1]); basicContainer.value.startPullDownRefresh(); } - async function goBarCode(item) { - if (!item.allocationList || item.allocationList.length === 0) { + async function goBarCode(item2) { + if (!item2.allocationList || item2.allocationList.length === 0) { utils2.ttsspke("该库存品没有上架数据"); uni.showToast({ title: "该库存品没有上架数据", @@ -24409,16 +24415,16 @@ This will fail in production if not fixed.`); }); return; } - formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:366", "item :>> ", item); - const _allocationList = item.allocationList.map((val) => val.name); + formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:366", "item :>> ", item2); + const _allocationList = item2.allocationList.map((val) => val.name); formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:368", "_allocationList :>> ", _allocationList); if (_allocationList.length === 1) { return uni.navigateTo({ - url: "/pagesHome/pages/setbarcode/setbarcode?item=" + JSON.stringify(item) + "&reservationId=" + details.reservationId + "&goodsAreaName=" + details.user.goodsAreaName + "&stockupId=" + details.stockupId + "&typeService=" + details.items.typeService + "&allocationId=" + item.allocationList[0].id + "&positionCode=" + item.allocationList[0].name + "&mallName=" + details.items.mallName + "&stockupAllocationId=" + details.stockupAllocationId + "&stockupAllocationName=" + details.stockupAllocationName + url: "/pagesHome/pages/setbarcode/setbarcode?item=" + JSON.stringify(item2) + "&reservationId=" + details.reservationId + "&goodsAreaName=" + details.user.goodsAreaName + "&stockupId=" + details.stockupId + "&typeService=" + details.items.typeService + "&allocationId=" + item2.allocationList[0].id + "&positionCode=" + item2.allocationList[0].name + "&mallName=" + details.items.mallName + "&stockupAllocationId=" + details.stockupAllocationId + "&stockupAllocationName=" + details.stockupAllocationName }); } details.isChooseStorage = true; - details.chooseItem = item; + details.chooseItem = item2; tiplists.value.setdetails({ title: "请选择货位", isshow: true, @@ -24439,7 +24445,7 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:404", "deta :>> ", deta); const _index = deta.checklist[0]; uni.navigateTo({ - url: "/pagesHome/pages/setbarcode/setbarcode?item=" + JSON.stringify(item) + "&reservationId=" + details.reservationId + "&goodsAreaName=" + details.user.goodsAreaName + "&stockupId=" + details.stockupId + "&typeService=" + details.items.typeService + "&allocationId=" + item.allocationList[_index].id + "&positionCode=" + item.allocationList[_index].name + "&mallName=" + details.items.mallName + "&stockupAllocationId=" + details.stockupAllocationId + "&stockupAllocationName=" + details.stockupAllocationName + url: "/pagesHome/pages/setbarcode/setbarcode?item=" + JSON.stringify(item2) + "&reservationId=" + details.reservationId + "&goodsAreaName=" + details.user.goodsAreaName + "&stockupId=" + details.stockupId + "&typeService=" + details.items.typeService + "&allocationId=" + item2.allocationList[_index].id + "&positionCode=" + item2.allocationList[_index].name + "&mallName=" + details.items.mallName + "&stockupAllocationId=" + details.stockupAllocationId + "&stockupAllocationName=" + details.stockupAllocationName }); details.isChooseStorage = false; tiplists.value.setdetails({ isshow: false }); @@ -24499,14 +24505,14 @@ This will fail in production if not fixed.`); async function scandata() { scanOrder(); } - const handleStockUpByZero = (item) => { - formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:753", "item :>> ", item); + const handleStockUpByZero = (item2) => { + formatAppLog("log", "at pagesHome/pages/StockUplist/StockUplist.vue:753", "item :>> ", item2); uni.navigateTo({ url: "/pagesHome/pages/StockUplistByZero/StockUplistByZero?info=" + JSON.stringify({ typeService: details.items.typeService, stockupId: details.stockupId, - orderCode: item.orderCode, - stockArticleId: item.stockArticleId, + orderCode: item2.orderCode, + stockArticleId: item2.stockArticleId, reservationId: details.reservationId, stockupAllocationId: details.stockupAllocationId, stockupAllocationName: details.stockupAllocationName @@ -24624,13 +24630,13 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) == 1 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(orderList), (item) => { + vue.renderList(vue.unref(orderList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode("view", { class: "toptitl" }, [ vue.createElementVNode( "view", { class: "toplft" }, - " 库位号:" + vue.toDisplayString(item.allocation), + " 库位号:" + vue.toDisplayString(item2.allocation), 1 /* TEXT */ ), @@ -24641,7 +24647,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "托盘号:"), vue.createTextVNode( - vue.toDisplayString(item.pallet), + vue.toDisplayString(item2.pallet), 1 /* TEXT */ ) @@ -24649,7 +24655,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "托盘名称:"), vue.createTextVNode( - vue.toDisplayString(item.trayLeanName), + vue.toDisplayString(item2.trayLeanName), 1 /* TEXT */ ) @@ -24657,11 +24663,11 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "" }, [ vue.createElementVNode("view", { - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "订单自编码:"), vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -24671,7 +24677,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划件数:"), vue.createTextVNode( - vue.toDisplayString(item.planNum || 0), + vue.toDisplayString(item2.planNum || 0), 1 /* TEXT */ ) @@ -24679,7 +24685,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "扫描件数:"), vue.createTextVNode( - vue.toDisplayString(item.scanNum || 0), + vue.toDisplayString(item2.scanNum || 0), 1 /* TEXT */ ) @@ -24687,16 +24693,16 @@ This will fail in production if not fixed.`); ]) ]), vue.createElementVNode("view", { class: "buttts" }, [ - item.trayLean ? (vue.openBlock(), vue.createElementBlock("view", { + item2.trayLean ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "antu", - onClick: ($event) => ckscanningCode(item) + onClick: ($event) => ckscanningCode(item2) }, " 整托备货扫码 ", 8, ["onClick"])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(' '), vue.createElementVNode("view", { class: "anj", - onClick: ($event) => godetails(item) - }, vue.toDisplayString(item.completeStact ? "查看明细" : "按件备货扫码"), 9, ["onClick"]), + onClick: ($event) => godetails(item2) + }, vue.toDisplayString(item2.completeStact ? "查看明细" : "按件备货扫码"), 9, ["onClick"]), vue.createCommentVNode(' \r\n 查看明细\r\n ') ]) ]); @@ -24708,7 +24714,7 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) == 2 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(vue.unref(stockList), (item) => { + vue.renderList(vue.unref(stockList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createCommentVNode(` \r \r @@ -24722,10 +24728,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "货位:"), - item.allocations ? (vue.openBlock(), vue.createElementBlock( + item2.allocations ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0 }, - vue.toDisplayString(item.allocationList ? item.allocationList.map((val) => val.name).join(",") : ""), + vue.toDisplayString(item2.allocationList ? item2.allocationList.map((val) => val.name).join(",") : ""), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true) @@ -24733,7 +24739,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物品:"), vue.createTextVNode( - vue.toDisplayString(item.materialName), + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -24743,7 +24749,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "SKU:"), vue.createTextVNode( - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -24751,7 +24757,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "规格:"), vue.createTextVNode( - vue.toDisplayString(item.cargoNorms), + vue.toDisplayString(item2.cargoNorms), 1 /* TEXT */ ) @@ -24761,7 +24767,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物料编码:"), vue.createTextVNode( - vue.toDisplayString(item.cargoNumber), + vue.toDisplayString(item2.cargoNumber), 1 /* TEXT */ ) @@ -24769,7 +24775,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "单位:"), vue.createTextVNode( - vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) @@ -24779,7 +24785,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划数量:"), vue.createTextVNode( - vue.toDisplayString(item.planNum || 0), + vue.toDisplayString(item2.planNum || 0), 1 /* TEXT */ ) @@ -24787,20 +24793,20 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "已扫数量:"), vue.createTextVNode( - vue.toDisplayString(item.realNum || 0), + vue.toDisplayString(item2.realNum || 0), 1 /* TEXT */ ) ]) ]) ]), - Number(item.realNum) < Number(item.planNum) ? (vue.openBlock(), vue.createElementBlock("view", { + Number(item2.realNum) < Number(item2.planNum) ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "buttts" }, [ vue.createElementVNode("view", { class: "anj", - onClick: ($event) => goBarCode(item) + onClick: ($event) => goBarCode(item2) }, " 配置包条码 ", 8, ["onClick"]), vue.createCommentVNode(' \r\n 拆包\r\n ') ])) : vue.createCommentVNode("v-if", true) @@ -24813,16 +24819,16 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) == 3 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 2 }, - vue.renderList(vue.unref(zeroOrderList), (item) => { + vue.renderList(vue.unref(zeroOrderList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode("view", { class: "boxcontt" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("view", { - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "订单自编码:"), vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -24832,7 +24838,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划件数:"), vue.createTextVNode( - vue.toDisplayString(item.planNum || 0), + vue.toDisplayString(item2.planNum || 0), 1 /* TEXT */ ) @@ -24840,7 +24846,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "扫描件数:"), vue.createTextVNode( - vue.toDisplayString(item.scanNum || 0), + vue.toDisplayString(item2.scanNum || 0), 1 /* TEXT */ ) @@ -24854,8 +24860,8 @@ This will fail in production if not fixed.`); vue.createCommentVNode(' \r\n 打印订单号\r\n '), vue.createElementVNode("view", { class: "anj", - onClick: ($event) => handleStockUpByZero(item) - }, vue.toDisplayString(item.completeStact ? "查看明细" : "去备货"), 9, ["onClick"]) + onClick: ($event) => handleStockUpByZero(item2) + }, vue.toDisplayString(item2.completeStact ? "查看明细" : "去备货"), 9, ["onClick"]) ]) ]); }), @@ -25179,10 +25185,10 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).allocationList, (item, index2) => { + vue.renderList(vue.unref(details).allocationList, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.allocationid, - onClick: () => handleStockUpZero(item, 1), + key: item2.allocationid, + onClick: () => handleStockUpZero(item2, 1), class: vue.normalizeClass({ mb20: index2 !== vue.unref(details).allocationList.length - 1, item_contariner: true }) }, [ vue.createElementVNode("view", { class: "flex-c-sb" }, [ @@ -25191,7 +25197,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.allocationName), + vue.toDisplayString(item2.allocationName), 1 /* TEXT */ ) @@ -25201,7 +25207,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -25253,10 +25259,10 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).trayList, (item, index2) => { + vue.renderList(vue.unref(details).trayList, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.allocationid, - onClick: () => handleStockUpZero(item, 2), + key: item2.allocationid, + onClick: () => handleStockUpZero(item2, 2), class: vue.normalizeClass({ mb20: index2 !== vue.unref(details).trayList.length - 1, item_contariner: true }) }, [ vue.createElementVNode("view", { class: "flex-c-sb" }, [ @@ -25265,7 +25271,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.trayName), + vue.toDisplayString(item2.trayName), 1 /* TEXT */ ) @@ -25275,7 +25281,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -25570,15 +25576,15 @@ This will fail in production if not fixed.`); clearTimeout(timer); }, 200); }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } function prinbut() { let list = [], checklist = []; - details.dataList.map((item, index2) => { - list.push(item.packageBarCode); + details.dataList.map((item2, index2) => { + list.push(item2.packageBarCode); checklist.push(index2); }); tiplists.value.setdetails({ @@ -25602,13 +25608,13 @@ This will fail in production if not fixed.`); if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true }); let _isReturn = false; - deta.checklist.forEach((item) => { + deta.checklist.forEach((item2) => { var _a, _b, _c, _d; if (_isReturn) return; let text = "! 0 200 200 333 1\r\n"; text += "SETBOLD 2\r\n"; - text += `T 56 0 0 0 ${(_a = details.dataList[item]) == null ? void 0 : _a.orderCode}\r + text += `T 56 0 0 0 ${(_a = details.dataList[item2]) == null ? void 0 : _a.orderCode}\r `; text += "LINE 0 50 420 50 3\r\n"; text += `T 55 0 0 60 客户\r @@ -25623,14 +25629,14 @@ This will fail in production if not fixed.`); text += `T 55 0 0 120 物料\r `; text += "LINE 40 110 40 140 3\r\n"; - text += `T 55 0 50 120 ${(_b = details.dataList[item]) == null ? void 0 : _b.materialName}\r + text += `T 55 0 50 120 ${(_b = details.dataList[item2]) == null ? void 0 : _b.materialName}\r `; text += "LINE 0 140 420 140 3\r\n"; text += "B QR 150 150 M 2 U 4\r\n"; - text += `MA,${(_c = details.dataList[item]) == null ? void 0 : _c.packageBarCode}\r + text += `MA,${(_c = details.dataList[item2]) == null ? void 0 : _c.packageBarCode}\r `; text += "ENDQR\r\n"; - text += `T 55 0 140 260 ${(_d = details.dataList[item]) == null ? void 0 : _d.packageBarCode}\r + text += `T 55 0 140 260 ${(_d = details.dataList[item2]) == null ? void 0 : _d.packageBarCode}\r `; text += "FORM\r\n"; text += "PRINT\r\n"; @@ -25816,19 +25822,19 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(dataList), (item) => { + vue.renderList(vue.unref(dataList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "ite", onClick: showsdqs }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("view", { - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) - }, "订单号:" + vue.toDisplayString(item.orderCode), 9, ["onClick"]), + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) + }, "订单号:" + vue.toDisplayString(item2.orderCode), 9, ["onClick"]), vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.packageBarCode), + "包条码:" + vue.toDisplayString(item2.packageBarCode), 1 /* TEXT */ ) @@ -25837,14 +25843,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "货物类型:" + vue.toDisplayString(item.goodsType == 1 ? "定制品" : ""), + "货物类型:" + vue.toDisplayString(item2.goodsType == 1 ? "定制品" : ""), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "是否备货:" + vue.toDisplayString(item.isScanStr), + "是否备货:" + vue.toDisplayString(item2.isScanStr), 1 /* TEXT */ ) @@ -25853,7 +25859,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { style: { "flex": "1" } }, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -26053,40 +26059,40 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/signinScan/signinScan.vue:241", value); details.show = value; } - function gocustomersign(item) { - formatAppLog("log", "at pagesHome/pages/signinScan/signinScan.vue:251", "item :>> ", item); + function gocustomersign(item2) { + formatAppLog("log", "at pagesHome/pages/signinScan/signinScan.vue:251", "item :>> ", item2); const data = { - type_name: item.type_name, - type: item.type, - deliStatus_name: item.deliStatus_name, - vehicleName: item.vehicleName, - driverName: item.driverName, - loadingTeamName: item.loadingTeamName, - isstock: item.isstock, - customersNumber: item.customersNumber, - orderNumber: item.orderNumber, - id: item.id + type_name: item2.type_name, + type: item2.type, + deliStatus_name: item2.deliStatus_name, + vehicleName: item2.vehicleName, + driverName: item2.driverName, + loadingTeamName: item2.loadingTeamName, + isstock: item2.isstock, + customersNumber: item2.customersNumber, + orderNumber: item2.orderNumber, + id: item2.id }; uni.navigateTo({ url: "/pagesHome/pages/CustomerSign/CustomerSign?item=" + JSON.stringify(data) }); } - function goSignDetailScan(item) { - formatAppLog("log", "at pagesHome/pages/signinScan/signinScan.vue:269", "item :>> ", item); + function goSignDetailScan(item2) { + formatAppLog("log", "at pagesHome/pages/signinScan/signinScan.vue:269", "item :>> ", item2); const data = { - type_name: item.type_name, - deliStatus_name: item.deliStatus_name, - vehicleName: item.vehicleName, - driverName: item.driverName, - loadingTeamName: item.loadingTeamName, - isstock: item.isstock, - customersNumber: item.customersNumber, - orderNumber: item.orderNumber, - loadCusNub: item.loadCusNub, - loadOrdNub: item.loadOrdNub, - signNub: item.signNub, - signNubSr: item.signNubSr, - id: item.id + type_name: item2.type_name, + deliStatus_name: item2.deliStatus_name, + vehicleName: item2.vehicleName, + driverName: item2.driverName, + loadingTeamName: item2.loadingTeamName, + isstock: item2.isstock, + customersNumber: item2.customersNumber, + orderNumber: item2.orderNumber, + loadCusNub: item2.loadCusNub, + loadOrdNub: item2.loadOrdNub, + signNub: item2.signNub, + signNubSr: item2.signNubSr, + id: item2.id }; uni.navigateTo({ url: "/pagesHome/pages/SignDetailScan/SignDetailScan?item=" + JSON.stringify(data) @@ -26194,14 +26200,14 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode("view", { class: "headtop" }, [ vue.createElementVNode("view", { class: "type1s" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送任务号:"), vue.createTextVNode( - vue.toDisplayString(item == null ? void 0 : item.trainNumber), + vue.toDisplayString(item2 == null ? void 0 : item2.trainNumber), 1 /* TEXT */ ) @@ -26211,7 +26217,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送类型:"), vue.createTextVNode( - vue.toDisplayString(item == null ? void 0 : item.type_name), + vue.toDisplayString(item2 == null ? void 0 : item2.type_name), 1 /* TEXT */ ) @@ -26219,7 +26225,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送状态:"), vue.createTextVNode( - vue.toDisplayString(item == null ? void 0 : item.deliStatus_name), + vue.toDisplayString(item2 == null ? void 0 : item2.deliStatus_name), 1 /* TEXT */ ) @@ -26229,7 +26235,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "车牌号:"), vue.createTextVNode( - vue.toDisplayString(item == null ? void 0 : item.vehicleName), + vue.toDisplayString(item2 == null ? void 0 : item2.vehicleName), 1 /* TEXT */ ) @@ -26237,7 +26243,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "司机:"), vue.createTextVNode( - vue.toDisplayString(item == null ? void 0 : item.driverName), + vue.toDisplayString(item2 == null ? void 0 : item2.driverName), 1 /* TEXT */ ) @@ -26247,7 +26253,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "装卸班组:"), vue.createTextVNode( - vue.toDisplayString(item == null ? void 0 : item.loadingTeamName), + vue.toDisplayString(item2 == null ? void 0 : item2.loadingTeamName), 1 /* TEXT */ ) @@ -26255,7 +26261,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "bhcolor" }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货是否完成:"), vue.createTextVNode( - vue.toDisplayString(item == null ? void 0 : item.isstock), + vue.toDisplayString(item2 == null ? void 0 : item2.isstock), 1 /* TEXT */ ) @@ -26265,7 +26271,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "客户:"), vue.createTextVNode( - vue.toDisplayString(item == null ? void 0 : item.consignee), + vue.toDisplayString(item2 == null ? void 0 : item2.consignee), 1 /* TEXT */ ) @@ -26275,7 +26281,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送日期:"), vue.createTextVNode( - vue.toDisplayString(item == null ? void 0 : item.taskTime), + vue.toDisplayString(item2 == null ? void 0 : item2.taskTime), 1 /* TEXT */ ) @@ -26283,25 +26289,25 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "liebs" }, [ vue.createElementVNode("view", { - onClick: ($event) => gocustomersign(item) + onClick: ($event) => gocustomersign(item2) }, [ vue.createElementVNode("view", null, "配送客户数"), vue.createElementVNode( "view", { class: "golink" }, - vue.toDisplayString((item == null ? void 0 : item.customersNumber) || 0), + vue.toDisplayString((item2 == null ? void 0 : item2.customersNumber) || 0), 1 /* TEXT */ ) ], 8, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => goSignDetailScan(item) + onClick: ($event) => goSignDetailScan(item2) }, [ vue.createElementVNode("view", null, "订单总数"), vue.createElementVNode( "view", { class: "golink" }, - vue.toDisplayString((item == null ? void 0 : item.orderNumber) || 0), + vue.toDisplayString((item2 == null ? void 0 : item2.orderNumber) || 0), 1 /* TEXT */ ) @@ -26311,7 +26317,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString((item == null ? void 0 : item.deliveryNumber) || 0), + vue.toDisplayString((item2 == null ? void 0 : item2.deliveryNumber) || 0), 1 /* TEXT */ ) @@ -26321,7 +26327,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString((item == null ? void 0 : item.signNub) || 0), + vue.toDisplayString((item2 == null ? void 0 : item2.signNub) || 0), 1 /* TEXT */ ) @@ -26331,7 +26337,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString((item == null ? void 0 : item.inventoryNub) || 0), + vue.toDisplayString((item2 == null ? void 0 : item2.inventoryNub) || 0), 1 /* TEXT */ ) @@ -26506,9 +26512,9 @@ This will fail in production if not fixed.`); details.tabBarCode = code2; basicContainer.value.startPullDownRefresh(); } - async function goselscan(item) { + async function goselscan(item2) { uni.navigateTo({ - url: "/pagesHome/pages/directGoMarketDetails/directGoMarketDetails?id=" + item.id + url: "/pagesHome/pages/directGoMarketDetails/directGoMarketDetails?id=" + item2.id }); } function cleartime() { @@ -26516,11 +26522,11 @@ This will fail in production if not fixed.`); date2.value = []; basicContainer.value.startPullDownRefresh(); } - const handleShowImg = async (item) => { + const handleShowImg = async (item2) => { details.imgFileList = []; - if (item.signPhotoList && item.signPhotoList.length > 0) { - for (let i2 = 0; i2 < item.signPhotoList.length; i2++) { - const { photoUrl, id } = item.signPhotoList[i2]; + if (item2.signPhotoList && item2.signPhotoList.length > 0) { + for (let i2 = 0; i2 < item2.signPhotoList.length; i2++) { + const { photoUrl, id } = item2.signPhotoList[i2]; photoUrl && details.imgFileList.push({ url: photoUrl, id }); } } @@ -26534,13 +26540,13 @@ This will fail in production if not fixed.`); title: "请上传图片再提交" }); const submitData = { - signOrderId: item.id, + signOrderId: item2.id, signPhotoList: [] }; for (let i2 = 0; i2 < details.imgFileList.length; i2++) { const value = details.imgFileList[i2]; submitData.signPhotoList.push({ - signOrderId: item.id, + signOrderId: item2.id, photoType: 1, photoUrl: value.url }); @@ -26563,12 +26569,12 @@ This will fail in production if not fixed.`); const writeArr = ["jpg", "jpeg", "png"]; const PromiseAll = []; for (let i2 = 0; i2 < event.file.length; i2++) { - const item = event.file[i2]; - const type2 = item.name.split(".").slice(-1)[0]; + const item2 = event.file[i2]; + const type2 = item2.name.split(".").slice(-1)[0]; if (writeArr.indexOf(type2) === -1) continue; formatAppLog("log", "at pagesHome/pages/directGoMarket/directGoMarket.vue:359", "type :>> ", type2); - PromiseAll.push(api.upfile(item.url)); + PromiseAll.push(api.upfile(item2.url)); } const res = await Promise.all(PromiseAll); formatAppLog("log", "at pagesHome/pages/directGoMarket/directGoMarket.vue:367", "res :>> ", res); @@ -26686,14 +26692,14 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(recordsList), (item) => { + vue.renderList(vue.unref(recordsList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode("view", { class: "headtop" }, [ vue.createElementVNode("view", { class: "type1s" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "商场名称:"), vue.createTextVNode( - vue.toDisplayString(item.mallName), + vue.toDisplayString(item2.mallName), 1 /* TEXT */ ) @@ -26701,7 +26707,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "商场联系人:"), vue.createTextVNode( - vue.toDisplayString(item.mallPerson), + vue.toDisplayString(item2.mallPerson), 1 /* TEXT */ ) @@ -26711,7 +26717,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "商场联系电话:"), vue.createTextVNode( - vue.toDisplayString(item.mallMobile), + vue.toDisplayString(item2.mallMobile), 1 /* TEXT */ ) @@ -26719,7 +26725,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "商场地址:"), vue.createTextVNode( - vue.toDisplayString(item.mallAddress), + vue.toDisplayString(item2.mallAddress), 1 /* TEXT */ ) @@ -26729,7 +26735,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "签收时间:"), vue.createTextVNode( - vue.toDisplayString(item.signTime), + vue.toDisplayString(item2.signTime), 1 /* TEXT */ ) @@ -26739,7 +26745,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "司机:"), vue.createTextVNode( - vue.toDisplayString(item.driverName), + vue.toDisplayString(item2.driverName), 1 /* TEXT */ ) @@ -26749,7 +26755,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "text", null, - vue.toDisplayString(item.carsNo || "暂无数据"), + vue.toDisplayString(item2.carsNo || "暂无数据"), 1 /* TEXT */ ) @@ -26761,7 +26767,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.planNum), + vue.toDisplayString(item2.planNum), 1 /* TEXT */ ) @@ -26771,7 +26777,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.loadingNum), + vue.toDisplayString(item2.loadingNum), 1 /* TEXT */ ) @@ -26781,7 +26787,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.signNum), + vue.toDisplayString(item2.signNum), 1 /* TEXT */ ) @@ -26790,11 +26796,11 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "buts" }, [ vue.createElementVNode("view", { - onClick: ($event) => goselscan(item) + onClick: ($event) => goselscan(item2) }, "签收", 8, ["onClick"]), vue.unref(details).tabBarCode === 20 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, - onClick: ($event) => handleShowImg(item) + onClick: ($event) => handleShowImg(item2) }, "签收图片", 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ]) ]); @@ -27052,9 +27058,9 @@ This will fail in production if not fixed.`); let _scanCode = details.scancode; let isHave = false; let returnContent = ""; - for (let item of details.signScanOrderList) { + for (let item2 of details.signScanOrderList) { let isBreak = false; - for (let val of item.signPackageList) { + for (let val of item2.signPackageList) { if (_scanCode === val.orderPackageCode) { isHave = true; isBreak = true; @@ -27313,9 +27319,9 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.waybillNo + key: item2.waybillNo }, [ Number(vue.unref(orderStatus)) !== 3 ? (vue.openBlock(), vue.createBlock( _component_PullDownBox, @@ -27328,7 +27334,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "row_value" }, - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -27338,7 +27344,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "row_value" }, - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -27348,7 +27354,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", null, "订单总数:"), vue.createTextVNode( - " " + vue.toDisplayString(item.totalNum), + " " + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ) @@ -27356,7 +27362,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", null, " 装车数/签收数: "), vue.createTextVNode( - " " + vue.toDisplayString(item.loadingNum + "/" + item.signNum), + " " + vue.toDisplayString(item2.loadingNum + "/" + item2.signNum), 1 /* TEXT */ ) @@ -27368,7 +27374,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.signPackageList, (value) => { + vue.renderList(item2.signPackageList, (value) => { return vue.openBlock(), vue.createElementBlock("view", { key: value.name, class: "details_container" @@ -27427,7 +27433,7 @@ This will fail in production if not fixed.`); [ vue.createElementVNode("view", { class: "flex-c-sb", - onClick: ($event) => handleZeroStowage(item, value) + onClick: ($event) => handleZeroStowage(item2, value) }, [ vue.createElementVNode( "view", @@ -27486,7 +27492,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "flex1" }, - " 包条码: " + vue.toDisplayString(item.scanCode), + " 包条码: " + vue.toDisplayString(item2.scanCode), 1 /* TEXT */ ), @@ -27498,7 +27504,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "tip" }, - vue.toDisplayString(Number(item.scanStatus) === 1 ? "已装车" : Number(item.scanStatus) === 2 ? "已卸车" : "已签收"), + vue.toDisplayString(Number(item2.scanStatus) === 1 ? "已装车" : Number(item2.scanStatus) === 2 ? "已卸车" : "已签收"), 1 /* TEXT */ ) @@ -27511,14 +27517,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "flex1" }, - " 托盘名称: " + vue.toDisplayString(item.trayName || "暂无数据"), + " 托盘名称: " + vue.toDisplayString(item2.trayName || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "flex1" }, - " 托盘码: " + vue.toDisplayString(item.trayCode || "暂无数据"), + " 托盘码: " + vue.toDisplayString(item2.trayCode || "暂无数据"), 1 /* TEXT */ ) @@ -27676,22 +27682,22 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).trayInfo.zeroList, (item) => { + vue.renderList(vue.unref(details).trayInfo.zeroList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.scanCode, + key: item2.scanCode, class: "pop_row" }, [ vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "运单号:" + vue.toDisplayString(item.waybillNo), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ), @@ -27699,14 +27705,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "产品名称:" + vue.toDisplayString(item.scanCode), + "产品名称:" + vue.toDisplayString(item2.scanCode), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.num), + "数量:" + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -27720,15 +27726,15 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).trayInfo.packageList, (item) => { + vue.renderList(vue.unref(details).trayInfo.packageList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item, + key: item2, class: "pop_row" }, [ vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ), @@ -27736,14 +27742,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.scanCode), + "包条码:" + vue.toDisplayString(item2.scanCode), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.num), + "数量:" + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -27864,10 +27870,10 @@ This will fail in production if not fixed.`); this.show = !this.show; this.isClick = !this.isClick; }, - change(item) { - if (this.value != item[this.valueType]) { - this.$emit("input", item[this.valueType.value]); - this.$emit("change", item[this.valueType.value]); + change(item2) { + if (this.value != item2[this.valueType]) { + this.$emit("input", item2[this.valueType.value]); + this.$emit("change", item2[this.valueType.value]); } this.show = false; this.isClick = false; @@ -27884,18 +27890,18 @@ This will fail in production if not fixed.`); if (sel) { let arrCons = []; let selVal = []; - this.data.forEach((item) => { - arrCons.push(item); + this.data.forEach((item2) => { + arrCons.push(item2); }); - arrCons.forEach((item) => { - formatAppLog("log", "at compoment/cus-selects-fan/cus-selects-fan.vue:153", item, sel, "arrCons---", item.label.indexOf(sel)); + arrCons.forEach((item2) => { + formatAppLog("log", "at compoment/cus-selects-fan/cus-selects-fan.vue:153", item2, sel, "arrCons---", item2.label.indexOf(sel)); if (this.searchType == 1) { - if (item[this.valueType.label].indexOf(sel) != -1) { - selVal.push(item); + if (item2[this.valueType.label].indexOf(sel) != -1) { + selVal.push(item2); } } else { - if (item[this.valueType.label] == sel) { - selVal.push(item); + if (item2[this.valueType.label] == sel) { + selVal.push(item2); } } }); @@ -27985,12 +27991,12 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($data.showData, (item, index2) => { + vue.renderList($data.showData, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { key: index2, - class: vue.normalizeClass(["select_content_li", { "selected": $props.value == item[$props.valueType.value] }]), - onClick: ($event) => $options.change(item) - }, vue.toDisplayString(item.label), 11, ["onClick"]); + class: vue.normalizeClass(["select_content_li", { "selected": $props.value == item2[$props.valueType.value] }]), + onClick: ($event) => $options.change(item2) + }, vue.toDisplayString(item2.label), 11, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ @@ -28114,7 +28120,7 @@ This will fail in production if not fixed.`); if (code2 !== 200) return; details.isscan = true; - formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:235", res); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:237", res); basicContainer.value.startPullDownRefresh(); } async function initpage() { @@ -28152,10 +28158,10 @@ This will fail in production if not fixed.`); const { code: code2, data } = response2; if (code2 !== 200) return; - formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:274", "data.inventoryList :>> ", data.inventoryList); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:276", "data.inventoryList :>> ", data.inventoryList); details.datalist = data.inventoryList; - details.datalist.every((item) => { - if (item.esauInventoryNum == -1) { + details.datalist.every((item2) => { + if (item2.esauInventoryNum == -1) { uni.showToast({ title: "物品备货未完成,请前往备货", icon: "none" @@ -28180,7 +28186,7 @@ This will fail in production if not fixed.`); size: 10 }; const res = await billLadingZeroBillOrderData(deta); - formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:304", "res :>> ", res); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:306", "res :>> ", res); const { code: code2, data } = res; if (code2 !== 200) return; @@ -28208,15 +28214,15 @@ This will fail in production if not fixed.`); function search() { basicContainer.value.startPullDownRefresh(); } - async function showsTipsZero(item) { + async function showsTipsZero(item2) { try { - formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:343", "item :>> ", item); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:345", "item :>> ", item2); let subdata = { billLadingId: details.billLadingId, - stockArtieleld: item.id + stockArtieleld: item2.id }; const response2 = await billLadingzeroBillData(subdata); - formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:350", "response :>> ", response2); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:352", "response :>> ", response2); const { code: code2, data } = response2; if (code2 !== 200) return uni.showToast({ @@ -28265,7 +28271,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:402", "list :>> ", list); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:404", "list :>> ", list); tiplists.value.setdetails({ isshow: true, tipstate: 2, @@ -28276,7 +28282,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:415", "res :>> ", res); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:417", "res :>> ", res); if (res.code === 200) { uni.showToast({ title: res.msg @@ -28285,7 +28291,7 @@ This will fail in production if not fixed.`); } tiplists.value.setdetails({ isshow: false }); } catch (err) { - formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:424", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:426", "err :>> ", err); } }, cancel: () => { @@ -28296,7 +28302,7 @@ This will fail in production if not fixed.`); } }); } catch (err) { - formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:436", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:438", "err :>> ", err); } finally { } }, @@ -28308,7 +28314,7 @@ This will fail in production if not fixed.`); } }); } catch (err) { - formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:449", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:451", "err :>> ", err); } } function checktype(e2) { @@ -28317,11 +28323,11 @@ This will fail in production if not fixed.`); details.orderStatus = 0; return; } - details.typearr.map((item) => { - if (item.value == e2) { - details.schanvalue = item.label; - details.orderStatus = item.value; - formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:464", details.schanvalue); + details.typearr.map((item2) => { + if (item2.value == e2) { + details.schanvalue = item2.label; + details.orderStatus = item2.value; + formatAppLog("log", "at pagesHome/pages/SelfPScanList/SelfPScanList.vue:466", details.schanvalue); } }); } @@ -28478,10 +28484,10 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, - { key: item }, + { key: item2 }, [ vue.unref(orderType) == 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, @@ -28492,7 +28498,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "订单编号:"), vue.createTextVNode( - " " + vue.toDisplayString(item.orderSelfNumbering), + " " + vue.toDisplayString(item2.orderSelfNumbering), 1 /* TEXT */ ) @@ -28502,7 +28508,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划数:"), vue.createTextVNode( - vue.toDisplayString(item.planNum), + vue.toDisplayString(item2.planNum), 1 /* TEXT */ ) @@ -28510,7 +28516,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "已扫码数:"), vue.createTextVNode( - vue.toDisplayString(item.signedNum), + vue.toDisplayString(item2.signedNum), 1 /* TEXT */ ) @@ -28519,9 +28525,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - class: vue.normalizeClass(item.orderStatusStr == "齐套" ? "tip tp1" : item.orderStatusStr == "部分扫" ? "tip tp3" : "tip tp2") + class: vue.normalizeClass(item2.orderStatusStr == "齐套" ? "tip tp1" : item2.orderStatusStr == "部分扫" ? "tip tp3" : "tip tp2") }, - vue.toDisplayString(item.orderStatusStr), + vue.toDisplayString(item2.orderStatusStr), 3 /* TEXT, CLASS */ ) @@ -28535,7 +28541,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "SKU:"), vue.createTextVNode( - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -28545,7 +28551,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物品:"), vue.createTextVNode( - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -28553,7 +28559,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "规格:"), vue.createTextVNode( - vue.toDisplayString(item.specification), + vue.toDisplayString(item2.specification), 1 /* TEXT */ ) @@ -28563,7 +28569,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "单位:"), vue.createTextVNode( - vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) @@ -28571,7 +28577,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "自提数:"), vue.createTextVNode( - vue.toDisplayString(item.quantity), + vue.toDisplayString(item2.quantity), 1 /* TEXT */ ) @@ -28583,13 +28589,13 @@ This will fail in production if not fixed.`); vue.unref(orderType) == 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "itec", - onClick: ($event) => showsTipsZero(item) + onClick: ($event) => showsTipsZero(item2) }, [ vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "订单号:"), vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -28599,7 +28605,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "运单号:"), vue.createTextVNode( - vue.toDisplayString(item.waybillNumber), + vue.toDisplayString(item2.waybillNumber), 1 /* TEXT */ ) @@ -28609,7 +28615,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "产品名称:"), vue.createTextVNode( - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -28619,7 +28625,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "预计签收件数:"), vue.createTextVNode( - vue.toDisplayString(item.reservationQuantity), + vue.toDisplayString(item2.reservationQuantity), 1 /* TEXT */ ) @@ -28627,7 +28633,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "实际签收件数:"), vue.createTextVNode( - vue.toDisplayString(item.signforQuantity), + vue.toDisplayString(item2.signforQuantity), 1 /* TEXT */ ) @@ -28806,12 +28812,12 @@ This will fail in production if not fixed.`); this.$emit("sort-change", { order: this.descending ? "descending" : null }); }, clearOther() { - this.root.thChildren.map((item) => { - if (item !== this) { - item.ascending = false; - item.descending = false; + this.root.thChildren.map((item2) => { + if (item2 !== this) { + item2.ascending = false; + item2.descending = false; } - return item; + return item2; }); }, ondropdown(e2) { @@ -29003,8 +29009,8 @@ This will fail in production if not fixed.`); this.root.check(rootData || this, e2.checked, rootData ? this.keyValue : null); }, change(e2) { - this.root.trChildren.forEach((item) => { - if (item === this) { + this.root.trChildren.forEach((item2) => { + if (item2 === this) { this.root.check(this, e2.detail.value.length > 0 ? true : false); } }); @@ -29212,11 +29218,11 @@ This will fail in production if not fixed.`); let isHaveData = this.data && this.data.length > 0; theadChildren.checked = true; theadChildren.indeterminate = false; - this.trChildren.forEach((item, index2) => { - if (!item.disabled) { - item.checked = true; - if (isHaveData && item.keyValue) { - const row = this.data.find((v2) => v2[this.rowKey] === item.keyValue); + this.trChildren.forEach((item2, index2) => { + if (!item2.disabled) { + item2.checked = true; + if (isHaveData && item2.keyValue) { + const row = this.data.find((v2) => v2[this.rowKey] === item2.keyValue); if (!this.backData.find((v2) => v2[this.rowKey] === row[this.rowKey])) { this.backData.push(row); } @@ -29238,23 +29244,23 @@ This will fail in production if not fixed.`); */ toggleRowSelection(row, selected) { row = [].concat(row); - this.trChildren.forEach((item, index2) => { + this.trChildren.forEach((item2, index2) => { const select = row.findIndex((v2) => { if (typeof v2 === "number") { return v2 === index2 - 1; } else { - return v2[this.rowKey] === item.keyValue; + return v2[this.rowKey] === item2.keyValue; } }); - let ischeck = item.checked; + let ischeck = item2.checked; if (select !== -1) { if (typeof selected === "boolean") { - item.checked = selected; + item2.checked = selected; } else { - item.checked = !item.checked; + item2.checked = !item2.checked; } - if (ischeck !== item.checked) { - this.check(item.rowData || item, item.checked, item.rowData ? item.keyValue : null, true); + if (ischeck !== item2.checked) { + this.check(item2.rowData || item2, item2.checked, item2.rowData ? item2.keyValue : null, true); } } }); @@ -29275,8 +29281,8 @@ This will fail in production if not fixed.`); } theadChildren.checked = false; theadChildren.indeterminate = false; - this.trChildren.forEach((item) => { - item.checked = false; + this.trChildren.forEach((item2) => { + item2.checked = false; }); this.backData = []; this.backIndexData = []; @@ -29299,8 +29305,8 @@ This will fail in production if not fixed.`); } else { startIndex = theadChildren.rowspan - 1; } - this.trChildren.forEach((item, index2) => { - if (!item.disabled) { + this.trChildren.forEach((item2, index2) => { + if (!item2.disabled) { if (index2 > startIndex - 1) { list.push(index2 - startIndex); } @@ -29319,7 +29325,7 @@ This will fail in production if not fixed.`); if (!this.theadChildren) { theadChildren = this.trChildren[0]; } - let childDomIndex = this.trChildren.findIndex((item, index2) => child === item); + let childDomIndex = this.trChildren.findIndex((item2, index2) => child === item2); if (childDomIndex < 0) { childDomIndex = this.data.findIndex((v2) => v2[this.rowKey] === keyValue) + 1; } @@ -29335,13 +29341,13 @@ This will fail in production if not fixed.`); this.backIndexData.push(childDomIndex - 1); } else { const index2 = this.backData.findIndex((v2) => v2[this.rowKey] === keyValue); - const idx = this.backIndexData.findIndex((item) => item === childDomIndex - 1); + const idx = this.backIndexData.findIndex((item2) => item2 === childDomIndex - 1); if (keyValue) { this.backData.splice(index2, 1); } this.backIndexData.splice(idx, 1); } - const domCheckAll = this.trChildren.find((item, index2) => index2 > 0 && !item.checked && !item.disabled); + const domCheckAll = this.trChildren.find((item2, index2) => index2 > 0 && !item2.checked && !item2.disabled); if (!domCheckAll) { theadChildren.indeterminate = false; theadChildren.checked = true; @@ -29473,7 +29479,7 @@ This will fail in production if not fixed.`); uni.$off("scancodedate"); uni.$on("scancodedate", function(code2) { if (code2) { - formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:204", code2); + formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:205", code2); details.scancode = code2; sacn(); } @@ -29483,14 +29489,14 @@ This will fail in production if not fixed.`); details.dataList = details.orderList; details.scrollHeight = await utils.getViewDistanceFormTop(".scrollv"); }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } function showsdqs() { if (details.planNum <= details.signedNum) - return utils.handleToast("提货计划已完成"); + return; tiplists.value.setdetails({ isshow: true, tipstate: 1, @@ -29512,16 +29518,16 @@ This will fail in production if not fixed.`); } }); } - function showsTipsZero(item) { - formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:250", "item :>> ", item); + function showsTipsZero(item2) { + formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:251", "item :>> ", item2); const inpList = [ { - title: item.firsts, - maxNum: item.reservationQuantity, + title: item2.firsts, + maxNum: item2.reservationQuantity, minNum: 0, type: "Number", - value: item.signforQuantity || 0, - disabled: item.signforQuantity > 0 + value: item2.signforQuantity || 0, + disabled: item2.signforQuantity > 0 } ]; tiplists.value.setdetails({ @@ -29529,11 +29535,11 @@ This will fail in production if not fixed.`); tipstate: 4, inpList, title: "签收零担", - placeholder: `订单${item.orderCode}下${item.firsts}的数量`, + placeholder: `订单${item2.orderCode}下${item2.firsts}的数量`, inputtext: "", success: async (detail) => { try { - formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:273", "item :>> ", item); + formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:274", "item :>> ", item2); const { inpList: [_info] } = detail; if (_info.disabled) tiplists.value.setdetails({ isshow: false }); @@ -29543,15 +29549,15 @@ This will fail in production if not fixed.`); icon: "none" }); const submitForm = { - id: item.id, - stockArticleId: item.stockArticleId, + id: item2.id, + stockArticleId: item2.stockArticleId, quantity: _info.value }; const res = await billLadinggetZeroBillPack({ billLadingId: details.billLadingId, billLadingZeroVO: submitForm }); if (res.code === 200) initpage(); } catch (err) { - formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:291", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:292", "err :>> ", err); } finally { tiplists.value.setdetails({ isshow: false }); } @@ -29566,20 +29572,18 @@ This will fail in production if not fixed.`); } async function sacn() { try { - if (details.orderCode === 3) + if (Number(details.orderType) === 3) return; - if (details.planNum <= details.signedNum) - return utils.handleToast("提货计划已完成"); let content = ""; let haveData = false; for (let i2 = 0; i2 < details.orderList.length; i2++) { - const item = details.orderList[i2]; + const item2 = details.orderList[i2]; if (content) break; - if (details.scancode !== item.orderPackageCode) + if (details.scancode !== item2.orderPackageCode) continue; haveData = true; - if (item.scanStatus === 2) { + if (item2.scanStatus === 2) { content = "包件已扫描"; const _value = details.orderList.splice(i2, 1); details.orderList.unshift(_value[0]); @@ -29590,13 +29594,15 @@ This will fail in production if not fixed.`); return utils.handleToast("码值错误, 不在本计划内"); if (content) return utils.handleToast(content); + if (details.planNum <= details.signedNum) + return; let data = { id: details.billLadingId, coding: details.scancode, type: details.orderType == 1 ? "2" : "1" }; let res = await billLadingscan(data); - formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:342", res); + formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:343", res); if (res.code == 200) { details.isscan = true; details.scanOrderPackageCode = data.coding; @@ -29609,7 +29615,7 @@ This will fail in production if not fixed.`); utils.ttsspke(res.audio); } } catch (err) { - formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:356", "err :>> ", err); + formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:357", "err :>> ", err); } finally { } } @@ -29624,19 +29630,19 @@ This will fail in production if not fixed.`); }; let response2 = await billLadingdetailList(data); const { code: code2, data: { list } } = response2; - formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:377", "response :>> ", response2); + formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:378", "response :>> ", response2); if (code2 !== 200 || !list) return; const _arr = []; const scanArr = []; for (let i2 = 0; i2 < list.length; i2++) { - const item = list[i2]; - if (item.scanStatus === 1) - _arr.push(item); - else if (item.orderPackageCode === details.scanOrderPackageCode) - _arr.unshift(item); + const item2 = list[i2]; + if (item2.scanStatus === 1) + _arr.push(item2); + else if (item2.orderPackageCode === details.scanOrderPackageCode) + _arr.unshift(item2); else - scanArr.push(item); + scanArr.push(item2); } details.scanOrderPackageCode = ""; details.orderList = [..._arr, ...scanArr]; @@ -29666,7 +29672,7 @@ This will fail in production if not fixed.`); billLadingId: details.billLadingId }; const response2 = await billLadingzeroBillData(data); - formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:421", "response :>> ", response2); + formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:422", "response :>> ", response2); if (response2.code !== 200) return; details.stockList = response2.data || []; @@ -29689,11 +29695,11 @@ This will fail in production if not fixed.`); if (e2 == "") { details.schanvalue = ""; } - details.typearr.map((item) => { - if (item.value == e2) { - details.schanvalue = item.label; - details.orderStatus = item.value; - formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:453", details.schanvalue); + details.typearr.map((item2) => { + if (item2.value == e2) { + details.schanvalue = item2.label; + details.orderStatus = item2.value; + formatAppLog("log", "at pagesHome/pages/SelfPickupDetails/SelfPickupDetails.vue:454", details.schanvalue); } }); } @@ -29771,7 +29777,7 @@ This will fail in production if not fixed.`); (vue.openBlock(), vue.createElementBlock( vue.Fragment, null, - vue.renderList([1, 2], (item) => { + vue.renderList([1, 2], (item2) => { return vue.createVNode( _component_uni_tr, null, @@ -29786,7 +29792,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? "计划" : "完成"), + vue.toDisplayString(item2 == 1 ? "计划" : "完成"), 1 /* TEXT */ ) @@ -29803,7 +29809,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? vue.unref(details).orderNum : vue.unref(details).completeNum), + vue.toDisplayString(item2 == 1 ? vue.unref(details).orderNum : vue.unref(details).completeNum), 1 /* TEXT */ ) @@ -29820,7 +29826,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? vue.unref(details).planNum : vue.unref(details).signedNum), + vue.toDisplayString(item2 == 1 ? vue.unref(details).planNum : vue.unref(details).signedNum), 1 /* TEXT */ ) @@ -29924,10 +29930,10 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(dataList), (item) => { + vue.renderList(vue.unref(dataList), (item2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, - { key: item }, + { key: item2 }, [ vue.createCommentVNode(" 定制品 "), vue.unref(orderType) == 1 ? (vue.openBlock(), vue.createElementBlock("view", { @@ -29938,24 +29944,25 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("view", { - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) - }, "订单号:" + vue.toDisplayString(item.orderCode), 9, ["onClick"]), + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) + }, "订单号:" + vue.toDisplayString(item2.orderCode), 9, ["onClick"]), vue.createElementVNode( "view", { class: "mt10" }, - "包条码:" + vue.toDisplayString(item.orderPackageCode), + "包条码:" + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ - ) + ), + vue.createCommentVNode(' 品类:{{item.pinming}} ') ]) ]), vue.createCommentVNode(" 扫描状态角标 "), vue.createElementVNode( "view", { - class: vue.normalizeClass({ scanTip: true, isScan: Number(item.scanStatus) !== 1 }) + class: vue.normalizeClass({ scanTip: true, isScan: Number(item2.scanStatus) !== 1 }) }, - vue.toDisplayString(item.scanStatusStr), + vue.toDisplayString(item2.scanStatusStr), 3 /* TEXT, CLASS */ ), @@ -29971,14 +29978,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "SKU:" + vue.toDisplayString(item.sku), + "SKU:" + vue.toDisplayString(item2.sku), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "包件号:" + vue.toDisplayString(item.coding), + "包件号:" + vue.toDisplayString(item2.coding), 1 /* TEXT */ ) @@ -29987,14 +29994,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物品:" + vue.toDisplayString(item.descriptionGoods), + "物品:" + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "规格:" + vue.toDisplayString(item.specification), + "规格:" + vue.toDisplayString(item2.specification), 1 /* TEXT */ ) @@ -30003,14 +30010,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "单位:" + vue.toDisplayString(item.cargoUnit), + "单位:" + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "扫描:" + vue.toDisplayString(item.scanStatus == 1 ? "未扫描" : item.scanStatus == "" ? "未扫描" : "扫描"), + "扫描:" + vue.toDisplayString(item2.scanStatus == 1 ? "未扫描" : item2.scanStatus == "" ? "未扫描" : "扫描"), 1 /* TEXT */ ), @@ -30021,13 +30028,13 @@ This will fail in production if not fixed.`); vue.unref(orderType) == 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "ite", - onClick: ($event) => showsTipsZero(item) + onClick: ($event) => showsTipsZero(item2) }, [ vue.createElementVNode("view", null, [ vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -30036,7 +30043,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "运单号:" + vue.toDisplayString(item.waybillNumber), + "运单号:" + vue.toDisplayString(item2.waybillNumber), 1 /* TEXT */ ) @@ -30045,7 +30052,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "产品名称:" + vue.toDisplayString(item.firsts), + "产品名称:" + vue.toDisplayString(item2.firsts), 1 /* TEXT */ ) @@ -30054,14 +30061,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "预计签收件数:" + vue.toDisplayString(item.reservationQuantity), + "预计签收件数:" + vue.toDisplayString(item2.reservationQuantity), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "实际签收件数:" + vue.toDisplayString(item.signforQuantity), + "实际签收件数:" + vue.toDisplayString(item2.signforQuantity), 1 /* TEXT */ ) @@ -30182,9 +30189,9 @@ This will fail in production if not fixed.`); return null; } } - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } function setorderStatus(state) { @@ -30196,10 +30203,10 @@ This will fail in production if not fixed.`); details.schanvalue = ""; details.scanStatus = ""; } - details.typearr.map((item) => { - if (item.value == e2) { - details.schanvalue = item.label; - details.scanStatus = item.value; + details.typearr.map((item2) => { + if (item2.value == e2) { + details.schanvalue = item2.label; + details.scanStatus = item2.value; formatAppLog("log", "at pagesHome/pages/LoadingDetails/LoadingDetails.vue:209", details.schanvalue); } }); @@ -30308,7 +30315,7 @@ This will fail in production if not fixed.`); (vue.openBlock(), vue.createElementBlock( vue.Fragment, null, - vue.renderList([1, 2], (item) => { + vue.renderList([1, 2], (item2) => { return vue.createVNode( _component_uni_tr, null, @@ -30323,7 +30330,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? "计划" : "完成"), + vue.toDisplayString(item2 == 1 ? "计划" : "完成"), 1 /* TEXT */ ) @@ -30342,7 +30349,7 @@ This will fail in production if not fixed.`); var _a2, _b2; return [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? (_a2 = vue.unref(items)) == null ? void 0 : _a2.customersNumber : (_b2 = vue.unref(items)) == null ? void 0 : _b2.loadCusNub), + vue.toDisplayString(item2 == 1 ? (_a2 = vue.unref(items)) == null ? void 0 : _a2.customersNumber : (_b2 = vue.unref(items)) == null ? void 0 : _b2.loadCusNub), 1 /* TEXT */ ) @@ -30362,7 +30369,7 @@ This will fail in production if not fixed.`); var _a2, _b2; return [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? (_a2 = vue.unref(items)) == null ? void 0 : _a2.orderNumber : (_b2 = vue.unref(items)) == null ? void 0 : _b2.loadOrdNub), + vue.toDisplayString(item2 == 1 ? (_a2 = vue.unref(items)) == null ? void 0 : _a2.orderNumber : (_b2 = vue.unref(items)) == null ? void 0 : _b2.loadOrdNub), 1 /* TEXT */ ) @@ -30382,7 +30389,7 @@ This will fail in production if not fixed.`); var _a2, _b2; return [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? (_a2 = vue.unref(items)) == null ? void 0 : _a2.deliveryNumber : (_b2 = vue.unref(items)) == null ? void 0 : _b2.scannedNumber), + vue.toDisplayString(item2 == 1 ? (_a2 = vue.unref(items)) == null ? void 0 : _a2.deliveryNumber : (_b2 = vue.unref(items)) == null ? void 0 : _b2.scannedNumber), 1 /* TEXT */ ) @@ -30482,16 +30489,16 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) == 1 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(dataList), (item) => { + vue.renderList(vue.unref(dataList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "ite" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("view", { - onClick: ($event) => goorderdetail(item) - }, "订单号:" + vue.toDisplayString(item.orderCode), 9, ["onClick"]), + onClick: ($event) => goorderdetail(item2) + }, "订单号:" + vue.toDisplayString(item2.orderCode), 9, ["onClick"]), vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.orderPackageCode), + "包条码:" + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -30500,7 +30507,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - " 是否扫描:" + vue.toDisplayString(item.scanStatus == 1 ? "未扫描" : item.scanStatus == "" ? "未扫描" : item.scanStatus == 4 ? "未扫描" : !item.scanStatus ? "未扫描" : "扫描"), + " 是否扫描:" + vue.toDisplayString(item2.scanStatus == 1 ? "未扫描" : item2.scanStatus == "" ? "未扫描" : item2.scanStatus == 4 ? "未扫描" : !item2.scanStatus ? "未扫描" : "扫描"), 1 /* TEXT */ ), @@ -30514,20 +30521,20 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) == 2 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(vue.unref(dataList), (item) => { + vue.renderList(vue.unref(dataList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "ite" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode( "view", null, - "SKU:" + vue.toDisplayString(item.sku), + "SKU:" + vue.toDisplayString(item2.sku), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "包件号:" + vue.toDisplayString(item.coding), + "包件号:" + vue.toDisplayString(item2.coding), 1 /* TEXT */ ) @@ -30536,14 +30543,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物品:" + vue.toDisplayString(item.descriptionGoods), + "物品:" + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "规格:" + vue.toDisplayString(item.specification), + "规格:" + vue.toDisplayString(item2.specification), 1 /* TEXT */ ) @@ -30552,14 +30559,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "单位:" + vue.toDisplayString(item.logpmUnit), + "单位:" + vue.toDisplayString(item2.logpmUnit), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - " 扫描:" + vue.toDisplayString(item.scanStatus == 1 ? "未扫描" : item.scanStatus == "" ? "未扫描" : item.scanStatus == 4 ? "未扫描" : !item.scanStatus ? "未扫描" : "扫描"), + " 扫描:" + vue.toDisplayString(item2.scanStatus == 1 ? "未扫描" : item2.scanStatus == "" ? "未扫描" : item2.scanStatus == 4 ? "未扫描" : !item2.scanStatus ? "未扫描" : "扫描"), 1 /* TEXT */ ), @@ -30678,9 +30685,9 @@ This will fail in production if not fixed.`); details.id = op.id; details.loadingId = op.loadingId; }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } onShow(async () => { @@ -30715,13 +30722,13 @@ This will fail in production if not fixed.`); const loadingNub = vue.computed(() => { let num = 0; if (details.order.data) - num += details.order.data.reduce((curr, item) => curr + item.loadingNub, 0); + num += details.order.data.reduce((curr, item2) => curr + item2.loadingNub, 0); if (details.zero.data) - num += details.zero.data.reduce((curr, item) => curr + item.loadingNub, 0); + num += details.zero.data.reduce((curr, item2) => curr + item2.loadingNub, 0); formatAppLog("log", "at pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue:373", "details.stock.data :>> ", details.stock.data); if (details.stock.data) - num += details.stock.data.reduce((curr, item) => { - if (item.loadingStatusName !== "未装车") + num += details.stock.data.reduce((curr, item2) => { + if (item2.loadingStatusName !== "未装车") return curr += 1; return curr; }, 0); @@ -30823,10 +30830,10 @@ This will fail in production if not fixed.`); details.schanvalue = ""; details.orderType = 0; } - details.typearr.map((item) => { - if (item.value == e2) { - details.schanvalue = item.label; - details.orderType = item.value; + details.typearr.map((item2) => { + if (item2.value == e2) { + details.schanvalue = item2.label; + details.orderType = item2.value; } }); } @@ -30895,10 +30902,10 @@ This will fail in production if not fixed.`); return; const _driverId = uni.getStorageSync("checkvehicle").driverId; let _flag = false; - for (let item of data) { - if (item.driverId === _driverId) { + for (let item2 of data) { + if (item2.driverId === _driverId) { _flag = true; - uni.setStorageSync("checkvehicle", item); + uni.setStorageSync("checkvehicle", item2); break; } } @@ -30988,9 +30995,9 @@ This will fail in production if not fixed.`); basicContainer.value.startPullDownRefresh(); } } - function checkphon(item, index2) { - if (item.isZero === "1") { - const inpList = item.distributionAppParcelListVOS.map((val) => { + function checkphon(item2, index2) { + if (item2.isZero === "1") { + const inpList = item2.distributionAppParcelListVOS.map((val) => { return { id: val.id, title: val.firsts, @@ -31020,7 +31027,7 @@ This will fail in production if not fixed.`); mask: true, title: "提交中" }); - if (deta.inpList.length === 0 || item.completeStact) + if (deta.inpList.length === 0 || item2.completeStact) return tiplists.value.setdetails({ isshow: false }); let data = { reservationId: details.items.id, @@ -31252,25 +31259,25 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item, index2) => { + vue.renderList(vue.unref(datalist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, - { key: item }, + { key: item2 }, [ vue.createCommentVNode(" 定制品 "), vue.unref(orderStatus) == 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "itec", - onClick: ($event) => checkphon(item, index2) + onClick: ($event) => checkphon(item2, index2) }, [ vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" }, - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, "订单编号:", 8, ["onClick"]), vue.createTextVNode( - vue.toDisplayString(item.orderCode || "暂无数据"), + vue.toDisplayString(item2.orderCode || "暂无数据"), 1 /* TEXT */ ) @@ -31280,10 +31287,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" }, - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, "运单号:", 8, ["onClick"]), vue.createTextVNode( - vue.toDisplayString(item.waybillNumber || "暂无数据"), + vue.toDisplayString(item2.waybillNumber || "暂无数据"), 1 /* TEXT */ ) @@ -31293,7 +31300,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "配送数:"), vue.createTextVNode( - vue.toDisplayString(item.reservationNum), + vue.toDisplayString(item2.reservationNum), 1 /* TEXT */ ) @@ -31301,7 +31308,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "已扫码数:"), vue.createTextVNode( - vue.toDisplayString(item.loadingNub), + vue.toDisplayString(item2.loadingNub), 1 /* TEXT */ ) @@ -31361,7 +31368,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.distributionAppParcelListVOS, (ite) => { + vue.renderList(item2.distributionAppParcelListVOS, (ite) => { return vue.openBlock(), vue.createBlock(_component_uni_tr, { class: vue.normalizeClass({ "active": Number(ite.isAbnormalLoading) === 1 || Number(ite.isAbnnormalSigning) === 1 }) }, { @@ -31451,25 +31458,25 @@ This will fail in production if not fixed.`); 扫描状态:{{ite.isScan?ite.isScan:'未扫'}}\r `) ])) : vue.createCommentVNode("v-if", true), - item.complete ? (vue.openBlock(), vue.createElementBlock( + item2.complete ? (vue.openBlock(), vue.createElementBlock( "view", { key: 1, - class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3") + class: vue.normalizeClass(item2.completecode == 3 ? "tip tp1" : item2.completecode == 1 ? "tip tp2" : "tip tp3") }, - vue.toDisplayString(item.complete), + vue.toDisplayString(item2.complete), 3 /* TEXT, CLASS */ )) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 当有异常状态时, 显示异常状态 "), - item.isHaveAbnormalPackageName ? (vue.openBlock(), vue.createElementBlock("view", { + item2.isHaveAbnormalPackageName ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "abnormalStyleContainer" }, [ vue.createElementVNode( "view", { class: "abnormalStyle" }, - vue.toDisplayString(item.isHaveAbnormalPackageName), + vue.toDisplayString(item2.isHaveAbnormalPackageName), 1 /* TEXT */ ) @@ -31481,16 +31488,16 @@ This will fail in production if not fixed.`); vue.createCommentVNode(" 零担 "), vue.createElementVNode("view", { class: "itec", - onClick: ($event) => checkphon(item, index2) + onClick: ($event) => checkphon(item2, index2) }, [ vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" }, - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, "订单编号:", 8, ["onClick"]), vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -31500,10 +31507,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" }, - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, "产品名称:", 8, ["onClick"]), vue.createTextVNode( - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -31513,7 +31520,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划数量:"), vue.createTextVNode( - vue.toDisplayString(item.reservationNum), + vue.toDisplayString(item2.reservationNum), 1 /* TEXT */ ) @@ -31521,19 +31528,19 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "装车数量:"), vue.createTextVNode( - vue.toDisplayString(item.loadingNub), + vue.toDisplayString(item2.loadingNub), 1 /* TEXT */ ) ]) ]), - item.complete ? (vue.openBlock(), vue.createElementBlock( + item2.complete ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, - class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3") + class: vue.normalizeClass(item2.completecode == 3 ? "tip tp1" : item2.completecode == 1 ? "tip tp2" : "tip tp3") }, - vue.toDisplayString(item.complete), + vue.toDisplayString(item2.complete), 3 /* TEXT, CLASS */ )) : vue.createCommentVNode("v-if", true) @@ -31548,13 +31555,13 @@ This will fail in production if not fixed.`); vue.createCommentVNode(" 库存品 "), vue.createElementVNode("view", { class: "itec", - onClick: ($event) => checkphon(item, index2) + onClick: ($event) => checkphon(item2, index2) }, [ vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "SKU:"), vue.createTextVNode( - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -31564,7 +31571,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物品:"), vue.createTextVNode( - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -31572,7 +31579,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "规格:"), vue.createTextVNode( - vue.toDisplayString(item.cargoNorms), + vue.toDisplayString(item2.cargoNorms), 1 /* TEXT */ ) @@ -31580,17 +31587,17 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createCommentVNode(" 备货完成时, 显示二维码 "), - item.signingStatusName === "待备货" ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ + item2.signingStatusName === "待备货" ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货状态:"), vue.createTextVNode( - vue.toDisplayString(item.signingStatusName), + vue.toDisplayString(item2.signingStatusName), 1 /* TEXT */ ) ])) : (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "二维码:"), vue.createTextVNode( - vue.toDisplayString(item.stockPackageCode || "暂无数据"), + vue.toDisplayString(item2.stockPackageCode || "暂无数据"), 1 /* TEXT */ ) @@ -31598,19 +31605,19 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "单位:"), vue.createTextVNode( - vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) ]) ]), - item.loadingStatusName ? (vue.openBlock(), vue.createElementBlock( + item2.loadingStatusName ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, - class: vue.normalizeClass(item.loadingStatusName == "未装车" ? "tip tp2" : "tip tp1") + class: vue.normalizeClass(item2.loadingStatusName == "未装车" ? "tip tp2" : "tip tp1") }, - vue.toDisplayString(item.loadingStatusName), + vue.toDisplayString(item2.loadingStatusName), 3 /* TEXT, CLASS */ )) : vue.createCommentVNode("v-if", true) @@ -31700,22 +31707,22 @@ This will fail in production if not fixed.`); }); const ordernumber = vue.computed(() => { let num = 0; - details.datalist.map((item) => { - num += Number(item.ordNub); + details.datalist.map((item2) => { + num += Number(item2.ordNub); }); return num; }); const deliveryNumber = vue.computed(() => { let num = 0; - details.datalist.map((item) => { - num += Number(item.reservationNum); + details.datalist.map((item2) => { + num += Number(item2.reservationNum); }); return num; }); vue.computed(() => { let num = 0; - details.datalist.forEach((item) => { - num += Number(item.loadingNub); + details.datalist.forEach((item2) => { + num += Number(item2.loadingNub); }); return num; }); @@ -31729,10 +31736,10 @@ This will fail in production if not fixed.`); return; const _driverId = uni.getStorageSync("checkvehicle").driverId; let _flag = false; - for (let item of data) { - if (item.driverId === _driverId) { + for (let item2 of data) { + if (item2.driverId === _driverId) { _flag = true; - uni.setStorageSync("checkvehicle", item); + uni.setStorageSync("checkvehicle", item2); break; } } @@ -31745,7 +31752,7 @@ This will fail in production if not fixed.`); } utils.handleToast(content); }; - async function ckoneloading(item) { + async function ckoneloading(item2) { tip.value.setdetails({ title: "提示", content: "确认一键装车?", @@ -31755,7 +31762,7 @@ This will fail in production if not fixed.`); success: async () => { let loadingId = uni.getStorageSync("checkvehicle").id; let data = { - reservationId: item.id, + reservationId: item2.id, loadingId, deliveryId: details.id }; @@ -31809,43 +31816,43 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/DeliveryCustomerScan/DeliveryCustomerScan.vue:342", "response", response2); details.datalist = response2.data || []; details.scannedNumber = 0; - details.datalist.forEach((item) => { - details.scannedNumber += Number(item.loadingNub); + details.datalist.forEach((item2) => { + details.scannedNumber += Number(item2.loadingNub); }); } catch (e2) { } finally { return null; } } - function goCustomerOrdersDetails(item) { + function goCustomerOrdersDetails(item2) { const data = { - isstock: item.isstock, - consignee: item.consignee, - isload: item.isload, - ordNub: item.ordNub, - reservationNum: item.reservationNum, - signNub: item.signNub, - id: item.id + isstock: item2.isstock, + consignee: item2.consignee, + isload: item2.isload, + ordNub: item2.ordNub, + reservationNum: item2.reservationNum, + signNub: item2.signNub, + id: item2.id }; uni.navigateTo({ url: "/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails?item=" + JSON.stringify(data) + "&id=" + details.id + "&loadingId=" + details.loadingId }); } - function goCustomerTrayDetails(item) { + function goCustomerTrayDetails(item2) { const data = { - type_name: item.type_name, - deliStatus_name: item.deliStatus_name, - vehicleName: item.vehicleName, - driverName: item.driverName, - loadingTeamName: item.loadingTeamName, - isstock: item.isstock, - customersNumber: item.customersNumber, - orderNumber: item.orderNumber, - loadCusNub: item.loadCusNub, - loadOrdNub: item.loadOrdNub, - signNub: item.signNub, - signNubSr: item.signNubSr, - id: item.id + type_name: item2.type_name, + deliStatus_name: item2.deliStatus_name, + vehicleName: item2.vehicleName, + driverName: item2.driverName, + loadingTeamName: item2.loadingTeamName, + isstock: item2.isstock, + customersNumber: item2.customersNumber, + orderNumber: item2.orderNumber, + loadCusNub: item2.loadCusNub, + loadOrdNub: item2.loadOrdNub, + signNub: item2.signNub, + signNubSr: item2.signNubSr, + id: item2.id }; uni.navigateTo({ url: "/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails?item=" + JSON.stringify(data) + "&id=" + details.id + "&loadingId=" + details.loadingId @@ -31971,12 +31978,12 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "its" }, [ vue.createElementVNode( "view", { class: "titl" }, - " 客户:" + vue.toDisplayString(item.consignee), + " 客户:" + vue.toDisplayString(item2.consignee), 1 /* TEXT */ ), @@ -31985,7 +31992,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货是否完成:"), vue.createTextVNode( - vue.toDisplayString(item.isstock), + vue.toDisplayString(item2.isstock), 1 /* TEXT */ ) @@ -31993,7 +32000,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "装车是否完成:"), vue.createTextVNode( - vue.toDisplayString(item.isload), + vue.toDisplayString(item2.isload), 1 /* TEXT */ ) @@ -32003,7 +32010,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货区:"), vue.createTextVNode( - vue.toDisplayString(item.stockupArea || "无备货区"), + vue.toDisplayString(item2.stockupArea || "无备货区"), 1 /* TEXT */ ) @@ -32011,13 +32018,13 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "numbx" }, [ vue.createElementVNode("view", { - onClick: ($event) => goCustomerOrdersDetails(item) + onClick: ($event) => goCustomerOrdersDetails(item2) }, [ vue.createElementVNode("view", null, "订单总数"), vue.createElementVNode( "view", { class: "golink" }, - vue.toDisplayString(item.ordNub), + vue.toDisplayString(item2.ordNub), 1 /* TEXT */ ) @@ -32027,7 +32034,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.reservationNum), + vue.toDisplayString(item2.reservationNum), 1 /* TEXT */ ) @@ -32037,31 +32044,31 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.loadingNub), + vue.toDisplayString(item2.loadingNub), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { - onClick: ($event) => goCustomerTrayDetails(item) + onClick: ($event) => goCustomerTrayDetails(item2) }, [ vue.createElementVNode("view", null, "托盘个数"), vue.createElementVNode( "view", { class: "golink" }, - vue.toDisplayString(item.trayNum), + vue.toDisplayString(item2.trayNum), 1 /* TEXT */ ) ], 8, ["onClick"]) ]) ]), - vue.unref(authbuts).indexOf("一键装车") != -1 && item.isload != "是" ? (vue.openBlock(), vue.createElementBlock("view", { + vue.unref(authbuts).indexOf("一键装车") != -1 && item2.isload != "是" ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "bts" }, [ vue.createElementVNode("view", { - onClick: ($event) => ckoneloading(item) + onClick: ($event) => ckoneloading(item2) }, "一键装车", 8, ["onClick"]) ])) : vue.createCommentVNode("v-if", true) ]); @@ -32181,31 +32188,31 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:203", "details.imgList :>> ", details.imgList); } } - function gosetorice(item) { + function gosetorice(item2) { uni.navigateTo({ - url: "/pagesHome/pages/SetPrice/SetPrice?reservationId=" + details.id + "&item=" + JSON.stringify(item) + url: "/pagesHome/pages/SetPrice/SetPrice?reservationId=" + details.id + "&item=" + JSON.stringify(item2) }); } const signNub = vue.computed(() => { let num = 0; - details.datalist.map((item) => { - if (item.signNub) { - num += item.signNub; + details.datalist.map((item2) => { + if (item2.signNub) { + num += item2.signNub; } }); return num; }); const deliveryNumber = vue.computed(() => { - return details.datalist.reduce((curr, item) => { - if (item.reservationNum) - return curr + item.reservationNum; + return details.datalist.reduce((curr, item2) => { + if (item2.reservationNum) + return curr + item2.reservationNum; return curr; }, 0); }); const truckLoadingNum = vue.computed(() => { - return details.datalist.reduce((curr, item) => { - if (item.loadedNumber) - return curr + item.loadedNumber; + return details.datalist.reduce((curr, item2) => { + if (item2.loadedNumber) + return curr + item2.loadedNumber; return curr; }, 0); }); @@ -32230,13 +32237,13 @@ This will fail in production if not fixed.`); return null; } const clearImg = () => { - for (let item of details.imgList) { - item.imgList = []; + for (let item2 of details.imgList) { + item2.imgList = []; } }; - async function uplodimg(item) { + async function uplodimg(item2) { let data = { - reservationId: item.id + reservationId: item2.id }; let res = await signforprices(data); formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:274", "res>>>>>", res); @@ -32245,11 +32252,11 @@ This will fail in production if not fixed.`); if (Object.keys(res.data.deliverySignPictures).length !== 0) { details.isChange = true; imglis = res.data.deliverySignPictures; - details.imgList.forEach((item2, index2) => { - item2.imgList = []; - if (!imglis[item2.dictKey]) + details.imgList.forEach((item22, index2) => { + item22.imgList = []; + if (!imglis[item22.dictKey]) return; - details.imgList[index2].imgList = imglis[item2.dictKey]; + details.imgList[index2].imgList = imglis[item22.dictKey]; }); formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:287", "details.imgList :>> ", details.imgList); } else { @@ -32280,7 +32287,7 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:317", "detail :>> ", detail); let data2 = { deliveryId: details.id, - reservationId: item.id, + reservationId: item2.id, map: {}, driverRemarks: detail.inputtext }; @@ -32288,10 +32295,10 @@ This will fail in production if not fixed.`); let isSubmit = true; formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:328", "details.ImagesRequiredFields :>> ", details.ImagesRequiredFields); if (details.isChange) { - const filterMap = detail.imglist.filter((item2) => details.changeImageList.includes(item2.dictKey)); - isSubmit = filterMap.every((item2) => { - data2.map[item2.dictKey] = item2.imgList; - if (details.ImagesRequiredFields.find((val) => val.key === item2.dictKey) && item2.imgList.length < 1) + const filterMap = detail.imglist.filter((item22) => details.changeImageList.includes(item22.dictKey)); + isSubmit = filterMap.every((item22) => { + data2.map[item22.dictKey] = item22.imgList; + if (details.ImagesRequiredFields.find((val) => val.key === item22.dictKey) && item22.imgList.length < 1) return false; return true; }); @@ -32306,11 +32313,11 @@ This will fail in production if not fixed.`); res2 = await signforUpdatePicture(data2); } else { formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:347", "details.imgList :>> ", details.imgList); - detail.imglist.forEach((item2) => { - data2.map[item2.dictKey] = item2.imgList; + detail.imglist.forEach((item22) => { + data2.map[item22.dictKey] = item22.imgList; formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:350", 2); - formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:351", "item.imgList :>> ", item2.imgList); - if (details.ImagesRequiredFields.find((val) => val.key === item2.dictKey) && item2.imgList.length < 1) + formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:351", "item.imgList :>> ", item22.imgList); + if (details.ImagesRequiredFields.find((val) => val.key === item22.dictKey) && item22.imgList.length < 1) isSubmit = false; else isSubmit = true; @@ -32345,7 +32352,7 @@ This will fail in production if not fixed.`); } }); } - async function allclick(item) { + async function allclick(item2) { tiplists.value.setdetails({ isshow: true, tipstate: 3, @@ -32362,7 +32369,7 @@ This will fail in production if not fixed.`); }); let data = { deliveryId: details.id, - reservationId: item.id, + reservationId: item2.id, deliverySignPictures: detail.imglist.join(","), driverRemarks: detail.inputtext }; @@ -32372,7 +32379,7 @@ This will fail in production if not fixed.`); title: "签收成功", icon: "none" }); - utils.ttsspke(item.reservationNum + "件"); + utils.ttsspke(item2.reservationNum + "件"); initpage(); } } catch (e2) { @@ -32389,7 +32396,7 @@ This will fail in production if not fixed.`); } }); } - function getLocation(item) { + function getLocation(item2) { formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:452", "getLocation-------"); uni.getLocation({ type: "wgs84", @@ -32406,7 +32413,7 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/CustomerSign/CustomerSign.vue:467", "当前位置的纬度:" + res.latitude); let data = { deliveryId: details.id, - reservationId: item.id, + reservationId: item2.id, positioning: res.longitude + "," + res.latitude, positioningAdr: "" }; @@ -32431,9 +32438,9 @@ This will fail in production if not fixed.`); } }); } - function gosinorderscan(item) { + function gosinorderscan(item2) { uni.navigateTo({ - url: "/pagesHome/pages/signOrderScan/signOrderScan?item=" + JSON.stringify(item) + "&deliveryId=" + details.id + url: "/pagesHome/pages/signOrderScan/signOrderScan?item=" + JSON.stringify(item2) + "&deliveryId=" + details.id }); } const { authbuts, items, datalist } = vue.toRefs(details); @@ -32564,22 +32571,22 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "its" }, [ vue.createElementVNode("view", { class: "title" }, [ vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isUrgent == "2" ? "color: red;" : "") + style: vue.normalizeStyle(item2.isUrgent == "2" ? "color: red;" : "") }, - "客户:" + vue.toDisplayString(item.consignee) + " " + vue.toDisplayString(item.isUrgent == "2" ? "(加急)" : ""), + "客户:" + vue.toDisplayString(item2.consignee) + " " + vue.toDisplayString(item2.isUrgent == "2" ? "(加急)" : ""), 5 /* TEXT, STYLE */ ), vue.createElementVNode( "view", { class: "statetype" }, - vue.toDisplayString(item.deliveryStatus), + vue.toDisplayString(item2.deliveryStatus), 1 /* TEXT */ ) @@ -32590,7 +32597,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.ordNub), + vue.toDisplayString(item2.ordNub), 1 /* TEXT */ ) @@ -32600,7 +32607,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.reservationNum), + vue.toDisplayString(item2.reservationNum), 1 /* TEXT */ ) @@ -32610,7 +32617,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.signNub), + vue.toDisplayString(item2.signNub), 1 /* TEXT */ ) @@ -32620,14 +32627,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "" }, - " 客户电话: " + vue.toDisplayString(item.deliveryPhone || ""), + " 客户电话: " + vue.toDisplayString(item2.deliveryPhone || ""), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - " 客户地址: " + vue.toDisplayString(item.deliveryAddress || ""), + " 客户地址: " + vue.toDisplayString(item2.deliveryAddress || ""), 1 /* TEXT */ ) @@ -32635,33 +32642,33 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "remarks" }, - " 备注:" + vue.toDisplayString(item.remarks), + " 备注:" + vue.toDisplayString(item2.remarks), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "tbck" }, [ vue.createElementVNode("view", { class: "buts" }, [ vue.createElementVNode("view", { - class: vue.normalizeClass(item.positioning == 1 ? "ydk" : ""), - onClick: ($event) => getLocation(item) - }, vue.toDisplayString(item.positioning == 1 ? "已打卡" : "定位打卡"), 11, ["onClick"]), + class: vue.normalizeClass(item2.positioning == 1 ? "ydk" : ""), + onClick: ($event) => getLocation(item2) + }, vue.toDisplayString(item2.positioning == 1 ? "已打卡" : "定位打卡"), 11, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => gosinorderscan(item) + onClick: ($event) => gosinorderscan(item2) }, "签收扫描", 8, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => uplodimg(item) + onClick: ($event) => uplodimg(item2) }, "上传签收图片", 8, ["onClick"]) ]), vue.createElementVNode("view", { class: "buts" }, [ vue.createCommentVNode(' 确认签收 '), vue.createElementVNode("view", { - onClick: ($event) => gosetorice(item), + onClick: ($event) => gosetorice(item2), class: "mabut" }, " 设置增值服务 ", 8, ["onClick"]), vue.unref(authbuts).findIndex((val) => val.code === "127") != -1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "mabut", - onClick: ($event) => allclick(item) + onClick: ($event) => allclick(item2) }, " 批量签收 ", 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ]), vue.createCommentVNode(' \r\n \r\n 设置增值服务\r\n ') @@ -32808,9 +32815,9 @@ This will fail in production if not fixed.`); details.scrollHeight = res; }); }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } const handlePackageScan = () => { @@ -32822,9 +32829,9 @@ This will fail in production if not fixed.`); const _arr = [...details.orderArr, ...details.zeroArr, ...details.stockArr]; details.Plannednub = 0; details.signNub = 0; - for (let item of _arr) { - details.Plannednub += item.reservationNum; - details.signNub += item.signforNub; + for (let item2 of _arr) { + details.Plannednub += item2.reservationNum; + details.signNub += item2.signforNub; } } onPullDownRefresh(async () => { @@ -33018,17 +33025,17 @@ This will fail in production if not fixed.`); details.orderType = ""; return; } - details.typearr.map((item) => { - if (item.value == e2) { - details.schanvalue = item.label; - details.orderType = item.value; + details.typearr.map((item2) => { + if (item2.value == e2) { + details.schanvalue = item2.label; + details.orderType = item2.value; } }); } - function checkphon(item, index2) { - formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:598", "item :>> ", item); - if (item.isZero === "1") { - const inpList = item.distributionParcelNumberVOS.map((val) => { + function checkphon(item2, index2) { + formatAppLog("log", "at pagesHome/pages/signOrderScan/signOrderScan.vue:598", "item :>> ", item2); + if (item2.isZero === "1") { + const inpList = item2.distributionParcelNumberVOS.map((val) => { return { id: val.parcelListId, title: val.firsts, @@ -33054,7 +33061,7 @@ This will fail in production if not fixed.`); try { if (deta.inpList.every((val) => val.disabled)) return tiplists.value.setdetails({ isshow: false }); - if (deta.inpList.length === 0 || item.completeStact) + if (deta.inpList.length === 0 || item2.completeStact) return tiplists.value.setdetails({ isshow: false }); uni.showLoading({ mask: true, @@ -33286,7 +33293,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item, index2) => { + vue.renderList(vue.unref(datalist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, @@ -33301,10 +33308,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" }, - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, "订单编号:", 8, ["onClick"]), vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -33314,10 +33321,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" }, - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, "运单号:", 8, ["onClick"]), vue.createTextVNode( - vue.toDisplayString(item.waybillNumber), + vue.toDisplayString(item2.waybillNumber), 1 /* TEXT */ ) @@ -33327,7 +33334,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划:"), vue.createTextVNode( - vue.toDisplayString(item.reservationNum), + vue.toDisplayString(item2.reservationNum), 1 /* TEXT */ ) @@ -33335,7 +33342,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "装车:"), vue.createTextVNode( - vue.toDisplayString(item.loadingNub), + vue.toDisplayString(item2.loadingNub), 1 /* TEXT */ ) @@ -33343,7 +33350,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "签收:"), vue.createTextVNode( - vue.toDisplayString(item.signforNub), + vue.toDisplayString(item2.signforNub), 1 /* TEXT */ ) @@ -33353,7 +33360,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "异常装车:"), vue.createTextVNode( - vue.toDisplayString(item.abnormalLoading), + vue.toDisplayString(item2.abnormalLoading), 1 /* TEXT */ ) @@ -33361,7 +33368,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "异常签收:"), vue.createTextVNode( - vue.toDisplayString(item.abnormalSignature), + vue.toDisplayString(item2.abnormalSignature), 1 /* TEXT */ ) @@ -33421,7 +33428,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.distributionAppParcelListVOS, (ite) => { + vue.renderList(item2.distributionAppParcelListVOS, (ite) => { return vue.openBlock(), vue.createBlock(_component_uni_tr, { class: vue.normalizeClass({ "active": Number(ite.isAbnormalLoading) === 1 || Number(ite.isAbnnormalSigning) === 1 }) }, { @@ -33509,9 +33516,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - class: vue.normalizeClass(item.signforNub == 0 ? "tip tp2" : item.signforNub == item.reservationNum ? "tip tp1" : "tip tp3") + class: vue.normalizeClass(item2.signforNub == 0 ? "tip tp2" : item2.signforNub == item2.reservationNum ? "tip tp1" : "tip tp3") }, - vue.toDisplayString(item.signforNub == 0 ? "未扫" : item.signforNub == item.reservationNum ? "齐套" : "部分扫"), + vue.toDisplayString(item2.signforNub == 0 ? "未扫" : item2.signforNub == item2.reservationNum ? "齐套" : "部分扫"), 3 /* TEXT, CLASS */ ) @@ -33520,16 +33527,16 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "itec", - onClick: ($event) => checkphon(item, index2) + onClick: ($event) => checkphon(item2, index2) }, [ vue.createElementVNode("view", { class: "contenbx1" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" }, - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, "订单编号:", 8, ["onClick"]), vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -33539,10 +33546,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" }, - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, "产品名称:", 8, ["onClick"]), vue.createTextVNode( - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -33552,7 +33559,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "计划签收:"), vue.createTextVNode( - vue.toDisplayString(item.reservationNum), + vue.toDisplayString(item2.reservationNum), 1 /* TEXT */ ) @@ -33560,19 +33567,19 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "实际签收:"), vue.createTextVNode( - vue.toDisplayString(item.distributionParcelNumberVOS.reduce((cur, item2) => cur += item2.signingNum || 0, 0)), + vue.toDisplayString(item2.distributionParcelNumberVOS.reduce((cur, item22) => cur += item22.signingNum || 0, 0)), 1 /* TEXT */ ) ]) ]), - item.complete ? (vue.openBlock(), vue.createElementBlock( + item2.complete ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, - class: vue.normalizeClass(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3") + class: vue.normalizeClass(item2.completecode == 3 ? "tip tp1" : item2.completecode == 1 ? "tip tp2" : "tip tp3") }, - vue.toDisplayString(item.complete), + vue.toDisplayString(item2.complete), 3 /* TEXT, CLASS */ )) : vue.createCommentVNode("v-if", true) @@ -33587,7 +33594,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "SKU:"), vue.createTextVNode( - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -33597,7 +33604,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "包条码:"), vue.createTextVNode( - vue.toDisplayString(item.orderPackageCode), + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -33607,7 +33614,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物品:"), vue.createTextVNode( - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -33615,7 +33622,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "规格:"), vue.createTextVNode( - vue.toDisplayString(item.specification), + vue.toDisplayString(item2.specification), 1 /* TEXT */ ) @@ -33625,7 +33632,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "单位:"), vue.createTextVNode( - vue.toDisplayString(item.logpmUnit), + vue.toDisplayString(item2.logpmUnit), 1 /* TEXT */ ) @@ -33638,9 +33645,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - class: vue.normalizeClass(item.signforNub == 0 ? "tip tp2" : "tip tp1") + class: vue.normalizeClass(item2.signforNub == 0 ? "tip tp2" : "tip tp1") }, - vue.toDisplayString(item.signforNub == 0 ? "未扫" : "已扫"), + vue.toDisplayString(item2.signforNub == 0 ? "未扫" : "已扫"), 3 /* TEXT, CLASS */ ) @@ -33784,17 +33791,17 @@ This will fail in production if not fixed.`); const _signArr = []; const _noSignArr = []; let _value; - for (let item of _arr) { - if (!_value && item.orderPackageCode === orderPackageCode) - _value = item; - if (item.isSignfor === 1) { + for (let item2 of _arr) { + if (!_value && item2.orderPackageCode === orderPackageCode) + _value = item2; + if (item2.isSignfor === 1) { details.signNub++; - if (item !== _value) - _signArr.push(item); + if (item2 !== _value) + _signArr.push(item2); } else { details.noSingnNum++; - if (item !== _value) - _noSignArr.push(item); + if (item2 !== _value) + _noSignArr.push(item2); } } formatAppLog("log", "at pagesHome/pages/signPackageScan/signPackageScan.vue:246", "_signArr :>> ", _signArr); @@ -34045,48 +34052,48 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock( "view", { - key: item.orderCode, - class: vue.normalizeClass({ "main_row": true, "red": item.isSignfor === 0, "green": item.isSignfor === 1 }) + key: item2.orderCode, + class: vue.normalizeClass({ "main_row": true, "red": item2.isSignfor === 0, "green": item2.isSignfor === 1 }) }, [ vue.createElementVNode( "view", { class: "" }, - vue.toDisplayString(item.type === 1 ? item.orderPackageCode : item.orderPackageCode || "未备货"), + vue.toDisplayString(item2.type === 1 ? item2.orderPackageCode : item2.orderPackageCode || "未备货"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - vue.toDisplayString(item.orderCode || "暂无数据"), + vue.toDisplayString(item2.orderCode || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - vue.toDisplayString(item.type === 1 ? "定制品" : "库存品"), + vue.toDisplayString(item2.type === 1 ? "定制品" : "库存品"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - vue.toDisplayString(item.isSignfor === 1 ? "已签" : "未签"), + vue.toDisplayString(item2.isSignfor === 1 ? "已签" : "未签"), 1 /* TEXT */ ), vue.createElementVNode( "view", { - class: vue.normalizeClass({ "red": item.isAbnormal === 1 }) + class: vue.normalizeClass({ "red": item2.isAbnormal === 1 }) }, - vue.toDisplayString(item.isAbnormal === 1 ? "异常" : "/"), + vue.toDisplayString(item2.isAbnormal === 1 ? "异常" : "/"), 3 /* TEXT, CLASS */ ) @@ -34192,9 +34199,9 @@ This will fail in production if not fixed.`); details.id = JSON.parse(op.item).id; initpage(); }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } function setorderStatus(state) { @@ -34228,10 +34235,10 @@ This will fail in production if not fixed.`); details.signforStatevalue = ""; details.signforState = ""; } - details.signforStatearr.map((item) => { - if (item.value == e2) { - details.signforStatevalue = item.label; - details.signforState = item.value; + details.signforStatearr.map((item2) => { + if (item2.value == e2) { + details.signforStatevalue = item2.label; + details.signforState = item2.value; formatAppLog("log", "at pagesHome/pages/SignDetailScan/SignDetailScan.vue:208", details.signforStatevalue); } }); @@ -34336,7 +34343,7 @@ This will fail in production if not fixed.`); (vue.openBlock(), vue.createElementBlock( vue.Fragment, null, - vue.renderList([1, 2], (item) => { + vue.renderList([1, 2], (item2) => { return vue.createVNode( _component_uni_tr, null, @@ -34351,7 +34358,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? "计划" : "完成"), + vue.toDisplayString(item2 == 1 ? "计划" : "完成"), 1 /* TEXT */ ) @@ -34368,7 +34375,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? vue.unref(items).customersNumber : vue.unref(items).loadCusNub), + vue.toDisplayString(item2 == 1 ? vue.unref(items).customersNumber : vue.unref(items).loadCusNub), 1 /* TEXT */ ) @@ -34385,7 +34392,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? vue.unref(items).orderNumber : vue.unref(items).loadOrdNub), + vue.toDisplayString(item2 == 1 ? vue.unref(items).orderNumber : vue.unref(items).loadOrdNub), 1 /* TEXT */ ) @@ -34402,7 +34409,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item == 1 ? vue.unref(items).signNub : vue.unref(items).signNubSr), + vue.toDisplayString(item2 == 1 ? vue.unref(items).signNub : vue.unref(items).signNubSr), 1 /* TEXT */ ) @@ -34491,13 +34498,13 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) == 1 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode("view", { class: "toptitl" }, [ vue.createElementVNode("view", { class: "toplft", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) - }, " 订单号:" + vue.toDisplayString(item.orderCode), 9, ["onClick"]), + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) + }, " 订单号:" + vue.toDisplayString(item2.orderCode), 9, ["onClick"]), vue.createCommentVNode(` \r 整托备货\r `) @@ -34507,7 +34514,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "包条码:"), vue.createTextVNode( - vue.toDisplayString(item.packetBarCode), + vue.toDisplayString(item2.packetBarCode), 1 /* TEXT */ ) @@ -34515,7 +34522,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "货物名称:"), vue.createTextVNode( - vue.toDisplayString(item.materialName), + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -34525,12 +34532,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - class: vue.normalizeClass(item.signforState == 1 ? "scanstateerr" : "scanstatesucc") + class: vue.normalizeClass(item2.signforState == 1 ? "scanstateerr" : "scanstatesucc") }, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "扫描状态:"), vue.createTextVNode( - " " + vue.toDisplayString(item.signforState == 1 ? "未扫码" : "已扫码"), + " " + vue.toDisplayString(item2.signforState == 1 ? "未扫码" : "已扫码"), 1 /* TEXT */ ) @@ -34550,13 +34557,13 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) == 2 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode("view", { class: "toptitl" }, [ vue.createElementVNode( "view", { class: "toplft" }, - " SKU:" + vue.toDisplayString(item.sku), + " SKU:" + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -34566,7 +34573,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物品:"), vue.createTextVNode( - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -34574,7 +34581,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "规格:"), vue.createTextVNode( - vue.toDisplayString(item.specification), + vue.toDisplayString(item2.specification), 1 /* TEXT */ ) @@ -34584,7 +34591,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "单位:"), vue.createTextVNode( - vue.toDisplayString(item.logpmUnit), + vue.toDisplayString(item2.logpmUnit), 1 /* TEXT */ ) @@ -34788,7 +34795,7 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:332", response2); details.printlist = response2.data; let checklist = []; - response2.data.map((item, index2) => { + response2.data.map((item2, index2) => { checklist.push(index2); }); formatAppLog("log", "at pagesHome/pages/setbarcode/setbarcode.vue:338", "tips :>> ", tips2); @@ -34812,10 +34819,10 @@ This will fail in production if not fixed.`); return bluetoothList.value.setdetails({ isshow: true }); let _isReturn = false; const printList = checklist.map((val) => deta.list[val]); - printList.map((item) => { + printList.map((item2) => { let text = "! 0 200 200 333 1\r\n"; text += "SETBOLD 2\r\n"; - text += `T 56 0 0 0 ${item}\r + text += `T 56 0 0 0 ${item2}\r `; text += "LINE 0 50 420 50 3\r\n"; text += `T 55 0 0 60 客户\r @@ -34834,7 +34841,7 @@ This will fail in production if not fixed.`); `; text += "LINE 0 140 420 140 3\r\n"; text += "B QR 150 150 M 2 U 4\r\n"; - text += `MA,${item}\r + text += `MA,${item2}\r `; text += "ENDQR\r\n"; text += "PRINT\r\n"; @@ -35043,7 +35050,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(codelist), (item, index2) => { + vue.renderList(vue.unref(codelist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "ite" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode( @@ -35056,7 +35063,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "作业时间:" + vue.toDisplayString(item.createTime), + "作业时间:" + vue.toDisplayString(item2.createTime), 1 /* TEXT */ ) @@ -35065,7 +35072,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.code), + "包条码:" + vue.toDisplayString(item2.code), 1 /* TEXT */ ), @@ -35075,7 +35082,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item.incomingBatch), + "批次号:" + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ), @@ -35267,12 +35274,12 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(taslarr), (item, index2) => { + vue.renderList(vue.unref(taslarr), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode( "view", null, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ), @@ -35454,12 +35461,12 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).scandate, (item, index2) => { + vue.renderList(vue.unref(details).scandate, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item" }, [ vue.createElementVNode( "view", null, - vue.toDisplayString(item), + vue.toDisplayString(item2), 1 /* TEXT */ ), @@ -35778,13 +35785,13 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/scansorting/scansorting.vue:280", "err :>> ", err); } } - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode=" + item.trayCode + "&trayType=" + item.trayType + url: "/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode=" + item2.trayCode + "&trayType=" + item2.trayType }); if (Number(details.pageType) == 2) { uni.navigateTo({ - url: "/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail?trayCode=" + item.trayCode + "&trayType=" + item.trayType + url: "/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail?trayCode=" + item2.trayCode + "&trayType=" + item2.trayType }); } } @@ -35894,7 +35901,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "headtopv" }, [ vue.createElementVNode("view", null, [ @@ -35902,13 +35909,13 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(`${item.trayName} ( ${item.trayCode} )`), + vue.toDisplayString(`${item2.trayName} ( ${item2.trayCode} )`), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { - onClick: ($event) => goorderdetail(item) + onClick: ($event) => goorderdetail(item2) }, "继续分拣", 8, ["onClick"]) ]), vue.createElementVNode("view", { class: "contentbx" }, [ @@ -35921,7 +35928,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.marketName) + vue.toDisplayString(item.filterValue), + vue.toDisplayString(item2.marketName) + vue.toDisplayString(item2.filterValue), 1 /* TEXT */ ) @@ -35934,7 +35941,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.trayTypeName), + vue.toDisplayString(item2.trayTypeName), 1 /* TEXT */ ) @@ -35947,7 +35954,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.remark), + vue.toDisplayString(item2.remark), 1 /* TEXT */ ) @@ -35959,7 +35966,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.totalNum), + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ) @@ -35969,7 +35976,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ) @@ -35979,7 +35986,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.stockNum), + vue.toDisplayString(item2.stockNum), 1 /* TEXT */ ) @@ -35989,7 +35996,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.stockTotalNum), + vue.toDisplayString(item2.stockTotalNum), 1 /* TEXT */ ) @@ -36425,20 +36432,20 @@ This will fail in production if not fixed.`); clearTimeout(timer); }, 500); }); - async function godetaillist(item) { + async function godetaillist(item2) { uni.navigateTo({ - url: "/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList?orderCode=" + item.dataCode + "&trayCode=" + details.trayCode + url: "/pagesHome/pages/OrderSortingDetailList/OrderSortingDetailList?orderCode=" + item2.dataCode + "&trayCode=" + details.trayCode }); } - function removeitem(item) { + function removeitem(item2) { if (details.tabBarState === 1) - removeOrder(item); + removeOrder(item2); else if (details.tabBarState === 2) - removeZero(item); + removeZero(item2); else if (details.tabBarState === 3) - removeStock(item); + removeStock(item2); } - function removeOrder(item) { + function removeOrder(item2) { tip.value.setdetails({ title: "提示", content: "确认删除该订单与托盘码的绑定?", @@ -36448,7 +36455,7 @@ This will fail in production if not fixed.`); success: async () => { let data = { trayCode: details.trayCode, - orderCode: item.dataCode + orderCode: item2.dataCode }; let res = await warehouseTrayTypedeleteOrderCode(data); if (res.code !== 200) @@ -36465,7 +36472,7 @@ This will fail in production if not fixed.`); } }); } - function removeZero(item) { + function removeZero(item2) { tip.value.setdetails({ title: "提示", content: "确认删除该订单和托盘的绑定?", @@ -36475,7 +36482,7 @@ This will fail in production if not fixed.`); success: async () => { let data = { trayCode: details.trayCode, - orderCode: item.dataCode + orderCode: item2.dataCode }; let response2 = await warehouseTrayTypedeleteZeroOrderByTrayCode(data); if (response2.code == 200) { @@ -36491,14 +36498,14 @@ This will fail in production if not fixed.`); } }); } - function removeStock(item) { + function removeStock(item2) { tip.value.setdetails({ isshow: true, content: "确认删除该数据?", confirmTxt: "删除", success: async () => { let data = { - trayGoodsId: item.trayGoodsId + trayGoodsId: item2.trayGoodsId }; let res = await warehouseTrayTypedeleteStockByTrayGoodsId(data); formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:573", "res :>> ", res); @@ -36535,9 +36542,9 @@ This will fail in production if not fixed.`); else if (details.tabBarState === 3) details.datelist = details.detauser.stockList; } else { - res.data.data.map((item) => { - if (item.dictKey == details.trayType) { - details.trayCodevalue = item.dictValue; + res.data.data.map((item2) => { + if (item2.dictKey == details.trayType) { + details.trayCodevalue = item2.dictValue; } }); } @@ -36673,32 +36680,32 @@ This will fail in production if not fixed.`); details.showstate = state; } let isClick = null; - function inputNum(item) { + function inputNum(item2) { if (isClick) clearTimeout(isClick); isClick = setTimeout(() => { - item.number = parseInt(item.number); - if (item.number !== item.number) - item.number = 0; - if (item.number >= item.residueNum) - item.number = item.residueNum; - if (item.number <= 0) - item.number = 0; + item2.number = parseInt(item2.number); + if (item2.number !== item2.number) + item2.number = 0; + if (item2.number >= item2.residueNum) + item2.number = item2.residueNum; + if (item2.number <= 0) + item2.number = 0; clearTimeout(isClick); }, 500); } let isClickS = null; - function stockInput(item) { + function stockInput(item2) { if (isClick) clearTimeout(isClick); isClickS = setTimeout(() => { - item.maknumber = parseInt(item.maknumber); - if (item.maknumber !== item.maknumber) - item.maknumber = 0; - if (item.maknumber >= item.quantityStock) - item.maknumber = item.quantityStock; - if (item.maknumber <= 0) - item.maknumber = 0; + item2.maknumber = parseInt(item2.maknumber); + if (item2.maknumber !== item2.maknumber) + item2.maknumber = 0; + if (item2.maknumber >= item2.quantityStock) + item2.maknumber = item2.quantityStock; + if (item2.maknumber <= 0) + item2.maknumber = 0; clearTimeout(isClickS); }, 500); } @@ -36711,20 +36718,20 @@ This will fail in production if not fixed.`); return; formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:829", response2); details.codelist = response2.data; - details.codelist.map((item) => { - item["number"] = 0; - return item; + details.codelist.map((item2) => { + item2["number"] = 0; + return item2; }); } async function confirmlist() { let zeroList = []; let isfl = false; formatAppLog("log", "at pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue:845", "details.codelist :>> ", details.codelist); - isfl = !details.codelist.some((item) => { - if (item.number === 0) { + isfl = !details.codelist.some((item2) => { + if (item2.number === 0) { return false; } - if (item.number > item.orderTotalNum) { + if (item2.number > item2.orderTotalNum) { isfl = true; uni.showToast({ title: "不能大于订单总数", @@ -36732,9 +36739,9 @@ This will fail in production if not fixed.`); }); } else { let obj = { - orderId: item.dataId, - orderCode: item.dataCode, - num: item.number + orderId: item2.dataId, + orderCode: item2.dataCode, + num: item2.number }; zeroList.push(obj); } @@ -36784,15 +36791,15 @@ This will fail in production if not fixed.`); mask: true, title: "提交中" }); - const PromiseArr = details.stock.searchStockList.map(async (item, index2) => { - if (item.maknumber > 0) { + const PromiseArr = details.stock.searchStockList.map(async (item2, index2) => { + if (item2.maknumber > 0) { let data = { trayType: 100, trayCode: details.trayCode, - num: item.maknumber, + num: item2.maknumber, marketId: details.stock.marketId, - materialCode: item.cargoNumber, - incomingBatch: item.incomingBatch + materialCode: item2.cargoNumber, + incomingBatch: item2.incomingBatch }; return warehouseTrayTypeenterStockNoDataMaterialCode(data); } @@ -37110,7 +37117,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datelist), (item) => { + vue.renderList(vue.unref(datelist), (item2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, @@ -37119,7 +37126,7 @@ This will fail in production if not fixed.`); vue.unref(details).tabBarState === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "items chuanhuo", - onClick: ($event) => godetaillist(item) + onClick: ($event) => godetaillist(item2) }, [ vue.createElementVNode("view", { class: "tophd", @@ -37131,14 +37138,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: #ff0000;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: #ff0000;" : "") }, - vue.toDisplayString(item.dataCode) + vue.toDisplayString(item.isFleeing ? "(窜)" : ""), + vue.toDisplayString(item2.dataCode) + vue.toDisplayString(item2.isFleeing ? "(窜)" : ""), 5 /* TEXT, STYLE */ ), vue.createElementVNode("image", { - onClick: ($event) => removeitem(item), + onClick: ($event) => removeitem(item2), src: "/pagesHome/static/removeitem.png" }, null, 8, ["onClick"]) ]), @@ -37151,7 +37158,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.serviceNumber), + vue.toDisplayString(item2.serviceNumber), 1 /* TEXT */ ) @@ -37161,7 +37168,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ), @@ -37171,7 +37178,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ), @@ -37181,14 +37188,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "weish" }, - vue.toDisplayString(item.orderTotalNum - item.scanNum), + vue.toDisplayString(item2.orderTotalNum - item2.scanNum), 1 /* TEXT */ ), vue.createElementVNode("view", null, "未扫") ]) ]), - item.orderTotalNum != item.scanNum ? (vue.openBlock(), vue.createElementBlock("image", { + item2.orderTotalNum != item2.scanNum ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, class: "weiqt", src: "/pagesHome/static/weiqitao.png" @@ -37213,12 +37220,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ), vue.createElementVNode("image", { - onClick: ($event) => removeitem(item), + onClick: ($event) => removeitem(item2), src: "/pagesHome/static/removeitem.png" }, null, 8, ["onClick"]) ]), @@ -37231,7 +37238,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -37241,7 +37248,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ), @@ -37251,7 +37258,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ), @@ -37271,13 +37278,13 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ) ]), vue.createElementVNode("image", { - onClick: ($event) => removeitem(item), + onClick: ($event) => removeitem(item2), src: "/pagesHome/static/removeitem.png" }, null, 8, ["onClick"]) ]), @@ -37287,7 +37294,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataName), + vue.toDisplayString(item2.dataName), 1 /* TEXT */ ) @@ -37298,7 +37305,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.incomingBatch), + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -37309,7 +37316,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -37320,7 +37327,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) @@ -37330,7 +37337,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum || 0), + vue.toDisplayString(item2.orderTotalNum || 0), 1 /* TEXT */ ), @@ -37340,7 +37347,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum || 0), + vue.toDisplayString(item2.scanNum || 0), 1 /* TEXT */ ), @@ -37440,14 +37447,14 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(codelist), (item, index2) => { + vue.renderList(vue.unref(codelist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "type1s" }, [ vue.createElementVNode("view", null, "订单号:"), vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ) @@ -37458,7 +37465,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderTotalNum) + "件", + vue.toDisplayString(item2.orderTotalNum) + "件", 1 /* TEXT */ ) @@ -37470,7 +37477,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.residueNum) + "件", + vue.toDisplayString(item2.residueNum) + "件", 1 /* TEXT */ ) @@ -37481,11 +37488,11 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, "入库数:"), vue.withDirectives(vue.createElementVNode("input", { placeholder: "请输入入库数", - "onUpdate:modelValue": ($event) => item.number = $event, + "onUpdate:modelValue": ($event) => item2.number = $event, type: "number", - onInput: ($event) => inputNum(item) + onInput: ($event) => inputNum(item2) }, null, 40, ["onUpdate:modelValue", "onInput"]), [ - [vue.vModelText, item.number] + [vue.vModelText, item2.number] ]) ]) ]), @@ -37496,7 +37503,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.positionList, (ite) => { + vue.renderList(item2.positionList, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itembox" }, [ ite.allocationName ? (vue.openBlock(), vue.createElementBlock( "view", @@ -37576,7 +37583,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).stock.searchStockList, (item, index2) => { + vue.renderList(vue.unref(details).stock.searchStockList, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "type1s" }, [ vue.createElementVNode("view", null, [ @@ -37584,7 +37591,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.cargoNumber), + vue.toDisplayString(item2.cargoNumber), 1 /* TEXT */ ) @@ -37596,7 +37603,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -37608,7 +37615,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -37620,7 +37627,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) @@ -37630,7 +37637,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.cargoNorms), + vue.toDisplayString(item2.cargoNorms), 1 /* TEXT */ ) @@ -37642,7 +37649,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.quantityStock) + vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.quantityStock) + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) @@ -37652,7 +37659,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -37667,10 +37674,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, "数量:"), vue.withDirectives(vue.createElementVNode("input", { placeholder: "请输入数量", - "onUpdate:modelValue": ($event) => item.maknumber = $event, - onInput: ($event) => stockInput(item) + "onUpdate:modelValue": ($event) => item2.maknumber = $event, + onInput: ($event) => stockInput(item2) }, null, 40, ["onUpdate:modelValue", "onInput"]), [ - [vue.vModelText, item.maknumber] + [vue.vModelText, item2.maknumber] ]) ]) ]), @@ -37681,7 +37688,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.positionList, (ite) => { + vue.renderList(item2.positionList, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itembox" }, [ vue.createElementVNode("view", null, [ vue.createTextVNode(" 库位: "), @@ -37810,21 +37817,21 @@ This will fail in production if not fixed.`); let trayCodeTypearr = uni.getStorageSync("trayCodeType") || []; utils.ttsspke("请选择分拣方式"); formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:51", trayCodeTypearr); - trayCodeTypearr.map((item, index2) => { + trayCodeTypearr.map((item2, index2) => { typelist.value.map((ite, inde) => { - if (item.dictValue == ite.name) { - typelist.value[inde]["dictKey"] = item.dictKey; + if (item2.dictValue == ite.name) { + typelist.value[inde]["dictKey"] = item2.dictKey; } }); }); formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:59", typelist.value); }); - function gotourl(item) { + function gotourl(item2) { let url2 = ""; - formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:63", "item>>>>>>>", item); + formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:63", "item>>>>>>>", item2); const SkipRoute = query.value.SkipRoute; formatAppLog("log", "at pagesHome/pages/ScanSortingType/ScanSortingType.vue:67", "SkipRoute :>> ", SkipRoute); - url2 = "/pagesHome/pages" + (SkipRoute ? SkipRoute : "/OrderSortingDetail/OrderSortingDetail") + "?trayCode=" + trayCode.value + "&trayType=" + item.dictKey + "&pageName=" + item.name; + url2 = "/pagesHome/pages" + (SkipRoute ? SkipRoute : "/OrderSortingDetail/OrderSortingDetail") + "?trayCode=" + trayCode.value + "&trayType=" + item2.dictKey + "&pageName=" + item2.name; uni.redirectTo({ url: url2 }); @@ -37848,18 +37855,18 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(typelist), (item) => { + vue.renderList(vue.unref(typelist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items", - onClick: ($event) => gotourl(item) + onClick: ($event) => gotourl(item2) }, [ vue.createElementVNode("image", { - src: item.src + src: item2.src }, null, 8, ["src"]), vue.createElementVNode( "view", null, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -37908,9 +37915,9 @@ This will fail in production if not fixed.`); } let trayCodeTypearr = uni.getStorageSync("trayCodeType"); formatAppLog("log", "at pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue:208", "trayCodeTypearr :>> ", trayCodeTypearr); - trayCodeTypearr.map((item) => { - if (item.dictKey == details.trayType) { - details.trayCodevalue = item.dictValue; + trayCodeTypearr.map((item2) => { + if (item2.dictKey == details.trayType) { + details.trayCodevalue = item2.dictValue; } }); }); @@ -37948,15 +37955,15 @@ This will fail in production if not fixed.`); if (response2.code !== 200) return; details.codelist = response2.data; - details.codelist.map((item) => { - item["number"] = 0; - return item; + details.codelist.map((item2) => { + item2["number"] = 0; + return item2; }); } async function confirmlist() { let zeroList = []; let isfl = false; - isfl = !details.codelist.every((item) => item.number > 0); + isfl = !details.codelist.every((item2) => item2.number > 0); if (isfl || details.codelist) { return tip.value.setdetails({ title: "警告", @@ -37975,11 +37982,11 @@ This will fail in production if not fixed.`); } }); } - details.codelist.forEach((item) => { - if (item.number == 0) { + details.codelist.forEach((item2) => { + if (item2.number == 0) { return; } - if (item.number > item.orderTotalNum) { + if (item2.number > item2.orderTotalNum) { isfl = true; tip.value.setdetails({ title: "警告", @@ -37999,9 +38006,9 @@ This will fail in production if not fixed.`); }); } else { let obj = { - orderId: item.dataId, - orderCode: item.dataCode, - num: item.number + orderId: item2.dataId, + orderCode: item2.dataCode, + num: item2.number }; zeroList.push(obj); } @@ -38033,7 +38040,7 @@ This will fail in production if not fixed.`); setshowstate(0); } } - function showremoveorder(item) { + function showremoveorder(item2) { tip.value.setdetails({ title: "提示", content: "确认删除该订单和托盘的绑定?", @@ -38043,7 +38050,7 @@ This will fail in production if not fixed.`); success: async () => { let data = { trayCode: details.trayCode, - orderCode: item.dataCode + orderCode: item2.dataCode }; let response2 = await warehouseTrayTypedeleteZeroOrderByTrayCode(data); if (response2.code == 200) { @@ -38070,17 +38077,17 @@ This will fail in production if not fixed.`); details.showstate = state; } let isClick = null; - function inputNum(item) { + function inputNum(item2) { if (isClick) clearTimeout(isClick); isClick = setTimeout(() => { - item.number = parseInt(item.number); - if (item.number !== item.number) - item.number = 0; - if (item.number >= item.residueNum) - item.number = item.residueNum; - if (item.number <= 0) - item.number = 0; + item2.number = parseInt(item2.number); + if (item2.number !== item2.number) + item2.number = 0; + if (item2.number >= item2.residueNum) + item2.number = item2.residueNum; + if (item2.number <= 0) + item2.number = 0; clearTimeout(isClick); }, 500); } @@ -38197,7 +38204,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "tophd" }, [ vue.createElementVNode("view", null, [ @@ -38206,13 +38213,13 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ) ]), vue.createElementVNode("image", { - onClick: ($event) => showremoveorder(item), + onClick: ($event) => showremoveorder(item2), src: "/pagesHome/static/removeitem.png" }, null, 8, ["onClick"]) ]), @@ -38222,7 +38229,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.waybillNumber), + vue.toDisplayString(item2.waybillNumber), 1 /* TEXT */ ) @@ -38233,7 +38240,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ), @@ -38243,7 +38250,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ), @@ -38253,7 +38260,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "weish" }, - vue.toDisplayString(item.orderTotalNum - item.scanNum), + vue.toDisplayString(item2.orderTotalNum - item2.scanNum), 1 /* TEXT */ ), @@ -38341,7 +38348,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(codelist), (item, index2) => { + vue.renderList(vue.unref(codelist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items", onClick: ($event) => setchecl(index2) @@ -38351,7 +38358,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ) @@ -38362,7 +38369,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderTotalNum) + "件", + vue.toDisplayString(item2.orderTotalNum) + "件", 1 /* TEXT */ ) @@ -38374,7 +38381,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.residueNum) + "件", + vue.toDisplayString(item2.residueNum) + "件", 1 /* TEXT */ ) @@ -38385,11 +38392,11 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, "入库数:"), vue.withDirectives(vue.createElementVNode("input", { placeholder: "请输入入库数", - "onUpdate:modelValue": ($event) => item.number = $event, + "onUpdate:modelValue": ($event) => item2.number = $event, type: "number", - onInput: ($event) => inputNum(item) + onInput: ($event) => inputNum(item2) }, null, 40, ["onUpdate:modelValue", "onInput"]), [ - [vue.vModelText, item.number] + [vue.vModelText, item2.number] ]) ]) ]), @@ -38400,7 +38407,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.positionList, (ite) => { + vue.renderList(item2.positionList, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itembox" }, [ ite.allocationName ? (vue.openBlock(), vue.createElementBlock( "view", @@ -38484,10 +38491,10 @@ This will fail in production if not fixed.`); // { type: 2, name: '其他', src: '/pagesHome/static/dtfsicon3.png' }, ]; let trayCodeTypearr = uni.getStorageSync("trayCodeType"); - trayCodeTypearr.map((item, index2) => { + trayCodeTypearr.map((item2, index2) => { typelist.value.map((ite, inde) => { - if (item.dictValue == ite.name) { - typelist.value[inde]["dictKey"] = item.dictKey; + if (item2.dictValue == ite.name) { + typelist.value[inde]["dictKey"] = item2.dictKey; } }); }); @@ -38495,12 +38502,12 @@ This will fail in production if not fixed.`); onShow(() => { uni.$off("scancodedate"); }); - function gotourl(item) { + function gotourl(item2) { let url2 = ""; if (Number(pageType.value) == 1) { - url2 = "/pagesHome/pages/inventoryenter/inventoryenter?type=" + item.type + "&trayCode=" + trayCode.value + "&trayType=" + item.dictKey; + url2 = "/pagesHome/pages/inventoryenter/inventoryenter?type=" + item2.type + "&trayCode=" + trayCode.value + "&trayType=" + item2.dictKey; } else if (Number(pageType.value) == 2) { - url2 = "/pagesHome/pages/inventoryenter/inventoryenter?type=" + item.type + "&trayCode=" + trayCode.value + "&trayType=" + item.dictKey; + url2 = "/pagesHome/pages/inventoryenter/inventoryenter?type=" + item2.type + "&trayCode=" + trayCode.value + "&trayType=" + item2.dictKey; } uni.redirectTo({ url: url2 @@ -38526,18 +38533,18 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(typelist), (item) => { + vue.renderList(vue.unref(typelist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "pepleietm", - onClick: ($event) => gotourl(item) + onClick: ($event) => gotourl(item2) }, [ vue.createElementVNode("image", { - src: item.src + src: item2.src }, null, 8, ["src"]), vue.createElementVNode( "view", null, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -38583,9 +38590,9 @@ This will fail in production if not fixed.`); }); } let trayCodeTypearr = uni.getStorageSync("trayCodeType"); - trayCodeTypearr.map((item) => { - if (item.dictKey == details.trayType) { - details.trayName = item.dictValue; + trayCodeTypearr.map((item2) => { + if (item2.dictKey == details.trayType) { + details.trayName = item2.dictValue; } }); }); @@ -38618,7 +38625,7 @@ This will fail in production if not fixed.`); }; await warehouseTrayTypescanStockOrderPackageCode(data); } - function godetailslist(item) { + function godetailslist(item2) { return; } const { trayName, Inventorydetail, datelist, trayCode, trayType } = vue.toRefs(details); @@ -38699,7 +38706,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datelist), (item) => { + vue.renderList(vue.unref(datelist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items", onClick: godetailslist @@ -38710,7 +38717,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ) @@ -38721,7 +38728,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataName), + vue.toDisplayString(item2.dataName), 1 /* TEXT */ ) @@ -38731,7 +38738,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ), @@ -38741,7 +38748,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ), @@ -38890,7 +38897,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(list), (item, index2) => { + vue.renderList(vue.unref(list), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items", onClick: ($event) => checkidx(index2) @@ -38979,18 +38986,18 @@ This will fail in production if not fixed.`); }); const kcnumber = vue.computed(() => { let num = 0; - details.datalist.map((item) => { - if (item.scanNum) { - num += item.scanNum; + details.datalist.map((item2) => { + if (item2.scanNum) { + num += item2.scanNum; } }); return num; }); function checkmake() { let list = []; - details.Marketlist.map((item) => { + details.Marketlist.map((item2) => { formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:225", "list", list); - list.push(item == null ? void 0 : item.marketName); + list.push(item2 == null ? void 0 : item2.marketName); }); formatAppLog("log", "at pagesHome/pages/inventoryenter/inventoryenter.vue:228", "details.Marketlist :>> ", details.Marketlist); tiplists.value.setdetails({ @@ -39033,8 +39040,8 @@ This will fail in production if not fixed.`); if (res.code !== 200) return; details.Marketlist = res.data; - let market = details.Marketlist.find((item) => { - return item.marketId === details.marketId; + let market = details.Marketlist.find((item2) => { + return item2.marketId === details.marketId; }); if (market) marketName.value = market.marketName; @@ -39091,15 +39098,15 @@ This will fail in production if not fixed.`); }); return; } - details.scanlist.map(async (item, index2) => { - if (item.maknumber) { + details.scanlist.map(async (item2, index2) => { + if (item2.maknumber) { let data = { trayType: 100, trayCode: details.trayCode, - num: item.maknumber, + num: item2.maknumber, marketId: details.marketId, - materialCode: item.cargoNumber, - incomingBatch: item.incomingBatch + materialCode: item2.cargoNumber, + incomingBatch: item2.incomingBatch }; await warehouseTrayTypeenterStockNoDataMaterialCode(data); if (index2 == details.scanlist.length - 1) { @@ -39115,14 +39122,14 @@ This will fail in production if not fixed.`); details.scanlist = []; details.materialCode = ""; } - function tipremove(item) { + function tipremove(item2) { tip.value.setdetails({ isshow: true, content: "确认删除该数据?", confirmTxt: "删除", success: async () => { let data = { - trayGoodsId: item.trayGoodsId + trayGoodsId: item2.trayGoodsId }; let res = await warehouseTrayTypedeleteStockByTrayGoodsId(data); if (res.code == 200) { @@ -39229,7 +39236,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "tophd1" }, [ vue.createElementVNode("view", null, [ @@ -39238,13 +39245,13 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ) ]), vue.createElementVNode("image", { - onClick: ($event) => tipremove(item), + onClick: ($event) => tipremove(item2), src: "/pagesHome/static/removeitem.png" }, null, 8, ["onClick"]) ]), @@ -39254,7 +39261,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataName), + vue.toDisplayString(item2.dataName), 1 /* TEXT */ ) @@ -39265,7 +39272,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.incomingBatch), + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -39276,7 +39283,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -39287,7 +39294,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) @@ -39297,7 +39304,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum || 0), + vue.toDisplayString(item2.orderTotalNum || 0), 1 /* TEXT */ ), @@ -39307,7 +39314,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum || 0), + vue.toDisplayString(item2.scanNum || 0), 1 /* TEXT */ ), @@ -39357,7 +39364,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).scanlist, (item, index2) => { + vue.renderList(vue.unref(details).scanlist, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items", onClick: ($event) => setchecl(index2) @@ -39368,7 +39375,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.cargoNumber), + vue.toDisplayString(item2.cargoNumber), 1 /* TEXT */ ) @@ -39380,7 +39387,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -39392,7 +39399,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -39404,7 +39411,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) @@ -39414,7 +39421,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.cargoNorms), + vue.toDisplayString(item2.cargoNorms), 1 /* TEXT */ ) @@ -39426,7 +39433,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.quantityStock) + vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.quantityStock) + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) @@ -39436,7 +39443,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -39451,9 +39458,9 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, "数量:"), vue.withDirectives(vue.createElementVNode("input", { placeholder: "请输入数量", - "onUpdate:modelValue": ($event) => item.maknumber = $event + "onUpdate:modelValue": ($event) => item2.maknumber = $event }, null, 8, ["onUpdate:modelValue"]), [ - [vue.vModelText, item.maknumber] + [vue.vModelText, item2.maknumber] ]) ]) ]), @@ -39464,7 +39471,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.positionList, (ite) => { + vue.renderList(item2.positionList, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itembox" }, [ vue.createElementVNode("view", null, [ vue.createTextVNode("库位: "), @@ -39713,12 +39720,12 @@ This will fail in production if not fixed.`); } return res; } - function goorderdetail(item) { + function goorderdetail(item2) { let url2 = ""; if (details.pageType == 1) { - url2 = "/pagesHome/pages/inventoryenter/inventoryenter?trayCode=" + item.trayCode + "&trayType=" + item.trayType; + url2 = "/pagesHome/pages/inventoryenter/inventoryenter?trayCode=" + item2.trayCode + "&trayType=" + item2.trayType; } else if (details.pageType == 2) { - url2 = "/pagesHome/pages/inventoryenter/inventoryenter?trayCode=" + item.trayCode + "&trayType=" + item.trayType; + url2 = "/pagesHome/pages/inventoryenter/inventoryenter?trayCode=" + item2.trayCode + "&trayType=" + item2.trayType; } uni.navigateTo({ url: url2 @@ -39824,7 +39831,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datelist), (item) => { + vue.renderList(vue.unref(datelist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "headtopv" }, [ vue.createElementVNode("view", null, [ @@ -39832,13 +39839,13 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.trayCode), + vue.toDisplayString(item2.trayCode), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { - onClick: ($event) => goorderdetail(item) + onClick: ($event) => goorderdetail(item2) }, "继续分拣", 8, ["onClick"]) ]), vue.createElementVNode("view", { class: "contentbx" }, [ @@ -39851,7 +39858,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.marketName) + vue.toDisplayString(item.filterValue), + vue.toDisplayString(item2.marketName) + vue.toDisplayString(item2.filterValue), 1 /* TEXT */ ) @@ -39870,7 +39877,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.stockNum || 0), + vue.toDisplayString(item2.stockNum || 0), 1 /* TEXT */ ) @@ -39880,7 +39887,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.stockTotalNum || 0), + vue.toDisplayString(item2.stockTotalNum || 0), 1 /* TEXT */ ) @@ -39968,8 +39975,8 @@ This will fail in production if not fixed.`); details.list = response2.data.parcelList; details.detaobj = response2.data || []; let set2 = /* @__PURE__ */ new Set(); - response2.data.parcelList.map((item) => { - set2.add(item.trayName); + response2.data.parcelList.map((item2) => { + set2.add(item2.trayName); }); details.tabcek = [...set2]; await vue.nextTick(); @@ -39979,17 +39986,17 @@ This will fail in production if not fixed.`); vue.watchEffect(() => { details.showlist = []; details.ischeckall = false; - details.list.map((item) => { - if (details.tabcek[details.xzckindex] == item.trayName) { - details.showlist.push(item); - if (item.deletedStatus) { + details.list.map((item2) => { + if (details.tabcek[details.xzckindex] == item2.trayName) { + details.showlist.push(item2); + if (item2.deletedStatus) { details.ischeckall = true; } } }); }); - function removeitem(item) { - if (!item.trayId) { + function removeitem(item2) { + if (!item2.trayId) { return; } tip.value.setdetails({ @@ -40001,7 +40008,7 @@ This will fail in production if not fixed.`); success: async () => { let data = { trayCode: details.trayCode, - orderPackageCodes: [item.orderPackageCode] + orderPackageCodes: [item2.orderPackageCode] }; let res = await warehouseTrayTypedeleteScanOrderPackageCode(data); if (res.code == 200) { @@ -40031,9 +40038,9 @@ This will fail in production if not fixed.`); confirmTxt: "删除", success: async () => { let removearr = []; - details.checkindex.map((item) => { - if (details.list[item]["trayId"]) { - removearr.push(details.list[item]["orderPackageCode"]); + details.checkindex.map((item2) => { + if (details.list[item2]["trayId"]) { + removearr.push(details.list[item2]["orderPackageCode"]); } }); if (removearr.length == 0) { @@ -40079,8 +40086,8 @@ This will fail in production if not fixed.`); details.checkindex = []; } else { details.checkindex = []; - details.list.map((item, index2) => { - if (!item.trayId) { + details.list.map((item2, index2) => { + if (!item2.trayId) { return; } details.checkindex.push(index2); @@ -40156,11 +40163,11 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(tabcek), (item, index2) => { + vue.renderList(vue.unref(tabcek), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { onClick: ($event) => setckindex(index2), class: vue.normalizeClass(vue.unref(xzckindex) == index2 ? "xz" : "") - }, vue.toDisplayString(item || "无托盘信息"), 11, ["onClick"]); + }, vue.toDisplayString(item2 || "无托盘信息"), 11, ["onClick"]); }), 256 /* UNKEYED_FRAGMENT */ @@ -40200,13 +40207,13 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(showlist), (item, index2) => { + vue.renderList(vue.unref(showlist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items", onClick: ($event) => checkidx(index2) }, [ vue.createElementVNode("view", { class: "lefticon" }, [ - item.deletedStatus ? (vue.openBlock(), vue.createElementBlock("image", { + item2.deletedStatus ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, src: vue.unref(checkindex).indexOf(index2) != -1 ? "/pagesHome/static/check.png" : "/pagesHome/static/nocheck.png" }, null, 8, ["src"])) : vue.createCommentVNode("v-if", true) @@ -40218,9 +40225,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.orderPackageCode || "无数据"), + vue.toDisplayString(item2.orderPackageCode || "无数据"), 5 /* TEXT, STYLE */ ) @@ -40232,9 +40239,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.trayName || "无数据"), + vue.toDisplayString(item2.trayName || "无数据"), 5 /* TEXT, STYLE */ ) @@ -40246,9 +40253,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.warehouseName || "无数据"), + vue.toDisplayString(item2.warehouseName || "无数据"), 5 /* TEXT, STYLE */ ) @@ -40260,9 +40267,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.materialCode || "无数据"), + vue.toDisplayString(item2.materialCode || "无数据"), 5 /* TEXT, STYLE */ ) @@ -40274,9 +40281,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.materialName || "无数据"), + vue.toDisplayString(item2.materialName || "无数据"), 5 /* TEXT, STYLE */ ) @@ -40288,9 +40295,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(Number(item.conditions) === 1 ? "定制品" : Number(item.conditions) === 2 ? "库存品" : "无数据"), + vue.toDisplayString(Number(item2.conditions) === 1 ? "定制品" : Number(item2.conditions) === 2 ? "库存品" : "无数据"), 5 /* TEXT, STYLE */ ) @@ -40302,9 +40309,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.pinming || "无数据"), + vue.toDisplayString(item2.pinming || "无数据"), 5 /* TEXT, STYLE */ ) @@ -40316,9 +40323,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.areaTitle || "无数据"), + vue.toDisplayString(item2.areaTitle || "无数据"), 5 /* TEXT, STYLE */ ) @@ -40330,9 +40337,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.shelfTitle || "无数据"), + vue.toDisplayString(item2.shelfTitle || "无数据"), 5 /* TEXT, STYLE */ ) @@ -40344,9 +40351,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.allocationTitle || "无数据"), + vue.toDisplayString(item2.allocationTitle || "无数据"), 5 /* TEXT, STYLE */ ) @@ -40358,7 +40365,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.trayId ? "已扫" : "未扫"), + vue.toDisplayString(item2.trayId ? "已扫" : "未扫"), 1 /* TEXT */ ) @@ -40370,10 +40377,10 @@ This will fail in production if not fixed.`); onClick: _cache[0] || (_cache[0] = vue.withModifiers(() => { }, ["stop", "prevent"])) }, [ - item.deletedStatus ? (vue.openBlock(), vue.createElementBlock("image", { + item2.deletedStatus ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, src: "/pagesHome/static/removeitem.png", - onClick: ($event) => removeitem(item) + onClick: ($event) => removeitem(item2) }, null, 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ]) ], 8, ["onClick"]); @@ -40431,8 +40438,8 @@ This will fail in production if not fixed.`); clearTimeout(timer); }, 500); }); - function gotourl(item) { - let url2 = "/pagesHome/pages/ScanUp/ScanUp?type=" + item.type + "&pageName=" + item.name; + function gotourl(item2) { + let url2 = "/pagesHome/pages/ScanUp/ScanUp?type=" + item2.type + "&pageName=" + item2.name; uni.navigateTo({ url: url2 }); @@ -40456,18 +40463,18 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(typelist), (item) => { + vue.renderList(vue.unref(typelist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "pepleietm", - onClick: ($event) => gotourl(item) + onClick: ($event) => gotourl(item2) }, [ vue.createElementVNode("image", { - src: item.src + src: item2.src }, null, 8, ["src"]), vue.createElementVNode( "view", null, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -40619,7 +40626,7 @@ This will fail in production if not fixed.`); } let _content = ""; if (details.upshelfScanType !== "3") - _content = details.uplistarr.reduce((curr, item) => curr + item.shelfNum, 0) + "件"; + _content = details.uplistarr.reduce((curr, item2) => curr + item2.shelfNum, 0) + "件"; else _content = details.uplistarr.length + "件"; utils.ttsspke(_content); @@ -40644,11 +40651,11 @@ This will fail in production if not fixed.`); else scanOther(code2); } - function goorderdetail(item, type2) { + function goorderdetail(item2, type2) { if (type2 !== 1) return; uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } function uplist() { @@ -40674,7 +40681,7 @@ This will fail in production if not fixed.`); if (details.upshelfScanType === "3") _totalShelfNum = uplistarr.value.length; else - _totalShelfNum = uplistarr.value.reduce((curr, item) => curr + item.shelfNum, 0); + _totalShelfNum = uplistarr.value.reduce((curr, item2) => curr + item2.shelfNum, 0); utils.ttsspke(`待上架${_totalShelfNum}件, 是否进行上架`); tip.value.setdetails({ title: "提示", @@ -40747,22 +40754,22 @@ This will fail in production if not fixed.`); } function fn2(tempArr, fnname) { let result = []; - tempArr.map((item) => { + tempArr.map((item2) => { if (result.length == 0) { - item.enterNum = Number(item.enterNum); - result.push(item); + item2.enterNum = Number(item2.enterNum); + result.push(item2); } else { let ckindex = -1; result.map((ite, index2) => { - if (ite[fnname] == item[fnname]) { + if (ite[fnname] == item2[fnname]) { ckindex = index2; } }); if (ckindex != -1) { - result[ckindex].enterNum += Number(item.enterNum); + result[ckindex].enterNum += Number(item2.enterNum); } else { - item.enterNum = Number(item.enterNum); - result.push(item); + item2.enterNum = Number(item2.enterNum); + result.push(item2); } } }); @@ -40845,17 +40852,17 @@ This will fail in production if not fixed.`); iterator.checked = false; } }; - const handleCheck = (item) => { - if (item.checked) - chooseOrderPackageCodeList.value.splice(chooseOrderPackageCodeList.value.indexOf(item.code), 1); + const handleCheck = (item2) => { + if (item2.checked) + chooseOrderPackageCodeList.value.splice(chooseOrderPackageCodeList.value.indexOf(item2.code), 1); else - chooseOrderPackageCodeList.value.push(item.code); - item.checked = !item.checked; + chooseOrderPackageCodeList.value.push(item2.code); + item2.checked = !item2.checked; }; - const handleDownLoadByOrder = async (item) => { - formatAppLog("log", "at pagesHome/pages/ScanUp/ScanUp.vue:754", "item :>> ", item); + const handleDownLoadByOrder = async (item2) => { + formatAppLog("log", "at pagesHome/pages/ScanUp/ScanUp.vue:754", "item :>> ", item2); const res = await postorderUpshelfDetailByAllocationId({ - orderCode: item.orderCode, + orderCode: item2.orderCode, allocationId: details.allocationId }); if (res.code !== 200) @@ -40895,10 +40902,10 @@ This will fail in production if not fixed.`); } }); }; - const handleDownLoadByStock = async (item) => { - const content = item.goodsType === 2 ? "零担下架" : "库存品下架"; - details.stockItem = item; - details.enterNum = item.shelfNum; + const handleDownLoadByStock = async (item2) => { + const content = item2.goodsType === 2 ? "零担下架" : "库存品下架"; + details.stockItem = item2; + details.enterNum = item2.shelfNum; downLoadByStock.value.setDetails({ title: content, showPopUp: true, @@ -40952,14 +40959,14 @@ This will fail in production if not fixed.`); } }); }; - const handleDownLoad = (item) => { - const { goodsType } = item; + const handleDownLoad = (item2) => { + const { goodsType } = item2; if (goodsType === 0 || goodsType === 1) - handleDownLoadByOrder(item); + handleDownLoadByOrder(item2); else if (goodsType === 2) - handleDownLoadByStock(item); + handleDownLoadByStock(item2); else if (goodsType === 3) - handleDownLoadByStock(item); + handleDownLoadByStock(item2); }; const { uplistarr, @@ -41139,7 +41146,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "托盘已扫数量:" + vue.toDisplayString(vue.unref(details).renderList.reduce((curr, item) => curr + item.shelfNum, 0)), + "托盘已扫数量:" + vue.toDisplayString(vue.unref(details).renderList.reduce((curr, item2) => curr + item2.shelfNum, 0)), 1 /* TEXT */ ) @@ -41158,9 +41165,9 @@ This will fail in production if not fixed.`); vue.unref(details).checkstate === 1 || vue.unref(details).checkstate === 2 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(renderList), (item, index2) => { + vue.renderList(vue.unref(renderList), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item1" }, [ - item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -41168,7 +41175,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.orderPackageCode), + "包条码:" + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ), @@ -41179,68 +41186,68 @@ This will fail in production if not fixed.`); src: "/pagesHome/static/removeitem.png" }, null, 8, ["onClick"]) ])) : vue.createCommentVNode("v-if", true), - item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item, item.goodsType), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2, item2.goodsType), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true), - item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item, item.goodsType), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2, item2.goodsType), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "类型:" + vue.toDisplayString(Number(item.conditions) === 1 ? "定制品" : "库存品"), + "类型:" + vue.toDisplayString(Number(item2.conditions) === 1 ? "定制品" : "库存品"), 1 /* TEXT */ ) ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 定制品 "), - item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 3 }, [ + item2.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 3 }, [ vue.createElementVNode("view", { class: "tpbx" }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "服务号:" + vue.toDisplayString(item.serviceNum), + "服务号:" + vue.toDisplayString(item2.serviceNum), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item, item.goodsType), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2, item2.goodsType), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) ], 8, ["onClick"]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 零担 "), - item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 4 }, [ + item2.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 4 }, [ vue.createElementVNode("view", { class: "tpbx" }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "运单号:" + vue.toDisplayString(item.waybillNo), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -41250,20 +41257,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) ]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 库存品 "), - item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 5 }, [ + item2.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 5 }, [ vue.createElementVNode("view", { class: "tpbx" }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "物料编码:" + vue.toDisplayString(item.materialCode), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -41273,7 +41280,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -41283,7 +41290,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -41293,7 +41300,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "商场名称:" + vue.toDisplayString(item.marketName), + "商场名称:" + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -41303,7 +41310,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item.incomingBatch), + "批次号:" + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -41318,14 +41325,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总数:" + vue.toDisplayString(item.totalNum), + "总数:" + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "上架数量:" + vue.toDisplayString(item.shelfNum), + "上架数量:" + vue.toDisplayString(item2.shelfNum), 1 /* TEXT */ ) @@ -41334,12 +41341,12 @@ This will fail in production if not fixed.`); vue.unref(details).checkstate === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 7, class: "downloadBtn", - onClick: ($event) => handleDownLoad(item) + onClick: ($event) => handleDownLoad(item2) }, " 下架 ", 8, ["onClick"])) : vue.createCommentVNode("v-if", true), Number(vue.unref(details).upshelfScanType) != 3 ? (vue.openBlock(), vue.createElementBlock("image", { key: 8, class: "qtimgzt", - src: item.totalNum == item.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" + src: item2.totalNum == item2.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" }, null, 8, ["src"])) : vue.createCommentVNode("v-if", true) ]); }), @@ -41455,24 +41462,24 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).orderPackageCodeList, (item) => { + vue.renderList(vue.unref(details).orderPackageCodeList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.code, + key: item2.code, class: "downloadRow", - onClick: ($event) => handleCheck(item) + onClick: ($event) => handleCheck(item2) }, [ - !item.checked ? (vue.openBlock(), vue.createElementBlock("image", { + !item2.checked ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, src: "/pagesHome/static/downnocheck.png" })) : vue.createCommentVNode("v-if", true), - item.checked ? (vue.openBlock(), vue.createElementBlock("image", { + item2.checked ? (vue.openBlock(), vue.createElementBlock("image", { key: 1, src: "/pagesHome/static/downcheck.png" })) : vue.createCommentVNode("v-if", true), vue.createElementVNode( "view", null, - vue.toDisplayString(item.code), + vue.toDisplayString(item2.code), 1 /* TEXT */ ) @@ -41564,14 +41571,14 @@ This will fail in production if not fixed.`); { name: "按件移库", imgUrl: "/pagesHome/static/ordericon1.png", type: 2 }, { name: "按库位移库", imgUrl: "/pagesHome/static/ordericon1.png", type: 3 } ]; - function gotourl(item) { - if (item.type == 3) { + function gotourl(item2) { + if (item2.type == 3) { uni.navigateTo({ - url: `/pagesHome/pages/RelocationAllocationId/RelocationAllocationId?pageName=${item.name}` + url: `/pagesHome/pages/RelocationAllocationId/RelocationAllocationId?pageName=${item2.name}` }); return; } - let url2 = `/pagesHome/pages/Relocation/Relocation?type=${item.type}&pageName=${item.name}`; + let url2 = `/pagesHome/pages/Relocation/Relocation?type=${item2.type}&pageName=${item2.name}`; uni.navigateTo({ url: url2 }); @@ -41600,25 +41607,25 @@ This will fail in production if not fixed.`); (vue.openBlock(), vue.createElementBlock( vue.Fragment, null, - vue.renderList(renderTypeList, (item, index2) => { + vue.renderList(renderTypeList, (item2, index2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, { - key: item.name + key: item2.name }, [ vue.createElementVNode("view", { class: "items", - onClick: ($event) => gotourl(item) + onClick: ($event) => gotourl(item2) }, [ vue.createElementVNode("image", { mode: "widthFix", - src: item.imgUrl + src: item2.imgUrl }, null, 8, ["src"]), vue.createElementVNode( "view", null, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -41690,25 +41697,25 @@ This will fail in production if not fixed.`); clearTimeout(timer); }, 500); }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } const traynumber = vue.computed(() => { let numbers = 0; - details.scanlist.map((item) => { - if (item.shelfNum) { - numbers += item.shelfNum; - } else if (item.num) { - numbers += item.num; + details.scanlist.map((item2) => { + if (item2.shelfNum) { + numbers += item2.shelfNum; + } else if (item2.num) { + numbers += item2.num; } }); return numbers; }); vue.watchEffect(() => { - details.scanlist.map((item) => { - details.codenumer += item.shelfNum; + details.scanlist.map((item2) => { + details.codenumer += item2.shelfNum; }); formatAppLog("log", "at pagesHome/pages/Relocation/Relocation.vue:357", details.codenumer); }); @@ -41753,7 +41760,7 @@ This will fail in production if not fixed.`); return; details.trayCode = scancode2; details.scanlist = res.data.list; - utils.ttsspke("当前托盘" + details.scanlist.reduce((curr, item) => curr + item.shelfNum, 0) + "件"); + utils.ttsspke("当前托盘" + details.scanlist.reduce((curr, item2) => curr + item2.shelfNum, 0) + "件"); details.obldate = res.data; } else if (details.pagetype == "2") { let data = { @@ -41831,7 +41838,7 @@ This will fail in production if not fixed.`); } let content = 0; if (Number(details.pagetype) === 1) - content = details.scanlist.reduce((curr, item) => curr + item.shelfNum, 0); + content = details.scanlist.reduce((curr, item2) => curr + item2.shelfNum, 0); else if (Number(details.pagetype) === 2) content = details.scanlist.length; if (flg) { @@ -41961,7 +41968,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(scanlist), (item, index2) => { + vue.renderList(vue.unref(scanlist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, @@ -41972,13 +41979,13 @@ This will fail in production if not fixed.`); class: "item2" }, [ vue.createCommentVNode(" 定制品 "), - item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ + item2.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), + "服务号:" + vue.toDisplayString(item2.serviceNum), 1 /* TEXT */ ) @@ -41988,20 +41995,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "托盘码:" + vue.toDisplayString(item.trayCode + `(${item.trayName})`), + "托盘码:" + vue.toDisplayString(item2.trayCode + `(${item2.trayName})`), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item.orderCode), + "订单自编号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -42011,20 +42018,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) ]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 零担 "), - item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, [ + item2.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), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -42034,7 +42041,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "托盘码:" + vue.toDisplayString(item.trayCode + `(${item.trayName})`), + "托盘码:" + vue.toDisplayString(item2.trayCode + `(${item2.trayName})`), 1 /* TEXT */ ) @@ -42044,7 +42051,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item.orderCode), + "订单自编号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -42054,20 +42061,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) ]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 库存品 "), - item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2 }, [ + item2.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), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -42077,7 +42084,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -42087,7 +42094,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "托盘码:" + vue.toDisplayString(item.trayCode + `(${item.trayName})`), + "托盘码:" + vue.toDisplayString(item2.trayCode + `(${item2.trayName})`), 1 /* TEXT */ ) @@ -42117,7 +42124,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item.orderCode), + "订单自编号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -42127,7 +42134,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "商场名称:" + vue.toDisplayString(item.marketName), + "商场名称:" + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -42137,7 +42144,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item.incomingBatch), + "批次号:" + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -42147,7 +42154,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) @@ -42157,38 +42164,38 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总包数:" + vue.toDisplayString(item.totalNum), + "总包数:" + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "扫码数:" + vue.toDisplayString(item.shelfNum), + "扫码数:" + vue.toDisplayString(item2.shelfNum), 1 /* TEXT */ ) ]), vue.createElementVNode("image", { class: "qtimgzt", - src: item.totalNum == item.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" + src: item2.totalNum == item2.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" }, null, 8, ["src"]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 按件移库 "), Number(vue.unref(pagetype)) === 2 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(vue.unref(scanlist), (item2) => { + vue.renderList(vue.unref(scanlist), (item22) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item2" }, [ vue.createElementVNode("view", { class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item22), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item2.orderCode), + "订单自编号:" + vue.toDisplayString(item22.orderCode), 1 /* TEXT */ ) @@ -42198,7 +42205,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item2.orderPackageCode), + "包条码:" + vue.toDisplayString(item22.orderPackageCode), 1 /* TEXT */ ) @@ -42208,7 +42215,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item2.positionCode), + "库位:" + vue.toDisplayString(item22.positionCode), 1 /* TEXT */ ) @@ -42405,8 +42412,8 @@ This will fail in production if not fixed.`); ]; utils.ttsspke("请选择上架方式"); }); - function gotourl(item) { - let url2 = "/pagesHome/pages/PeopleScanUp/PeopleScanUp?type=" + item.type + "&pageName=" + item.name; + function gotourl(item2) { + let url2 = "/pagesHome/pages/PeopleScanUp/PeopleScanUp?type=" + item2.type + "&pageName=" + item2.name; uni.navigateTo({ url: url2 }); @@ -42430,18 +42437,18 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(typelist), (item) => { + vue.renderList(vue.unref(typelist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "pepleietm", - onClick: ($event) => gotourl(item) + onClick: ($event) => gotourl(item2) }, [ vue.createElementVNode("image", { - src: item.src + src: item2.src }, null, 8, ["src"]), vue.createElementVNode( "view", null, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -42537,15 +42544,15 @@ This will fail in production if not fixed.`); details.uplistarr = fn2(details.uplistarr, "materialCode,incomingBatch"); } }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } function checkmake() { let list = []; - details.Marketlist.map((item) => { - list.push(item == null ? void 0 : item.marketName); + details.Marketlist.map((item2) => { + list.push(item2 == null ? void 0 : item2.marketName); }); tiplists.value.setdetails({ title: "请选择商场", @@ -42616,9 +42623,9 @@ This will fail in production if not fixed.`); }); } details.codelist = response2.data; - details.codelist.map((item) => { - item["enterNum"] = 0; - return item; + details.codelist.map((item2) => { + item2["enterNum"] = 0; + return item2; }); } catch (e2) { } finally { @@ -42626,10 +42633,10 @@ This will fail in production if not fixed.`); } } function confirmlist() { - details.codelist.map((item) => { - if (item.enterNum > 0 && item.enterNum <= item.residueNumber) { - item.marketId = details.Marketlist[details.checkmakindex].marketId; - details.uplistarr.push(item); + details.codelist.map((item2) => { + if (item2.enterNum > 0 && item2.enterNum <= item2.residueNumber) { + item2.marketId = details.Marketlist[details.checkmakindex].marketId; + details.uplistarr.push(item2); } }); details.uplistarr = fn2(details.uplistarr, "materialCode,incomingBatch"); @@ -42711,9 +42718,9 @@ This will fail in production if not fixed.`); title: "上架中" }); let res; - details.uplistarr.map((item) => { - if (item.enterNum > item.totalNumber) { - item.enterNum = item.totalNumber; + details.uplistarr.map((item2) => { + if (item2.enterNum > item2.totalNumber) { + item2.enterNum = item2.totalNumber; } }); if (Number(details.upshelfScanType) == 1 || Number(details.upshelfScanType) == 2) { @@ -42762,24 +42769,24 @@ This will fail in production if not fixed.`); formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:791", "_fnnameArr :>> ", _fnnameArr); formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:792", "tempArr :>> ", tempArr); let result = []; - tempArr.map((item) => { + tempArr.map((item2) => { if (result.length == 0) { - item.enterNum = Number(item.enterNum); - result.push(item); + item2.enterNum = Number(item2.enterNum); + result.push(item2); } else { const _ckindex = result.findIndex((ite) => { return _fnnameArr.every((key) => { formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:809", "key :>> ", key); - formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:810", "ite[key] == item[key] :>> ", ite[key] == item[key]); - return ite[key] == item[key]; + formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:810", "ite[key] == item[key] :>> ", ite[key] == item2[key]); + return ite[key] == item2[key]; }); }); formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:815", "_ckindex :>> ", _ckindex); if (_ckindex != -1) { - result[_ckindex].enterNum += Number(item.enterNum); + result[_ckindex].enterNum += Number(item2.enterNum); } else { - item.enterNum = Number(item.enterNum); - result.push(item); + item2.enterNum = Number(item2.enterNum); + result.push(item2); } } }); @@ -42787,18 +42794,18 @@ This will fail in production if not fixed.`); return result; } let isClick = null; - function inputNum(item) { - formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:833", "item :>> ", item); + function inputNum(item2) { + formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:833", "item :>> ", item2); if (isClick) clearTimeout(isClick); isClick = setTimeout(() => { - item.enterNum = parseInt(item.enterNum); - if (item.enterNum !== item.enterNum) - item.enterNum = 0; - if (item.enterNum >= item.residueNumber) - item.enterNum = item.residueNumber; - if (item.enterNum <= 0) - item.enterNum = 0; + item2.enterNum = parseInt(item2.enterNum); + if (item2.enterNum !== item2.enterNum) + item2.enterNum = 0; + if (item2.enterNum >= item2.residueNumber) + item2.enterNum = item2.residueNumber; + if (item2.enterNum <= 0) + item2.enterNum = 0; clearTimeout(isClick); }, 200); } @@ -42850,17 +42857,17 @@ This will fail in production if not fixed.`); iterator.checked = false; } }; - const handleCheck = (item) => { - if (item.checked) - chooseOrderPackageCodeList.value.splice(chooseOrderPackageCodeList.value.indexOf(item.code), 1); + const handleCheck = (item2) => { + if (item2.checked) + chooseOrderPackageCodeList.value.splice(chooseOrderPackageCodeList.value.indexOf(item2.code), 1); else - chooseOrderPackageCodeList.value.push(item.code); - item.checked = !item.checked; + chooseOrderPackageCodeList.value.push(item2.code); + item2.checked = !item2.checked; }; - const handleDownLoadByOrder = async (item) => { - formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:923", "item :>> ", item); + const handleDownLoadByOrder = async (item2) => { + formatAppLog("log", "at pagesHome/pages/PeopleScanUp/PeopleScanUp.vue:923", "item :>> ", item2); const res = await postorderUpshelfDetailByAllocationId({ - orderCode: item.orderCode, + orderCode: item2.orderCode, allocationId: details.allocationId }); if (res.code !== 200) @@ -42900,10 +42907,10 @@ This will fail in production if not fixed.`); } }); }; - const handleDownLoadByStock = async (item) => { - const content = item.goodsType === 2 ? "零担下架" : "库存品下架"; - details.stockItem = item; - details.enterNum = item.shelfNum; + const handleDownLoadByStock = async (item2) => { + const content = item2.goodsType === 2 ? "零担下架" : "库存品下架"; + details.stockItem = item2; + details.enterNum = item2.shelfNum; downLoadByStock.value.setDetails({ title: content, showPopUp: true, @@ -42957,14 +42964,14 @@ This will fail in production if not fixed.`); } }); }; - const handleDownLoad = (item) => { - const { goodsType } = item; + const handleDownLoad = (item2) => { + const { goodsType } = item2; if (goodsType === 0 || goodsType === 1) - handleDownLoadByOrder(item); + handleDownLoadByOrder(item2); else if (goodsType === 2) - handleDownLoadByStock(item); + handleDownLoadByStock(item2); else if (goodsType === 3) - handleDownLoadByStock(item); + handleDownLoadByStock(item2); }; const { checkinarr, @@ -43143,9 +43150,9 @@ This will fail in production if not fixed.`); vue.unref(checkstate) == 1 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(uplistarr), (item) => { + vue.renderList(vue.unref(uplistarr), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item1" }, [ - item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -43153,27 +43160,27 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.orderPackageCode), + "包条码:" + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true), - item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 定制品 "), - item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock( + item2.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 2 }, [ @@ -43182,20 +43189,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "服务号:" + vue.toDisplayString(item.serviceNum), + "服务号:" + vue.toDisplayString(item2.serviceNum), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -43203,7 +43210,7 @@ This will fail in production if not fixed.`); ], 64 /* STABLE_FRAGMENT */ - )) : item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock( + )) : item2.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 3 }, [ @@ -43213,7 +43220,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "运单号:" + vue.toDisplayString(item.waybillNo), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -43223,7 +43230,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -43231,7 +43238,7 @@ This will fail in production if not fixed.`); ], 64 /* STABLE_FRAGMENT */ - )) : item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock( + )) : item2.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 4 }, [ @@ -43241,7 +43248,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料编码:" + vue.toDisplayString(item.materialCode), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -43251,7 +43258,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -43261,7 +43268,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode || "暂无数据"), + "订单号:" + vue.toDisplayString(item2.orderCode || "暂无数据"), 1 /* TEXT */ ) @@ -43275,7 +43282,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item.incomingBatch), + "批次号:" + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -43289,14 +43296,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总包数:" + vue.toDisplayString(item.totalNumber), + "总包数:" + vue.toDisplayString(item2.totalNumber), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "上架数:" + vue.toDisplayString(item.enterNum), + "上架数:" + vue.toDisplayString(item2.enterNum), 1 /* TEXT */ ) @@ -43309,9 +43316,9 @@ This will fail in production if not fixed.`); vue.unref(checkstate) == 2 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item2" }, [ - item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -43319,27 +43326,27 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.orderPackageCode), + "包条码:" + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true), - item.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.goodsType == 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 定制品 "), - item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock( + item2.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 2 }, [ @@ -43348,20 +43355,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "服务号:" + vue.toDisplayString(item.serviceNum), + "服务号:" + vue.toDisplayString(item2.serviceNum), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -43377,7 +43384,7 @@ This will fail in production if not fixed.`); ], 64 /* STABLE_FRAGMENT */ - )) : item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock( + )) : item2.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 3 }, [ @@ -43387,7 +43394,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "运单号:" + vue.toDisplayString(item.waybillNo), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -43397,7 +43404,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -43413,7 +43420,7 @@ This will fail in production if not fixed.`); ], 64 /* STABLE_FRAGMENT */ - )) : item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock( + )) : item2.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 4 }, [ @@ -43423,7 +43430,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料编码:" + vue.toDisplayString(item.materialCode), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -43433,7 +43440,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -43451,7 +43458,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -43461,7 +43468,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "商场名称:" + vue.toDisplayString(item.marketName), + "商场名称:" + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -43471,7 +43478,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item.incomingBatch), + "批次号:" + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -43489,14 +43496,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总包数:" + vue.toDisplayString(item.totalNum), + "总包数:" + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "上架数:" + vue.toDisplayString(item.shelfNum), + "上架数:" + vue.toDisplayString(item2.shelfNum), 1 /* TEXT */ ) @@ -43504,12 +43511,12 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "downloadBtn", - onClick: ($event) => handleDownLoad(item) + onClick: ($event) => handleDownLoad(item2) }, " 下架 ", 8, ["onClick"]), Number(vue.unref(details).upshelfScanType) != 3 ? (vue.openBlock(), vue.createElementBlock("image", { key: 5, class: "qtimgzt", - src: item.totalNum == item.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" + src: item2.totalNum == item2.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" }, null, 8, ["src"])) : vue.createCommentVNode("v-if", true) ]); }), @@ -43603,7 +43610,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(codelist), (item, index2) => { + vue.renderList(vue.unref(codelist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items", onClick: ($event) => setchecl(index2) @@ -43618,7 +43625,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.materialCode || "暂无数据"), + vue.toDisplayString(item2.materialCode || "暂无数据"), 1 /* TEXT */ ) @@ -43630,7 +43637,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.materialName || "暂无数据"), + vue.toDisplayString(item2.materialName || "暂无数据"), 1 /* TEXT */ ) @@ -43646,7 +43653,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -43658,7 +43665,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.residueNumber || 0) + "件", + vue.toDisplayString(item2.residueNumber || 0) + "件", 1 /* TEXT */ ) @@ -43668,7 +43675,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.totalNumber || 0) + "件", + vue.toDisplayString(item2.totalNumber || 0) + "件", 1 /* TEXT */ ) @@ -43680,7 +43687,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.materialCode || "暂无数据"), + vue.toDisplayString(item2.materialCode || "暂无数据"), 1 /* TEXT */ ) @@ -43692,7 +43699,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.materialName || "暂无数据"), + vue.toDisplayString(item2.materialName || "暂无数据"), 1 /* TEXT */ ) @@ -43704,7 +43711,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.incomingBatch || "暂无数据"), + vue.toDisplayString(item2.incomingBatch || "暂无数据"), 1 /* TEXT */ ) @@ -43719,10 +43726,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "title" }, "上架数:"), vue.withDirectives(vue.createElementVNode("input", { placeholder: "请输入上架数", - "onUpdate:modelValue": ($event) => item.enterNum = $event, - onInput: ($event) => inputNum(item) + "onUpdate:modelValue": ($event) => item2.enterNum = $event, + onInput: ($event) => inputNum(item2) }, null, 40, ["onUpdate:modelValue", "onInput"]), [ - [vue.vModelText, item.enterNum] + [vue.vModelText, item2.enterNum] ]) ]) ]), @@ -43733,7 +43740,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.list, (ite) => { + vue.renderList(item2.list, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itembox" }, [ vue.createElementVNode("view", null, [ vue.createTextVNode("库位: "), @@ -43874,24 +43881,24 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).orderPackageCodeList, (item) => { + vue.renderList(vue.unref(details).orderPackageCodeList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.code, + key: item2.code, class: "downloadRow", - onClick: ($event) => handleCheck(item) + onClick: ($event) => handleCheck(item2) }, [ - !item.checked ? (vue.openBlock(), vue.createElementBlock("image", { + !item2.checked ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, src: "/pagesHome/static/downnocheck.png" })) : vue.createCommentVNode("v-if", true), - item.checked ? (vue.openBlock(), vue.createElementBlock("image", { + item2.checked ? (vue.openBlock(), vue.createElementBlock("image", { key: 1, src: "/pagesHome/static/downcheck.png" })) : vue.createCommentVNode("v-if", true), vue.createElementVNode( "view", null, - vue.toDisplayString(item.code), + vue.toDisplayString(item2.code), 1 /* TEXT */ ) @@ -44038,9 +44045,9 @@ This will fail in production if not fixed.`); }); details.items = response2.data; } - function goCustomerOrdersDetails(item) { + function goCustomerOrdersDetails(item2) { uni.navigateTo({ - url: "/pagesHome/pages/StockUplist/StockUplist?item=" + JSON.stringify(item) + "&id=" + item.reservationId + "&stockupId=" + details.id + "&stockupAllocationId=" + details.stockUpStorageInfo.stockupAllocationId + "&stockupAllocationName=" + details.stockUpStorageInfo.stockupAllocationName + url: "/pagesHome/pages/StockUplist/StockUplist?item=" + JSON.stringify(item2) + "&id=" + item2.reservationId + "&stockupId=" + details.id + "&stockupAllocationId=" + details.stockUpStorageInfo.stockupAllocationId + "&stockupAllocationName=" + details.stockUpStorageInfo.stockupAllocationName }); } const { items, datalist } = vue.toRefs(details); @@ -44149,16 +44156,16 @@ This will fail in production if not fixed.`); vue.unref(datalist).length !== 0 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "its", - onClick: ($event) => goCustomerOrdersDetails(item), - key: item + onClick: ($event) => goCustomerOrdersDetails(item2), + key: item2 }, [ vue.createElementVNode( "view", { class: "titl" }, - " 客户:" + vue.toDisplayString(item.customer), + " 客户:" + vue.toDisplayString(item2.customer), 1 /* TEXT */ ), @@ -44167,7 +44174,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货是否完成:"), vue.createTextVNode( - vue.toDisplayString(item.stockStatusName), + vue.toDisplayString(item2.stockStatusName), 1 /* TEXT */ ) @@ -44175,7 +44182,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "备货类型:"), vue.createTextVNode( - vue.toDisplayString(item.typeServiceStr), + vue.toDisplayString(item2.typeServiceStr), 1 /* TEXT */ ) @@ -44185,7 +44192,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "商场名称:"), vue.createTextVNode( - vue.toDisplayString(item.mallName || "暂无数据"), + vue.toDisplayString(item2.mallName || "暂无数据"), 1 /* TEXT */ ) @@ -44197,7 +44204,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.orderNum), + vue.toDisplayString(item2.orderNum), 1 /* TEXT */ ) @@ -44209,7 +44216,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.inventoryNub || 0), + vue.toDisplayString(item2.inventoryNub || 0), 1 /* TEXT */ ) @@ -44219,7 +44226,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.planNum + item.inventoryNub), + vue.toDisplayString(item2.planNum + item2.inventoryNub), 1 /* TEXT */ ) @@ -44229,7 +44236,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.stockupNum || 0), + vue.toDisplayString(item2.stockupNum || 0), 1 /* TEXT */ ) @@ -44387,7 +44394,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(codelist), (item, index2) => { + vue.renderList(vue.unref(codelist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itembox" }, [ vue.createElementVNode("view", { class: "topon1" }, [ vue.createElementVNode( @@ -44408,7 +44415,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "滞留车次:" + vue.toDisplayString(item.retentionCarNo), + "滞留车次:" + vue.toDisplayString(item2.retentionCarNo), 1 /* TEXT */ ) @@ -44421,7 +44428,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -44431,7 +44438,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包件码:" + vue.toDisplayString(item.packageCode), + "包件码:" + vue.toDisplayString(item2.packageCode), 1 /* TEXT */ ) @@ -44502,9 +44509,9 @@ This will fail in production if not fixed.`); if (state === 2) utils.ttsspke("请扫描合托托盘"); } - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } async function scandata() { @@ -44730,31 +44737,31 @@ This will fail in production if not fixed.`); vue.unref(renderList) ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(renderList), (item, index2) => { + vue.renderList(vue.unref(renderList), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itembox" }, [ vue.createCommentVNode(" 计数 "), vue.createCommentVNode(' \r\n {{index+1}}\r\n '), vue.createCommentVNode(" 定制品 "), - item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ + item2.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), + "服务号:" + vue.toDisplayString(item2.serviceNum), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -44772,20 +44779,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) ]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 零担 "), - item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, [ + item2.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), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -44795,7 +44802,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -44813,20 +44820,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) ]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 库存品 "), - item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2 }, [ + item2.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), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -44836,7 +44843,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -44854,7 +44861,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -44864,7 +44871,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "商场名称:" + vue.toDisplayString(item.marketName), + "商场名称:" + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -44874,7 +44881,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item.incomingBatch), + "批次号:" + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -44884,7 +44891,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) @@ -44894,14 +44901,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总包数:" + vue.toDisplayString(item.totalNum), + "总包数:" + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "已扫数量:" + vue.toDisplayString(item.shelfNum), + "已扫数量:" + vue.toDisplayString(item2.shelfNum), 1 /* TEXT */ ) @@ -44952,9 +44959,9 @@ This will fail in production if not fixed.`); uni.$off("scancodedate"); init(); }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } async function init() { @@ -45020,7 +45027,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList((_b = vue.unref(resdata)) == null ? void 0 : _b.list, (item, index2) => { + vue.renderList((_b = vue.unref(resdata)) == null ? void 0 : _b.list, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itembox" }, [ vue.createElementVNode("view", { class: "topon1" }, [ vue.createElementVNode( @@ -45034,7 +45041,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - class: vue.normalizeClass(item.isFleeing == "0" ? "xzc" : "") + class: vue.normalizeClass(item2.isFleeing == "0" ? "xzc" : "") }, "正常", 2 @@ -45043,7 +45050,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - class: vue.normalizeClass(item.isFleeing == "1" ? "xze" : "") + class: vue.normalizeClass(item2.isFleeing == "1" ? "xze" : "") }, "异常", 2 @@ -45052,26 +45059,26 @@ This will fail in production if not fixed.`); ]) ]), vue.createCommentVNode(" 定制品 "), - item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ + item2.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), + "服务号:" + vue.toDisplayString(item2.serviceNum), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -45089,20 +45096,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) ]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 零担 "), - item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, [ + item2.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), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -45112,7 +45119,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -45130,20 +45137,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) ]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 库存品 "), - item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2 }, [ + item2.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), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -45153,7 +45160,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -45171,7 +45178,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -45181,7 +45188,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "商场名称:" + vue.toDisplayString(item.marketName), + "商场名称:" + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -45191,7 +45198,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item.incomingBatch), + "批次号:" + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -45201,7 +45208,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) @@ -45211,14 +45218,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总包数:" + vue.toDisplayString(item.totalNum), + "总包数:" + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "已扫数量:" + vue.toDisplayString(item.shelfNum), + "已扫数量:" + vue.toDisplayString(item2.shelfNum), 1 /* TEXT */ ) @@ -45259,8 +45266,8 @@ This will fail in production if not fixed.`); onShow(() => { uni.$off("scancodedate"); }); - function gotourl(item) { - let url2 = "/pagesHome/pages/DownGoods/DownGoods?type=" + item.type + "&pageName=" + item.name; + function gotourl(item2) { + let url2 = "/pagesHome/pages/DownGoods/DownGoods?type=" + item2.type + "&pageName=" + item2.name; uni.navigateTo({ url: url2 }); @@ -45284,18 +45291,18 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(typelist), (item) => { + vue.renderList(vue.unref(typelist), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "pepleietm", - onClick: ($event) => gotourl(item) + onClick: ($event) => gotourl(item2) }, [ vue.createElementVNode("image", { - src: item.src + src: item2.src }, null, 8, ["src"]), vue.createElementVNode( "view", null, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -45379,9 +45386,9 @@ This will fail in production if not fixed.`); function backun() { uni.navigateBack(); } - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } async function initmarke() { @@ -45526,9 +45533,9 @@ This will fail in production if not fixed.`); break; case 3: list = []; - details.checkdatalist.map((item) => { + details.checkdatalist.map((item2) => { list.push({ - orderPackageCode: item.associationValue + orderPackageCode: item2.associationValue }); }); data = { @@ -45538,13 +45545,13 @@ This will fail in production if not fixed.`); break; case 4: list = []; - details.checkdatalist.map((item) => { + details.checkdatalist.map((item2) => { list.push({ - marketId: item.marketId, - materialCode: item.associationValue, - enterNum: item.enterNum, - allocationId: item.allocationId, - incomingBatch: item.incomingBatch + marketId: item2.marketId, + materialCode: item2.associationValue, + enterNum: item2.enterNum, + allocationId: item2.allocationId, + incomingBatch: item2.incomingBatch }); }); data = { @@ -45554,12 +45561,12 @@ This will fail in production if not fixed.`); break; case 5: list = []; - details.checkdatalist.map((item) => { + details.checkdatalist.map((item2) => { list.push({ - waybillCode: item.waybillNumber, - orderCode: item.associationValue, - enterNum: item.enterNum, - allocationId: item.allocationId + waybillCode: item2.waybillNumber, + orderCode: item2.associationValue, + enterNum: item2.enterNum, + allocationId: item2.allocationId }); }); data = { @@ -45589,28 +45596,28 @@ This will fail in production if not fixed.`); }); } } - function checkite(item) { - if (details.checkdatalist.indexOf(item) == -1) { - details.checkdatalist.push(item); + function checkite(item2) { + if (details.checkdatalist.indexOf(item2) == -1) { + details.checkdatalist.push(item2); } else { - details.checkdatalist.splice(details.checkdatalist.indexOf(item), 1); + details.checkdatalist.splice(details.checkdatalist.indexOf(item2), 1); } } function allquanxuan() { if (details.datalist.length == details.checkdatalist.length) { details.checkdatalist = []; } else { - details.datalist.map((item) => { - if (details.checkdatalist.indexOf(item) == -1) { - details.checkdatalist.push(item); + details.datalist.map((item2) => { + if (details.checkdatalist.indexOf(item2) == -1) { + details.checkdatalist.push(item2); } }); } } function confirmlist() { let sfcg = false; - details.codelist.map((item) => { - if (item.enterNum > item.num) { + details.codelist.map((item2) => { + if (item2.enterNum > item2.num) { sfcg = true; } }); @@ -45633,10 +45640,10 @@ This will fail in production if not fixed.`); }); return; } - details.codelist.map((item) => { - if (item.enterNum > 0) { - details.datalist.push(item); - details.checkdatalist.push(item); + details.codelist.map((item2) => { + if (item2.enterNum > 0) { + details.datalist.push(item2); + details.checkdatalist.push(item2); } }); details.showstate = 0; @@ -45687,8 +45694,8 @@ This will fail in production if not fixed.`); } function checkmarke() { let list = []; - details.Marketlist.map((item) => { - list.push(item == null ? void 0 : item.marketName); + details.Marketlist.map((item2) => { + list.push(item2 == null ? void 0 : item2.marketName); }); tiplists.value.setdetails({ title: "请选择商场", @@ -45923,16 +45930,16 @@ This will fail in production if not fixed.`); details.pageType != 2 && details.pageType != 1 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(datalist), (item, index2) => { + vue.renderList(vue.unref(datalist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itembox" }, [ vue.createElementVNode("view", { class: "topon1", - onClick: ($event) => checkite(item) + onClick: ($event) => checkite(item2) }, [ vue.createElementVNode("view", null, [ details.pageType != 2 && details.pageType != 1 ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, - src: vue.unref(checkdatalist).indexOf(item) == -1 ? "/pagesHome/static/downnocheck.png" : "/pagesHome/static/downcheck.png" + src: vue.unref(checkdatalist).indexOf(item2) == -1 ? "/pagesHome/static/downnocheck.png" : "/pagesHome/static/downcheck.png" }, null, 8, ["src"])) : vue.createCommentVNode("v-if", true), vue.createElementVNode( "view", @@ -45945,18 +45952,18 @@ This will fail in production if not fixed.`); ], 8, ["onClick"]), vue.createElementVNode("view", { class: "topon2", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/checi.png" }), vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item == null ? void 0 : item.orderCode), + "订单自编号:" + vue.toDisplayString(item2 == null ? void 0 : item2.orderCode), 1 /* TEXT */ ) ], 8, ["onClick"]), - (item == null ? void 0 : item.materialCode) && vue.unref(pageType) == 4 ? (vue.openBlock(), vue.createElementBlock("view", { + (item2 == null ? void 0 : item2.materialCode) && vue.unref(pageType) == 4 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "topon2" }, [ @@ -45964,12 +45971,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料编码:" + vue.toDisplayString(item == null ? void 0 : item.materialCode), + "物料编码:" + vue.toDisplayString(item2 == null ? void 0 : item2.materialCode), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true), - (item == null ? void 0 : item.goodsName) ? (vue.openBlock(), vue.createElementBlock("view", { + (item2 == null ? void 0 : item2.goodsName) ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "topon2" }, [ @@ -45977,12 +45984,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item == null ? void 0 : item.goodsName), + "物料名称:" + vue.toDisplayString(item2 == null ? void 0 : item2.goodsName), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true), - (item == null ? void 0 : item.marketName) ? (vue.openBlock(), vue.createElementBlock("view", { + (item2 == null ? void 0 : item2.marketName) ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "topon2" }, [ @@ -45990,12 +45997,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "商场名称:" + vue.toDisplayString(item == null ? void 0 : item.marketName), + "商场名称:" + vue.toDisplayString(item2 == null ? void 0 : item2.marketName), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true), - (item == null ? void 0 : item.incomingBatch) ? (vue.openBlock(), vue.createElementBlock("view", { + (item2 == null ? void 0 : item2.incomingBatch) ? (vue.openBlock(), vue.createElementBlock("view", { key: 3, class: "topon2" }, [ @@ -46003,12 +46010,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item == null ? void 0 : item.incomingBatch), + "批次号:" + vue.toDisplayString(item2 == null ? void 0 : item2.incomingBatch), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true), - (item == null ? void 0 : item.positionCode) ? (vue.openBlock(), vue.createElementBlock("view", { + (item2 == null ? void 0 : item2.positionCode) ? (vue.openBlock(), vue.createElementBlock("view", { key: 4, class: "topon2" }, [ @@ -46016,12 +46023,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "库位信息:" + vue.toDisplayString(item == null ? void 0 : item.positionCode), + "库位信息:" + vue.toDisplayString(item2 == null ? void 0 : item2.positionCode), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true), - (item == null ? void 0 : item.associationId) && vue.unref(pageType) != "4" ? (vue.openBlock(), vue.createElementBlock("view", { + (item2 == null ? void 0 : item2.associationId) && vue.unref(pageType) != "4" ? (vue.openBlock(), vue.createElementBlock("view", { key: 5, class: "topon2" }, [ @@ -46029,12 +46036,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item == null ? void 0 : item.associationId), + "订单号:" + vue.toDisplayString(item2 == null ? void 0 : item2.associationId), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true), - (item == null ? void 0 : item.associationValue) && vue.unref(pageType) != "4" ? (vue.openBlock(), vue.createElementBlock("view", { + (item2 == null ? void 0 : item2.associationValue) && vue.unref(pageType) != "4" ? (vue.openBlock(), vue.createElementBlock("view", { key: 6, class: "topon2" }, [ @@ -46042,12 +46049,12 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item == null ? void 0 : item.associationValue), + "包条码:" + vue.toDisplayString(item2 == null ? void 0 : item2.associationValue), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true), - (item == null ? void 0 : item.orderPackageCode) && vue.unref(pageType) != "4" ? (vue.openBlock(), vue.createElementBlock("view", { + (item2 == null ? void 0 : item2.orderPackageCode) && vue.unref(pageType) != "4" ? (vue.openBlock(), vue.createElementBlock("view", { key: 7, class: "topon2" }, [ @@ -46055,7 +46062,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item == null ? void 0 : item.orderPackageCode), + "包条码:" + vue.toDisplayString(item2 == null ? void 0 : item2.orderPackageCode), 1 /* TEXT */ ) @@ -46063,10 +46070,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "topon2" }, [ vue.createElementVNode("image", { src: "/pagesHome/static/checi.png" }), vue.createElementVNode("view", { class: "" }, " 托盘信息: "), - item.trayCode || item.trayName ? (vue.openBlock(), vue.createElementBlock( + item2.trayCode || item2.trayName ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0 }, - vue.toDisplayString((item.trayCode || "暂无数据") + `(${item.trayName || "暂无数据"})`), + vue.toDisplayString((item2.trayCode || "暂无数据") + `(${item2.trayName || "暂无数据"})`), 1 /* TEXT */ )) : (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, " 暂无数据 ")) @@ -46076,14 +46083,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总包数:" + vue.toDisplayString(item.num), + "总包数:" + vue.toDisplayString(item2.num), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "已录数:" + vue.toDisplayString(item.enterNum), + "已录数:" + vue.toDisplayString(item2.enterNum), 1 /* TEXT */ ) @@ -46095,29 +46102,29 @@ This will fail in production if not fixed.`); )) : (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(vue.unref(datalist), (item, index2) => { + vue.renderList(vue.unref(datalist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item2" }, [ vue.createCommentVNode(" 定制品 "), - item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ + item2.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), + "服务号:" + vue.toDisplayString(item2.serviceNum), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item.orderCode), + "订单自编号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -46125,13 +46132,13 @@ This will fail in production if not fixed.`); vue.createCommentVNode(' \r\n \r\n 剩余数量:{{item.totalNum-item.shelfNum}}\r\n ') ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 零担 "), - item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, [ + item2.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), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -46141,7 +46148,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item.orderCode), + "订单自编号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -46149,13 +46156,13 @@ This will fail in production if not fixed.`); vue.createCommentVNode(' \r\n \r\n 剩余数量:{{item.totalNum-item.shelfNum}}\r\n ') ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 库存品 "), - item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2 }, [ + item2.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), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -46165,7 +46172,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -46175,7 +46182,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item.orderCode), + "订单自编号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -46185,7 +46192,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "商场名称:" + vue.toDisplayString(item.marketName), + "商场名称:" + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -46195,7 +46202,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item.incomingBatch), + "批次号:" + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -46206,21 +46213,21 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总包数:" + vue.toDisplayString(item.totalNum), + "总包数:" + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "扫码数:" + vue.toDisplayString(item.shelfNum), + "扫码数:" + vue.toDisplayString(item2.shelfNum), 1 /* TEXT */ ) ]), vue.createElementVNode("image", { class: "qtimgzt", - src: item.totalNum == item.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" + src: item2.totalNum == item2.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" }, null, 8, ["src"]) ]); }), @@ -46297,14 +46304,14 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(codelist), (item, index2) => { + vue.renderList(vue.unref(codelist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "type1s" }, [ vue.createElementVNode("view", null, "物料名称:"), vue.createElementVNode( "view", null, - vue.toDisplayString(item.materialName), + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -46314,7 +46321,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.num || 0) + "件", + vue.toDisplayString(item2.num || 0) + "件", 1 /* TEXT */ ) @@ -46324,7 +46331,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.incomingBatch), + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -46334,7 +46341,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.marketName), + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -46344,7 +46351,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.warehouseName), + vue.toDisplayString(item2.warehouseName), 1 /* TEXT */ ) @@ -46354,17 +46361,17 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.positionCode), + vue.toDisplayString(item2.positionCode), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "type1s" }, [ vue.createElementVNode("view", null, "托盘信息:"), - item.trayCode || item.trayName ? (vue.openBlock(), vue.createElementBlock( + item2.trayCode || item2.trayName ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0 }, - vue.toDisplayString((item.trayCode || "暂无数据") + `(${item.trayName || "暂无数据"})`), + vue.toDisplayString((item2.trayCode || "暂无数据") + `(${item2.trayName || "暂无数据"})`), 1 /* TEXT */ )) : (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, " 暂无数据 ")) @@ -46374,9 +46381,9 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, "下架数:"), vue.withDirectives(vue.createElementVNode("input", { placeholder: "请输入下架数", - "onUpdate:modelValue": ($event) => item.enterNum = $event + "onUpdate:modelValue": ($event) => item2.enterNum = $event }, null, 8, ["onUpdate:modelValue"]), [ - [vue.vModelText, item.enterNum] + [vue.vModelText, item2.enterNum] ]) ]) ]) @@ -46471,9 +46478,9 @@ This will fail in production if not fixed.`); return; details.priceList = res.data; } - function goValueaddedServicePage(item) { + function goValueaddedServicePage(item2) { uni.navigateTo({ - url: "/pagesHome/pages/createAddServe/createAddServe?reservationId=" + details.items.id + "&deliveryId=" + details.reservationId + "&editId=" + item.addvalueDetailId + "&addvalueType=" + item.addvalueId + url: "/pagesHome/pages/createAddServe/createAddServe?reservationId=" + details.items.id + "&deliveryId=" + details.reservationId + "&editId=" + item2.addvalueDetailId + "&addvalueType=" + item2.addvalueId }); } function goaddserve() { @@ -46600,34 +46607,34 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).priceList, (item) => { + vue.renderList(vue.unref(details).priceList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itemboxs" }, [ vue.createElementVNode("view", { class: "topdivs" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode( "view", null, - vue.toDisplayString(vue.unref(details).priceType[Number(item.addvalueId) - 1].typename), + vue.toDisplayString(vue.unref(details).priceType[Number(item2.addvalueId) - 1].typename), 1 /* TEXT */ ), vue.createElementVNode("view", null, [ - item.floolNum ? (vue.openBlock(), vue.createElementBlock( + item2.floolNum ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0 }, - vue.toDisplayString(item.floolNum + " 楼"), + vue.toDisplayString(item2.floolNum + " 楼"), 1 /* TEXT */ - )) : item.distance && item.addvalueId == "2" ? (vue.openBlock(), vue.createElementBlock( + )) : item2.distance && item2.addvalueId == "2" ? (vue.openBlock(), vue.createElementBlock( "text", { key: 1 }, - vue.toDisplayString(item.distance + " km"), + vue.toDisplayString(item2.distance + " km"), 1 /* TEXT */ - )) : item.distance ? (vue.openBlock(), vue.createElementBlock( + )) : item2.distance ? (vue.openBlock(), vue.createElementBlock( "text", { key: 2 }, - vue.toDisplayString(item.distance || " m"), + vue.toDisplayString(item2.distance || " m"), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true) @@ -46635,18 +46642,18 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.fee || "0") + "元", + vue.toDisplayString(item2.fee || "0") + "元", 1 /* TEXT */ ) ]), vue.createElementVNode("view", { style: { "display": "inline-flex" } }, [ vue.createElementVNode("image", { - onClick: ($event) => goValueaddedServicePage(item), + onClick: ($event) => goValueaddedServicePage(item2), src: "/pagesHome/static/editorder.png" }, null, 8, ["onClick"]), vue.createElementVNode("view", { - onClick: ($event) => removeItem(item), + onClick: ($event) => removeItem(item2), style: { "background-color": "#fff", "color": "#178af2", "margin": "0 0 0 20px", "border": "1px solid #178af2" } }, " 取消 ", 8, ["onClick"]) ]) @@ -46656,7 +46663,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.packageEntityList, (ite) => { + vue.renderList(item2.packageEntityList, (ite) => { return vue.openBlock(), vue.createElementBlock("view", { class: "minitem" }, [ vue.createElementVNode("view", null, [ vue.createTextVNode("货物名称:"), @@ -46958,7 +46965,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(datalist), (item) => { + vue.renderList(vue.unref(datalist), (item2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, @@ -46978,9 +46985,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: #ff0000;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: #ff0000;" : "") }, - vue.toDisplayString(item.dataCode) + vue.toDisplayString(item.isFleeing ? "(窜)" : ""), + vue.toDisplayString(item2.dataCode) + vue.toDisplayString(item2.isFleeing ? "(窜)" : ""), 5 /* TEXT, STYLE */ ) @@ -46994,7 +47001,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.serviceNumber), + vue.toDisplayString(item2.serviceNumber), 1 /* TEXT */ ) @@ -47004,7 +47011,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ), @@ -47014,7 +47021,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ), @@ -47024,14 +47031,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "weish" }, - vue.toDisplayString(item.orderTotalNum - item.scanNum), + vue.toDisplayString(item2.orderTotalNum - item2.scanNum), 1 /* TEXT */ ), vue.createElementVNode("view", null, "未扫") ]) ]), - item.orderTotalNum != item.scanNum ? (vue.openBlock(), vue.createElementBlock("image", { + item2.orderTotalNum != item2.scanNum ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, class: "weiqt", src: "/pagesHome/static/weiqitao.png" @@ -47056,7 +47063,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ) @@ -47070,7 +47077,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -47080,7 +47087,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum), + vue.toDisplayString(item2.orderTotalNum), 1 /* TEXT */ ), @@ -47090,7 +47097,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum), + vue.toDisplayString(item2.scanNum), 1 /* TEXT */ ), @@ -47110,7 +47117,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataCode), + vue.toDisplayString(item2.dataCode), 1 /* TEXT */ ) @@ -47122,7 +47129,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.dataName), + vue.toDisplayString(item2.dataName), 1 /* TEXT */ ) @@ -47133,7 +47140,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.incomingBatch), + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -47144,7 +47151,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -47155,7 +47162,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.cargoUnit), + vue.toDisplayString(item2.cargoUnit), 1 /* TEXT */ ) @@ -47165,7 +47172,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "zhon" }, - vue.toDisplayString(item.orderTotalNum || 0), + vue.toDisplayString(item2.orderTotalNum || 0), 1 /* TEXT */ ), @@ -47175,7 +47182,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "yish" }, - vue.toDisplayString(item.scanNum || 0), + vue.toDisplayString(item2.scanNum || 0), 1 /* TEXT */ ), @@ -47277,9 +47284,9 @@ This will fail in production if not fixed.`); details.typestate = Number(details.addvalueType); } }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } onShow(async () => { @@ -47335,8 +47342,8 @@ This will fail in production if not fixed.`); if (details.typestate == 1) return; let list = []; - const _flag = details.scanpack.every((item) => { - if (item.orderPackageCode === details.scancode) { + const _flag = details.scanpack.every((item2) => { + if (item2.orderPackageCode === details.scancode) { uni.showToast({ title: "重复扫描", icon: "none" @@ -47344,7 +47351,7 @@ This will fail in production if not fixed.`); utils.ttsspke("重复扫描"); return false; } - list.push(item.id); + list.push(item2.id); return true; }); if (!_flag) @@ -47465,8 +47472,8 @@ This will fail in production if not fixed.`); icon: "none" }); let list = []; - details.priceType.map((item) => { - list.push(item.typename); + details.priceType.map((item2) => { + list.push(item2.typename); }); tiplists.value.setdetails({ title: "请选择增值服务类型", @@ -47518,19 +47525,19 @@ This will fail in production if not fixed.`); return response2; } let timer = null; - function inputNum(item) { + function inputNum(item2) { if (timer) clearTimeout(timer); timer = setTimeout(() => { - formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:458", "item :>> ", item); - let _value = parseInt(item.zeroQuantity); + formatAppLog("log", "at pagesHome/pages/createAddServe/createAddServe.vue:458", "item :>> ", item2); + let _value = parseInt(item2.zeroQuantity); if (_value < 0) _value = 0; - else if (_value > item.maxQuantity) - _value = item.maxQuantity; + else if (_value > item2.maxQuantity) + _value = item2.maxQuantity; else if (_value !== _value) _value = 0; - item.zeroQuantity = _value; + item2.zeroQuantity = _value; clearTimeout(timer); }, 200); } @@ -47705,7 +47712,7 @@ This will fail in production if not fixed.`); vue.unref(typestate) == 1 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(allpack), (item, index2) => { + vue.renderList(vue.unref(allpack), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itemscbox" }, [ vue.createElementVNode("view", { class: "types1" }, [ vue.createElementVNode( @@ -47722,15 +47729,15 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "types2" }, [ vue.createElementVNode("image", { src: "/pagesHome/static/scanicon1.png" }), vue.createElementVNode("view", { - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) - }, "订单编号:" + vue.toDisplayString(item.orderCode), 9, ["onClick"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) + }, "订单编号:" + vue.toDisplayString(item2.orderCode), 9, ["onClick"]) ]), vue.createElementVNode("view", { class: "types2" }, [ vue.createElementVNode("image", { src: "/pagesHome/static/scanicon1.png" }), - Number(item.conditions) !== 3 ? (vue.openBlock(), vue.createElementBlock( + Number(item2.conditions) !== 3 ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0 }, - "包件码:" + vue.toDisplayString(item.orderPackageCode), + "包件码:" + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ )) : (vue.openBlock(), vue.createElementBlock( @@ -47741,7 +47748,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总数:" + vue.toDisplayString(item.maxQuantity), + "总数:" + vue.toDisplayString(item2.maxQuantity), 1 /* TEXT */ ) @@ -47750,7 +47757,7 @@ This will fail in production if not fixed.`); /* STABLE_FRAGMENT */ )) ]), - Number(item.conditions) === 3 ? (vue.openBlock(), vue.createElementBlock("view", { + Number(item2.conditions) === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "zeroSignboard" }, [ @@ -47764,7 +47771,7 @@ This will fail in production if not fixed.`); vue.unref(typestate) == 2 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(vue.unref(scanpack), (item, index2) => { + vue.renderList(vue.unref(scanpack), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itemscbox" }, [ vue.createElementVNode("view", { class: "types1" }, [ vue.createElementVNode( @@ -47781,15 +47788,15 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", { class: "types2" }, [ vue.createElementVNode("image", { src: "/pagesHome/static/scanicon1.png" }), vue.createElementVNode("view", { - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) - }, "订单编号:" + vue.toDisplayString(item.orderCode), 9, ["onClick"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) + }, "订单编号:" + vue.toDisplayString(item2.orderCode), 9, ["onClick"]) ]), vue.createElementVNode("view", { class: "types2" }, [ vue.createElementVNode("image", { src: "/pagesHome/static/scanicon1.png" }), - Number(item.conditions) !== 3 ? (vue.openBlock(), vue.createElementBlock( + Number(item2.conditions) !== 3 ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0 }, - "包件码:" + vue.toDisplayString(item.orderPackageCode), + "包件码:" + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ )) : (vue.openBlock(), vue.createElementBlock( @@ -47801,10 +47808,10 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, "数量:"), vue.withDirectives(vue.createElementVNode("input", { type: "number", - "onUpdate:modelValue": ($event) => item.zeroQuantity = $event, - onInput: ($event) => inputNum(item) + "onUpdate:modelValue": ($event) => item2.zeroQuantity = $event, + onInput: ($event) => inputNum(item2) }, null, 40, ["onUpdate:modelValue", "onInput"]), [ - [vue.vModelText, item.zeroQuantity] + [vue.vModelText, item2.zeroQuantity] ]) ]) ], @@ -47812,7 +47819,7 @@ This will fail in production if not fixed.`); /* STABLE_FRAGMENT */ )) ]), - Number(item.conditions) === 3 ? (vue.openBlock(), vue.createElementBlock("view", { + Number(item2.conditions) === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "zeroSignboard" }, [ @@ -47907,25 +47914,25 @@ This will fail in production if not fixed.`); } }); }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } vue.computed(() => { let numbers = 0; - details.scanlist.map((item) => { - if (item.shelfNum) { - numbers += item.shelfNum; - } else if (item.num) { - numbers += item.num; + details.scanlist.map((item2) => { + if (item2.shelfNum) { + numbers += item2.shelfNum; + } else if (item2.num) { + numbers += item2.num; } }); return numbers; }); vue.watchEffect(() => { - details.scanlist.map((item) => { - details.codenumer += item.shelfNum; + details.scanlist.map((item2) => { + details.codenumer += item2.shelfNum; }); formatAppLog("log", "at pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue:280", details.codenumer); }); @@ -48179,29 +48186,29 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(scanlist), (item, index2) => { + vue.renderList(vue.unref(scanlist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item2" }, [ vue.createCommentVNode(" 定制品 "), - item.goodsType === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ + item2.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), + "服务号:" + vue.toDisplayString(item2.serviceNum), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "tpbx", - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item.orderCode), + "订单自编号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -48219,20 +48226,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) ]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 零担 "), - item.goodsType === 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1 }, [ + item2.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), + "运单号:" + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -48242,7 +48249,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item.orderCode), + "订单自编号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -48260,20 +48267,20 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) ]) ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 库存品 "), - item.goodsType === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2 }, [ + item2.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), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -48283,7 +48290,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -48301,7 +48308,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "订单自编号:" + vue.toDisplayString(item.orderCode), + "订单自编号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -48311,7 +48318,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "商场名称:" + vue.toDisplayString(item.marketName), + "商场名称:" + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -48321,7 +48328,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "批次号:" + vue.toDisplayString(item.incomingBatch), + "批次号:" + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -48331,7 +48338,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "剩余数量:" + vue.toDisplayString(item.totalNum - item.shelfNum), + "剩余数量:" + vue.toDisplayString(item2.totalNum - item2.shelfNum), 1 /* TEXT */ ) @@ -48341,21 +48348,21 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "总包数:" + vue.toDisplayString(item.totalNum), + "总包数:" + vue.toDisplayString(item2.totalNum), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "扫码数:" + vue.toDisplayString(item.shelfNum), + "扫码数:" + vue.toDisplayString(item2.shelfNum), 1 /* TEXT */ ) ]), vue.createElementVNode("image", { class: "qtimgzt", - src: item.totalNum == item.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" + src: item2.totalNum == item2.shelfNum ? "/pagesHome/static/qitao.png" : "/pagesHome/static/weiqitao.png" }, null, 8, ["src"]) ]); }), @@ -48546,7 +48553,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(list), (item, index2) => { + vue.renderList(vue.unref(list), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "items" }, [ vue.createElementVNode("view", { class: "rigth" }, [ vue.createElementVNode("view", { class: "type1" }, [ @@ -48555,9 +48562,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.orderPackageCode || "无数据"), + vue.toDisplayString(item2.orderPackageCode || "无数据"), 5 /* TEXT, STYLE */ ) @@ -48569,9 +48576,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.trayName || "无数据"), + vue.toDisplayString(item2.trayName || "无数据"), 5 /* TEXT, STYLE */ ) @@ -48583,9 +48590,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.warehouseName || "无数据"), + vue.toDisplayString(item2.warehouseName || "无数据"), 5 /* TEXT, STYLE */ ) @@ -48597,9 +48604,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.materialCode || "无数据"), + vue.toDisplayString(item2.materialCode || "无数据"), 5 /* TEXT, STYLE */ ) @@ -48611,9 +48618,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.materialName || "无数据"), + vue.toDisplayString(item2.materialName || "无数据"), 5 /* TEXT, STYLE */ ) @@ -48625,9 +48632,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.pinming || "无数据"), + vue.toDisplayString(item2.pinming || "无数据"), 5 /* TEXT, STYLE */ ) @@ -48639,9 +48646,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.areaTitle || "无数据"), + vue.toDisplayString(item2.areaTitle || "无数据"), 5 /* TEXT, STYLE */ ) @@ -48653,9 +48660,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.shelfTitle || "无数据"), + vue.toDisplayString(item2.shelfTitle || "无数据"), 5 /* TEXT, STYLE */ ) @@ -48667,9 +48674,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - style: vue.normalizeStyle(item.isFleeing ? "color: red;" : "") + style: vue.normalizeStyle(item2.isFleeing ? "color: red;" : "") }, - vue.toDisplayString(item.allocationTitle || "无数据"), + vue.toDisplayString(item2.allocationTitle || "无数据"), 5 /* TEXT, STYLE */ ) @@ -48681,7 +48688,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - vue.toDisplayString(item.trayId ? "已扫" : "未扫"), + vue.toDisplayString(item2.trayId ? "已扫" : "未扫"), 1 /* TEXT */ ) @@ -50089,11 +50096,11 @@ This will fail in production if not fixed.`); } this.rules = {}; let z2; - let item; + let item2; for (z2 in rules2) { if (rules2.hasOwnProperty(z2)) { - item = rules2[z2]; - this.rules[z2] = Array.isArray(item) ? item : [item]; + item2 = rules2[z2]; + this.rules[z2] = Array.isArray(item2) ? item2 : [item2]; } } }, @@ -50466,7 +50473,7 @@ This will fail in production if not fixed.`); return new Promise((resolve, reject) => { this.$nextTick(() => { const formItemProps = this.children.map( - (item) => item.prop + (item2) => item2.prop ); this.validateField(formItemProps, (errors) => { if (errors.length) { @@ -50619,9 +50626,9 @@ This will fail in production if not fixed.`); const { code: code2, data } = res; if (code2 === 200) { dataInfo.value = data; - packageList.value = data.list.map((item) => { - item.isChecked = false; - return item; + packageList.value = data.list.map((item2) => { + item2.isChecked = false; + return item2; }); stockList.value = data.stockList; } @@ -50661,34 +50668,34 @@ This will fail in production if not fixed.`); if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true }); let _isReturn = false; - data.map((item) => { + data.map((item2) => { if (_isReturn) return; let text = "! 0 200 200 333 1\r\n"; text += "SETBOLD 1\r\n"; - text += `T 56 0 0 0 ${item.orderCode}\r + text += `T 56 0 0 0 ${item2.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 ${item.customerName}\r + text += `T 55 0 50 60 ${item2.customerName}\r `; text += "LINE 40 80 420 80 3\r\n"; - text += `T 55 0 50 90 ${item.customerAddress}\r + text += `T 55 0 50 90 ${item2.customerAddress}\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 ${item.materialName || item.category}\r + text += `T 55 0 50 120 ${item2.materialName || item2.category}\r `; text += "LINE 0 140 420 140 3\r\n"; text += "B QR 150 150 M 2 U 4\r\n"; - text += `MA,${item.qrCode}\r + text += `MA,${item2.qrCode}\r `; text += "ENDQR\r\n"; - text += `T 55 0 140 260 ${item.qrCode}\r + text += `T 55 0 140 260 ${item2.qrCode}\r `; text += "FORM\r\n"; text += "PRINT\r\n"; @@ -50709,12 +50716,12 @@ This will fail in production if not fixed.`); } }); } - const handleGoTrayDetails = (item) => { - formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:501", "item :>> ", item); - if (!item.trayCode) + const handleGoTrayDetails = (item2) => { + formatAppLog("log", "at pagesHome/pages/orderInquiry/orderInquiry.vue:501", "item :>> ", item2); + if (!item2.trayCode) return; uni.navigateTo({ - url: "/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode=" + item.trayCode + "&trayType=" + item.trayType + url: "/pagesHome/pages/OrderSortingDetail/OrderSortingDetail?trayCode=" + item2.trayCode + "&trayType=" + item2.trayType }); }; return (_ctx, _cache) => { @@ -50993,7 +51000,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(packageList.value, (item) => { + vue.renderList(packageList.value, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -51006,7 +51013,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderPackageCode), + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -51024,7 +51031,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.goodsAllocation), + vue.toDisplayString(item2.goodsAllocation), 1 /* TEXT */ ) @@ -51037,11 +51044,11 @@ This will fail in production if not fixed.`); ), vue.createCommentVNode(" 托盘信息 "), vue.createVNode(_component_uni_td, { - onClick: ($event) => handleGoTrayDetails(item) + onClick: ($event) => handleGoTrayDetails(item2) }, { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.pallet), + vue.toDisplayString(item2.pallet), 1 /* TEXT */ ) @@ -51056,7 +51063,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.thirdProduct), + vue.toDisplayString(item2.thirdProduct), 1 /* TEXT */ ) @@ -51073,7 +51080,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderPackageStatus === "70" ? "已签" : "未签"), + vue.toDisplayString(item2.orderPackageStatus === "70" ? "已签" : "未签"), 1 /* TEXT */ ) @@ -51157,7 +51164,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(stockList.value, (item) => { + vue.renderList(stockList.value, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -51170,7 +51177,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.cargoNumber), + vue.toDisplayString(item2.cargoNumber), 1 /* TEXT */ ) @@ -51188,7 +51195,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -51206,7 +51213,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.marketName), + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -51223,7 +51230,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderPackageStatus === "70" ? "已签" : "未签"), + vue.toDisplayString(item2.orderPackageStatus === "70" ? "已签" : "未签"), 1 /* TEXT */ ) @@ -51874,34 +51881,34 @@ This will fail in production if not fixed.`); if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true }); let _isReturn = false; - data.map((item) => { + data.map((item2) => { if (_isReturn) return; let text = "! 0 200 200 333 1\r\n"; text += "SETBOLD 1\r\n"; - text += `T 56 0 0 0 ${item.orderCode}\r + text += `T 56 0 0 0 ${item2.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 ${item.customerName}\r + text += `T 55 0 50 60 ${item2.customerName}\r `; text += "LINE 40 80 420 80 3\r\n"; - text += `T 55 0 50 90 ${item.customerAddress}\r + text += `T 55 0 50 90 ${item2.customerAddress}\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 ${item.materialName || item.category}\r + text += `T 55 0 50 120 ${item2.materialName || item2.category}\r `; text += "LINE 0 140 420 140 3\r\n"; text += "B QR 150 150 M 2 U 4\r\n"; - text += `MA,${item.qrCode}\r + text += `MA,${item2.qrCode}\r `; text += "ENDQR\r\n"; - text += `T 55 0 140 260 ${item.qrCode}\r + text += `T 55 0 140 260 ${item2.qrCode}\r `; text += "FORM\r\n"; text += "PRINT\r\n"; @@ -52246,7 +52253,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(packageList.value, (item) => { + vue.renderList(packageList.value, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -52259,7 +52266,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderPackageCode), + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -52277,7 +52284,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -52297,7 +52304,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.firsts), + vue.toDisplayString(item2.firsts), 1 /* TEXT */ ) @@ -52315,7 +52322,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.seconds), + vue.toDisplayString(item2.seconds), 1 /* TEXT */ ) @@ -52333,7 +52340,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.thirds), + vue.toDisplayString(item2.thirds), 1 /* TEXT */ ) @@ -52351,7 +52358,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.materialName), + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -52369,7 +52376,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.materialCode), + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -52387,7 +52394,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.warehouseName), + vue.toDisplayString(item2.warehouseName), 1 /* TEXT */ ) @@ -52405,7 +52412,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -52489,7 +52496,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(zeroList.value, (item) => { + vue.renderList(zeroList.value, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -52502,7 +52509,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -52520,7 +52527,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -52538,7 +52545,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.warehouseName), + vue.toDisplayString(item2.warehouseName), 1 /* TEXT */ ) @@ -52556,7 +52563,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -52658,7 +52665,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(stockList.value, (item) => { + vue.renderList(stockList.value, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -52671,7 +52678,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.incomingBatch), + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -52689,7 +52696,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.materialCode), + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -52707,7 +52714,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.materialName), + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -52725,7 +52732,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.marketName), + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -52743,7 +52750,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.warehouseName), + vue.toDisplayString(item2.warehouseName), 1 /* TEXT */ ) @@ -52761,7 +52768,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -52945,34 +52952,34 @@ This will fail in production if not fixed.`); if (!bluetoothInfo.value.name) return bluetoothList.value.setdetails({ isshow: true }); let _isReturn = false; - data.map((item) => { + data.map((item2) => { if (_isReturn) return; let text = "! 0 200 200 333 1\r\n"; text += "SETBOLD 1\r\n"; - text += `T 56 0 0 0 ${item.orderCode}\r + text += `T 56 0 0 0 ${item2.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 ${item.customerName}\r + text += `T 55 0 50 60 ${item2.customerName}\r `; text += "LINE 40 80 420 80 3\r\n"; - text += `T 55 0 50 90 ${item.customerAddress}\r + text += `T 55 0 50 90 ${item2.customerAddress}\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 ${item.materialName || item.category}\r + text += `T 55 0 50 120 ${item2.materialName || item2.category}\r `; text += "LINE 0 140 420 140 3\r\n"; text += "B QR 150 150 M 2 U 4\r\n"; - text += `MA,${item.qrCode}\r + text += `MA,${item2.qrCode}\r `; text += "ENDQR\r\n"; - text += `T 55 0 140 260 ${item.qrCode}\r + text += `T 55 0 140 260 ${item2.qrCode}\r `; text += "FORM\r\n"; text += "PRINT\r\n"; @@ -53260,7 +53267,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(packageList.value, (item) => { + vue.renderList(packageList.value, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -53273,7 +53280,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderPackageCode), + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -53291,7 +53298,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -53311,7 +53318,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.firsts), + vue.toDisplayString(item2.firsts), 1 /* TEXT */ ) @@ -53329,7 +53336,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.seconds), + vue.toDisplayString(item2.seconds), 1 /* TEXT */ ) @@ -53347,7 +53354,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.thirds), + vue.toDisplayString(item2.thirds), 1 /* TEXT */ ) @@ -53365,7 +53372,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.materialName), + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -53383,7 +53390,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.materialCode), + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -53401,7 +53408,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.warehouseName), + vue.toDisplayString(item2.warehouseName), 1 /* TEXT */ ) @@ -53419,7 +53426,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -53503,7 +53510,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(zeroList.value, (item) => { + vue.renderList(zeroList.value, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -53516,7 +53523,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -53534,7 +53541,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -53552,7 +53559,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.warehouseName), + vue.toDisplayString(item2.warehouseName), 1 /* TEXT */ ) @@ -53570,7 +53577,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -53672,7 +53679,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(stockList.value, (item) => { + vue.renderList(stockList.value, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -53685,7 +53692,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.incomingBatch), + vue.toDisplayString(item2.incomingBatch), 1 /* TEXT */ ) @@ -53703,7 +53710,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.materialCode), + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -53721,7 +53728,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.materialName), + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -53739,7 +53746,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.marketName), + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -53757,7 +53764,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.warehouseName), + vue.toDisplayString(item2.warehouseName), 1 /* TEXT */ ) @@ -53775,7 +53782,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -53897,11 +53904,11 @@ This will fail in production if not fixed.`); } }); }); - const handleChooseInventory = async (item) => { + const handleChooseInventory = async (item2) => { try { - pageInfo.value = item; + pageInfo.value = item2; isShowSearchList.value = false; - const _submitData = { materielCode: item.productCode }; + const _submitData = { materielCode: item2.productCode }; const res = await postStocklistList(_submitData); if (res.code !== 200) return; @@ -54043,12 +54050,12 @@ This will fail in production if not fixed.`); })) : !searchLoading.value ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(searchList.value, (item) => { + vue.renderList(searchList.value, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.productCode, + key: item2.productCode, class: "searchList_item", - onClick: ($event) => handleChooseInventory(item) - }, vue.toDisplayString(searchForm.chooseIndex === 0 ? item.name : item.productCode), 9, ["onClick"]); + onClick: ($event) => handleChooseInventory(item2) + }, vue.toDisplayString(searchForm.chooseIndex === 0 ? item2.name : item2.productCode), 9, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ @@ -54170,7 +54177,7 @@ This will fail in production if not fixed.`); stockList.value.length > 0 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(stockList.value, (item, index2) => { + vue.renderList(stockList.value, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { key: index2, class: "table_row" @@ -54178,21 +54185,21 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { class: "" }, - vue.toDisplayString(item.allocation || "暂无数据"), + vue.toDisplayString(item2.allocation || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - vue.toDisplayString(item.trayName || "暂无数据"), + vue.toDisplayString(item2.trayName || "暂无数据"), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "" }, - vue.toDisplayString(item.num || "暂无数据"), + vue.toDisplayString(item2.num || "暂无数据"), 1 /* TEXT */ ) @@ -54305,22 +54312,22 @@ This will fail in production if not fixed.`); return null; } } - const hanleChangeCheck = (item) => { - formatAppLog("log", "at pagesHome/pages/StorageLocationList/StorageLocationList.vue:178", "item :>> ", item); - for (let i2 = 0; i2 < item.goodsAllocations.length; i2++) { - item.goodsAllocations[i2].active = item.active; + const hanleChangeCheck = (item2) => { + formatAppLog("log", "at pagesHome/pages/StorageLocationList/StorageLocationList.vue:178", "item :>> ", item2); + for (let i2 = 0; i2 < item2.goodsAllocations.length; i2++) { + item2.goodsAllocations[i2].active = item2.active; } }; - const hanleItemChangeCheck = (val, item) => { + const hanleItemChangeCheck = (val, item2) => { let isAll = false; - for (let i2 = 0; i2 < item.goodsAllocations.length; i2++) { - isAll = item.goodsAllocations[i2].active; + for (let i2 = 0; i2 < item2.goodsAllocations.length; i2++) { + isAll = item2.goodsAllocations[i2].active; if (isAll) break; } - item.active = isAll; + item2.active = isAll; }; - const handlePrint = (item, val) => { + const handlePrint = (item2, val) => { tip.value.setdetails({ title: "提示", content: `是否打印【${val.name}】货位`, @@ -54329,7 +54336,7 @@ This will fail in production if not fixed.`); isshowcancel: true, success: () => { tip.value.setisshow(false); - handleBatchPrint([{ title: item.name, ...val }]); + handleBatchPrint([{ title: item2.name, ...val }]); }, cancel: () => { tip.value.setisshow(false); @@ -54342,11 +54349,11 @@ This will fail in production if not fixed.`); const handleIsPrint = () => { const chooseList = []; for (let i2 = 0; i2 < details.recordsList.length; i2++) { - const item = details.recordsList[i2]; - for (let index2 = 0; index2 < item.goodsAllocations.length; index2++) { - const val = item.goodsAllocations[index2]; + const item2 = details.recordsList[i2]; + for (let index2 = 0; index2 < item2.goodsAllocations.length; index2++) { + const val = item2.goodsAllocations[index2]; if (val.active) - chooseList.push({ ...val, title: item.name }); + chooseList.push({ ...val, title: item2.name }); } } if (chooseList.length === 0) @@ -54381,17 +54388,17 @@ This will fail in production if not fixed.`); for (let i2 = 0; i2 < chooseList.length; i2++) { if (_isReturn) break; - const item = chooseList[i2]; - item.title = reg1.test(item.title) ? item.title : item.title + "区"; + const item2 = chooseList[i2]; + item2.title = reg1.test(item2.title) ? item2.title : item2.title + "区"; const subjectHeight = 40; const interval = 30; let text = "! 0 200 200 333 1\r\n"; text += "SETBOLD 1\r\n"; text += "B QR 40 20 M 2 U 8\r\n"; - text += `MA,${item.id}\r + text += `MA,${item2.id}\r `; text += "ENDQR\r\n"; - text += `T 70 0 40 240 ${item.title + "-" + item.name}\r + text += `T 70 0 40 240 ${item2.title + "-" + item2.name}\r `; text += `T 70 0 260 ${subjectHeight} ${"汇通运输"}\r `; @@ -54403,7 +54410,7 @@ This will fail in production if not fixed.`); `; text += `LINE 250 ${subjectHeight + interval * 3} 440 ${subjectHeight + interval * 3} 3\r `; - text += `T 70 0 260 ${subjectHeight + interval * 4} ${item.title}\r + text += `T 70 0 260 ${subjectHeight + interval * 4} ${item2.title}\r `; text += "FORM\r\n"; text += "PRINT\r\n"; @@ -54423,8 +54430,8 @@ This will fail in production if not fixed.`); const value = details.recordsList[i2]; value.active = true; for (let index2 = 0; index2 < value.goodsAllocations.length; index2++) { - const item = value.goodsAllocations[index2]; - item.active = true; + const item2 = value.goodsAllocations[index2]; + item2.active = true; } } }; @@ -54433,8 +54440,8 @@ This will fail in production if not fixed.`); const value = details.recordsList[i2]; value.active = false; for (let index2 = 0; index2 < value.goodsAllocations.length; index2++) { - const item = value.goodsAllocations[index2]; - item.active = false; + const item2 = value.goodsAllocations[index2]; + item2.active = false; } } }; @@ -54523,9 +54530,9 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).recordsList, (item) => { + vue.renderList(vue.unref(details).recordsList, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.id + key: item2.id }, [ vue.createVNode( _component_PullDownBox, @@ -54534,14 +54541,14 @@ This will fail in production if not fixed.`); title: vue.withCtx(() => [ vue.createElementVNode("view", { class: "center" }, [ vue.createVNode(_component_CheckBox, { - click: () => hanleChangeCheck(item), - modelValue: item.active, - "onUpdate:modelValue": ($event) => item.active = $event + click: () => hanleChangeCheck(item2), + modelValue: item2.active, + "onUpdate:modelValue": ($event) => item2.active = $event }, null, 8, ["click", "modelValue", "onUpdate:modelValue"]), vue.createElementVNode( "text", { class: "ml10" }, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -54552,14 +54559,14 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.goodsAllocations, (val) => { + vue.renderList(item2.goodsAllocations, (val) => { return vue.openBlock(), vue.createElementBlock("view", { key: val.id, class: "mt10 flex-c-sb" }, [ vue.createElementVNode("view", { class: "center" }, [ vue.createVNode(_component_CheckBox, { - click: () => hanleItemChangeCheck(val, item), + click: () => hanleItemChangeCheck(val, item2), modelValue: val.active, "onUpdate:modelValue": ($event) => val.active = $event }, null, 8, ["click", "modelValue", "onUpdate:modelValue"]), @@ -54573,7 +54580,7 @@ This will fail in production if not fixed.`); ]), vue.createElementVNode("view", { class: "button", - onClick: vue.withModifiers(($event) => handlePrint(item, val), ["stop"]) + onClick: vue.withModifiers(($event) => handlePrint(item2, val), ["stop"]) }, " 打印 ", 8, ["onClick"]) ]); }), @@ -54705,8 +54712,8 @@ This will fail in production if not fixed.`); } }); }); - const handleChooseInventory = (item) => { - pageInfo.value = item; + const handleChooseInventory = (item2) => { + pageInfo.value = item2; imgList.value = pageInfo.value.picture ? pageInfo.value.picture.split(",") : []; isShowSearchList.value = false; }; @@ -54765,8 +54772,8 @@ This will fail in production if not fixed.`); success: async (chooseImageRes) => { formatAppLog("log", "at pagesHome/pages/MaterialMaintenance/MaterialMaintenance.vue:368", "chooseImageRes >>>>>>>>", chooseImageRes); const tempFilePaths = chooseImageRes.tempFilePaths; - tempFilePaths.forEach(async (item) => { - let url2 = await api.upfile(item); + tempFilePaths.forEach(async (item2) => { + let url2 = await api.upfile(item2); formatAppLog("log", "at pagesHome/pages/MaterialMaintenance/MaterialMaintenance.vue:372", "url :>> ", url2); imgList.value.push(url2.link); }); @@ -54881,12 +54888,12 @@ This will fail in production if not fixed.`); })) : !searchLoading.value ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(searchList.value, (item) => { + vue.renderList(searchList.value, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.productCode, + key: item2.productCode, class: "searchList_item", - onClick: ($event) => handleChooseInventory(item) - }, vue.toDisplayString(searchForm.chooseIndex === 0 ? item.name : item.productCode), 9, ["onClick"]); + onClick: ($event) => handleChooseInventory(item2) + }, vue.toDisplayString(searchForm.chooseIndex === 0 ? item2.name : item2.productCode), 9, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ @@ -55137,9 +55144,9 @@ This will fail in production if not fixed.`); const loadingNub = vue.computed(() => { let num = 0; if (!!details.datalist) { - details.datalist.map((item) => { - if (item.loadingNub) { - num += item.loadingNub; + details.datalist.map((item2) => { + if (item2.loadingNub) { + num += item2.loadingNub; } }); } @@ -55196,10 +55203,10 @@ This will fail in production if not fixed.`); return; const _driverId = uni.getStorageSync("checkvehicle").driverId; let _flag = false; - for (let item of data) { - if (item.driverId === _driverId) { + for (let item2 of data) { + if (item2.driverId === _driverId) { _flag = true; - uni.setStorageSync("checkvehicle", item); + uni.setStorageSync("checkvehicle", item2); break; } } @@ -55338,7 +55345,7 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) == 1 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(datalist), (item, index2) => { + vue.renderList(vue.unref(datalist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itec", onClick: ($event) => checkphon(index2) @@ -55348,7 +55355,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "托盘名称:"), vue.createTextVNode( - vue.toDisplayString(item.trayName), + vue.toDisplayString(item2.trayName), 1 /* TEXT */ ) @@ -55358,7 +55365,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "货物类型:"), vue.createTextVNode( - vue.toDisplayString(item.associationType), + vue.toDisplayString(item2.associationType), 1 /* TEXT */ ) @@ -55366,7 +55373,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "货物件数:"), vue.createTextVNode( - vue.toDisplayString(item.packageList.length), + vue.toDisplayString(item2.packageList.length), 1 /* TEXT */ ) @@ -55379,7 +55386,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.packageList, (ite) => { + vue.renderList(item2.packageList, (ite) => { return vue.openBlock(), vue.createElementBlock("view", null, [ vue.createElementVNode( "view", @@ -55411,9 +55418,9 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { - class: vue.normalizeClass(item.isScan == 3 ? "tip tp1" : "tip tp2") + class: vue.normalizeClass(item2.isScan == 3 ? "tip tp1" : "tip tp2") }, - vue.toDisplayString(vue.unref(typearr).find((val) => val.value === item.isScan).label), + vue.toDisplayString(vue.unref(typearr).find((val) => val.value === item2.isScan).label), 3 /* TEXT, CLASS */ ) @@ -55425,7 +55432,7 @@ This will fail in production if not fixed.`); vue.unref(orderStatus) == 2 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList(vue.unref(datalist), (item, index2) => { + vue.renderList(vue.unref(datalist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "itec", onClick: ($event) => checkphon(index2) @@ -55434,7 +55441,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "SKU:"), vue.createTextVNode( - vue.toDisplayString(item.sku), + vue.toDisplayString(item2.sku), 1 /* TEXT */ ) @@ -55444,7 +55451,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "物品:"), vue.createTextVNode( - vue.toDisplayString(item.descriptionGoods), + vue.toDisplayString(item2.descriptionGoods), 1 /* TEXT */ ) @@ -55452,7 +55459,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "规格:"), vue.createTextVNode( - vue.toDisplayString(item.specification), + vue.toDisplayString(item2.specification), 1 /* TEXT */ ) @@ -55462,7 +55469,7 @@ This will fail in production if not fixed.`); vue.createElementVNode("view", null, [ vue.createElementVNode("text", { style: { "color": "#90A0AF" } }, "单位:"), vue.createTextVNode( - vue.toDisplayString(item.logpmUnit), + vue.toDisplayString(item2.logpmUnit), 1 /* TEXT */ ) @@ -55550,9 +55557,9 @@ This will fail in production if not fixed.`); }); initpage(); }); - function goorderdetail(item) { + function goorderdetail(item2) { uni.navigateTo({ - url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode + url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item2.orderCode }); } function showsdqs() { @@ -55707,19 +55714,19 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(dataList), (item) => { + vue.renderList(vue.unref(dataList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "ite", onClick: showsdqs }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("view", { - onClick: vue.withModifiers(($event) => goorderdetail(item), ["stop"]) - }, "订单号:" + vue.toDisplayString(item.orderCode), 9, ["onClick"]), + onClick: vue.withModifiers(($event) => goorderdetail(item2), ["stop"]) + }, "订单号:" + vue.toDisplayString(item2.orderCode), 9, ["onClick"]), vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.packageBarCode), + "包条码:" + vue.toDisplayString(item2.packageBarCode), 1 /* TEXT */ ) @@ -55728,14 +55735,14 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", null, - "货物类型:" + vue.toDisplayString(item.goodsType == 1 ? "定制品" : ""), + "货物类型:" + vue.toDisplayString(item2.goodsType == 1 ? "定制品" : ""), 1 /* TEXT */ ), vue.createElementVNode( "view", null, - "是否备货:" + vue.toDisplayString(item.isScanStr), + "是否备货:" + vue.toDisplayString(item2.isScanStr), 1 /* TEXT */ ) @@ -55744,7 +55751,7 @@ This will fail in production if not fixed.`); vue.createElementVNode( "view", { style: { "flex": "1" } }, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -56046,7 +56053,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).datelist, (item) => { + vue.renderList(vue.unref(details).datelist, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -56059,7 +56066,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -56077,7 +56084,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -56095,7 +56102,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderPackageCode), + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -56112,7 +56119,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -56195,7 +56202,7 @@ This will fail in production if not fixed.`); (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).datelist, (item) => { + vue.renderList(vue.unref(details).datelist, (item2) => { return vue.openBlock(), vue.createBlock( _component_uni_tr, null, @@ -56208,7 +56215,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderCode), + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -56226,7 +56233,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.waybillNo), + vue.toDisplayString(item2.waybillNo), 1 /* TEXT */ ) @@ -56244,7 +56251,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.orderPackageCode), + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -56261,7 +56268,7 @@ This will fail in production if not fixed.`); { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.num), + vue.toDisplayString(item2.num), 1 /* TEXT */ ) @@ -61669,7 +61676,7 @@ ${i3} this.emit(defValue); } } - const def = this.mixinDatacomResData.find((item) => item.value === defValue); + const def = this.mixinDatacomResData.find((item2) => item2.value === defValue); this.current = def ? this.formatItemName(def) : ""; }, /** @@ -61678,9 +61685,9 @@ ${i3} */ isDisabled(value) { let isDisabled = false; - this.mixinDatacomResData.forEach((item) => { - if (item.value === value) { - isDisabled = item.disable; + this.mixinDatacomResData.forEach((item2) => { + if (item2.value === value) { + isDisabled = item2.disable; } }); return isDisabled; @@ -61691,11 +61698,11 @@ ${i3} this.removeCache(); } }, - change(item) { - if (!item.disable) { + change(item2) { + if (!item2.disable) { this.showSelector = false; - this.current = this.formatItemName(item); - this.emit(item.value); + this.current = this.formatItemName(item2); + this.emit(item2.value); } }, emit(val) { @@ -61712,18 +61719,18 @@ ${i3} } this.showSelector = !this.showSelector; }, - formatItemName(item) { + formatItemName(item2) { let { text, value, channel_code - } = item; + } = item2; channel_code = channel_code ? `(${channel_code})` : ""; if (this.format) { let str = ""; str = this.format; - for (let key in item) { - str = str.replace(new RegExp(`{${key}}`, "g"), item[key]); + for (let key in item2) { + str = str.replace(new RegExp(`{${key}}`, "g"), item2[key]); } return str; } else { @@ -61850,18 +61857,18 @@ ${i3} ])) : (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, - vue.renderList($data.mixinDatacomResData, (item, index2) => { + vue.renderList($data.mixinDatacomResData, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "uni-select__selector-item", key: index2, - onClick: ($event) => $options.change(item) + onClick: ($event) => $options.change(item2) }, [ vue.createElementVNode( "text", { - class: vue.normalizeClass({ "uni-select__selector__disabled": item.disable }) + class: vue.normalizeClass({ "uni-select__selector__disabled": item2.disable }) }, - vue.toDisplayString($options.formatItemName(item)), + vue.toDisplayString($options.formatItemName(item2)), 3 /* TEXT, CLASS */ ) @@ -62016,9 +62023,9 @@ ${i3} } myApiIndicators(json).then((res) => { this.totalNum = res.data.total; - this.dataList = res.data.records.map((item) => { - item.createTime = uni.$u.timeFormat(item.createTime, "yyyy-mm-dd"); - return item; + this.dataList = res.data.records.map((item2) => { + item2.createTime = uni.$u.timeFormat(item2.createTime, "yyyy-mm-dd"); + return item2; }); }); }, @@ -62059,10 +62066,10 @@ ${i3} }, async initData() { let res = await deptTree({}); - this.deepList = res.data.map((item) => { + this.deepList = res.data.map((item2) => { return { - value: item.id, - text: item.deptName + value: item2.id, + text: item2.deptName }; }); }, @@ -62100,17 +62107,17 @@ ${i3} this.date = []; this.datatime = ""; }, - goEdit(item, sub) { + goEdit(item2, sub) { formatAppLog("log", "at pagesHome/pages/integral/integral.vue:272", "sub :>> ", sub); formatAppLog("log", "at pagesHome/pages/integral/integral.vue:273", "222 :>> ", 222); uni.navigateTo({ - url: `/pagesHome/pages/integralEdit/integralEdit?oneId=${item.id}&twoId=${sub.id}&twoName=${sub.name}&deptId=${this.activeId}&deptIds=${this.activeIds}&industryTitle=${this.industryTitle}&deduction=${sub.description}` + url: `/pagesHome/pages/integralEdit/integralEdit?oneId=${item2.id}&twoId=${sub.id}&twoName=${sub.name}&deptId=${this.activeId}&deptIds=${this.activeIds}&industryTitle=${this.industryTitle}&deduction=${sub.description}` }); }, - goDetail(item) { + goDetail(item2) { formatAppLog("log", "at pagesHome/pages/integral/integral.vue:279", "111 :>> ", 111); uni.navigateTo({ - url: `/pagesHome/pages/integralEdit/integralEdit?id=${item.id}&classifyId=${item.classifyId}` + url: `/pagesHome/pages/integralEdit/integralEdit?id=${item2.id}&classifyId=${item2.classifyId}` }); }, handleChange(e2) { @@ -62190,7 +62197,7 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($data.collapse, (item, index2) => { + vue.renderList($data.collapse, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { key: index2 }, [ vue.createElementVNode("view", { class: "title-box", @@ -62201,7 +62208,7 @@ ${i3} vue.createElementVNode( "view", { class: "title" }, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ), @@ -62214,10 +62221,10 @@ ${i3} $data.crrColl == index2 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(item.children, (sub, idx) => { + vue.renderList(item2.children, (sub, idx) => { return vue.openBlock(), vue.createElementBlock("view", { class: "sub", - onClick: ($event) => $options.goEdit(item, sub), + onClick: ($event) => $options.goEdit(item2, sub), key: idx }, [ vue.createElementVNode( @@ -62393,10 +62400,10 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($data.dataList, (item, index2) => { + vue.renderList($data.dataList, (item2, index2) => { return vue.openBlock(), vue.createBlock(_component_uni_tr, { key: index2, - onClick: [($event) => $options.goDetail(item), ($event) => $options.goDetail(item)] + onClick: [($event) => $options.goDetail(item2), ($event) => $options.goDetail(item2)] }, { default: vue.withCtx(() => [ vue.createVNode( @@ -62418,11 +62425,11 @@ ${i3} ), vue.createVNode(_component_uni_td, { align: "center", - style: vue.normalizeStyle({ color: item.isObjection ? "#D3832A" : "" }) + style: vue.normalizeStyle({ color: item2.isObjection ? "#D3832A" : "" }) }, { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.createTime), + vue.toDisplayString(item2.createTime), 1 /* TEXT */ ) @@ -62436,7 +62443,7 @@ ${i3} { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.assessDeptName), + vue.toDisplayString(item2.assessDeptName), 1 /* TEXT */ ) @@ -62453,7 +62460,7 @@ ${i3} { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.classifyName), + vue.toDisplayString(item2.classifyName), 1 /* TEXT */ ) @@ -62470,7 +62477,7 @@ ${i3} { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.indicatorsStatusName), + vue.toDisplayString(item2.indicatorsStatusName), 1 /* TEXT */ ) @@ -62487,7 +62494,7 @@ ${i3} { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.point), + vue.toDisplayString(item2.point), 1 /* TEXT */ ) @@ -62814,10 +62821,10 @@ ${i3} formData, _realName } = this.form; - childrens.forEach((item, index2) => { - if (item === this) { + childrens.forEach((item2, index2) => { + if (item2 === this) { this.form.childrens.splice(index2, 1); - delete formData[_realName(item.name)]; + delete formData[_realName(item2.name)]; } }); } @@ -63058,14 +63065,14 @@ ${i3} }); } function normalizeChooseAndUploadFileRes(res, fileType) { - res.tempFiles.forEach((item, index2) => { - if (!item.name) { - item.name = item.path.substring(item.path.lastIndexOf("/") + 1); + res.tempFiles.forEach((item2, index2) => { + if (!item2.name) { + item2.name = item2.path.substring(item2.path.lastIndexOf("/") + 1); } if (fileType) { - item.fileType = fileType; + item2.fileType = fileType; } - item.cloudPath = Date.now() + "_" + index2 + item.name.substring(item.name.lastIndexOf(".")); + item2.cloudPath = Date.now() + "_" + index2 + item2.name.substring(item2.name.lastIndexOf(".")); }); if (!res.tempFilePaths) { res.tempFilePaths = res.tempFiles.map((file2) => file2.path); @@ -63084,7 +63091,7 @@ ${i3} function next() { let cur = count++; if (cur >= len) { - !files.find((item) => !item.url && !item.errMsg) && resolve(files); + !files.find((item2) => !item2.url && !item2.errMsg) && resolve(files); return; } const fileItem = files[cur]; @@ -63344,8 +63351,8 @@ ${i3} } }, methods: { - uploadFiles(item, index2) { - this.$emit("uploadFiles", item); + uploadFiles(item2, index2) { + this.$emit("uploadFiles", item2); }, choose() { this.$emit("choose"); @@ -63385,7 +63392,7 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($props.filesList, (item, index2) => { + vue.renderList($props.filesList, (item2, index2) => { return vue.openBlock(), vue.createElementBlock( "view", { @@ -63403,9 +63410,9 @@ ${i3} [ vue.createElementVNode("image", { class: "file-image", - src: item.url, + src: item2.url, mode: "aspectFill", - onClick: vue.withModifiers(($event) => $options.prviewImage(item, index2), ["stop"]) + onClick: vue.withModifiers(($event) => $options.prviewImage(item2, index2), ["stop"]) }, null, 8, ["src", "onClick"]), $props.delIcon && !$props.readonly ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, @@ -63415,21 +63422,21 @@ ${i3} vue.createElementVNode("view", { class: "icon-del" }), vue.createElementVNode("view", { class: "icon-del rotate" }) ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true), - item.progress && item.progress !== 100 || item.progress === 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.progress && item2.progress !== 100 || item2.progress === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "file-picker__progress" }, [ vue.createElementVNode("progress", { class: "file-picker__progress-item", - percent: item.progress === -1 ? 0 : item.progress, + percent: item2.progress === -1 ? 0 : item2.progress, "stroke-width": "4", - backgroundColor: item.errMsg ? "#ff5a5f" : "#EBEBEB" + backgroundColor: item2.errMsg ? "#ff5a5f" : "#EBEBEB" }, null, 8, ["percent", "backgroundColor"]) ])) : vue.createCommentVNode("v-if", true), - item.errMsg ? (vue.openBlock(), vue.createElementBlock("view", { + item2.errMsg ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "file-picker__mask", - onClick: vue.withModifiers(($event) => $options.uploadFiles(item, index2), ["stop"]) + onClick: vue.withModifiers(($event) => $options.uploadFiles(item2, index2), ["stop"]) }, " 点击重试 ", 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ], 4 @@ -63588,9 +63595,9 @@ ${i3} } }, methods: { - uploadFiles(item, index2) { + uploadFiles(item2, index2) { this.$emit("uploadFiles", { - item, + item: item2, index: index2 }); }, @@ -63632,7 +63639,7 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($options.list, (item, index2) => { + vue.renderList($options.list, (item2, index2) => { return vue.openBlock(), vue.createElementBlock( "view", { @@ -63649,7 +63656,7 @@ ${i3} vue.createElementVNode( "view", { class: "files__name" }, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ), @@ -63662,21 +63669,21 @@ ${i3} vue.createElementVNode("view", { class: "icon-del rotate" }) ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ]), - item.progress && item.progress !== 100 || item.progress === 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.progress && item2.progress !== 100 || item2.progress === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "file-picker__progress" }, [ vue.createElementVNode("progress", { class: "file-picker__progress-item", - percent: item.progress === -1 ? 0 : item.progress, + percent: item2.progress === -1 ? 0 : item2.progress, "stroke-width": "4", - backgroundColor: item.errMsg ? "#ff5a5f" : "#EBEBEB" + backgroundColor: item2.errMsg ? "#ff5a5f" : "#EBEBEB" }, null, 8, ["percent", "backgroundColor"]) ])) : vue.createCommentVNode("v-if", true), - item.status === "error" ? (vue.openBlock(), vue.createElementBlock("view", { + item2.status === "error" ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "file-picker__mask", - onClick: vue.withModifiers(($event) => $options.uploadFiles(item, index2), ["stop"]) + onClick: vue.withModifiers(($event) => $options.uploadFiles(item2, index2), ["stop"]) }, " 点击重试 ", 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ], 6 @@ -64036,24 +64043,24 @@ ${i3} let tempFilePath = []; let errorTempFilePath = []; for (let i2 = 0; i2 < res.length; i2++) { - const item = res[i2]; - const index2 = item.uuid ? this.files.findIndex((p2) => p2.uuid === item.uuid) : item.index; + const item2 = res[i2]; + const index2 = item2.uuid ? this.files.findIndex((p2) => p2.uuid === item2.uuid) : item2.index; if (index2 === -1 || !this.files) break; - if (item.errMsg === "request:fail") { - this.files[index2].url = item.path; + if (item2.errMsg === "request:fail") { + this.files[index2].url = item2.path; this.files[index2].status = "error"; - this.files[index2].errMsg = item.errMsg; + this.files[index2].errMsg = item2.errMsg; errorData.push(this.files[index2]); errorTempFilePath.push(this.files[index2].url); } else { this.files[index2].errMsg = ""; - this.files[index2].fileID = item.url; + this.files[index2].fileID = item2.url; const reg = /cloud:\/\/([\w.]+\/?)\S*/; - if (reg.test(item.url)) { - this.files[index2].url = await this.getTempFileURL(item.url); + if (reg.test(item2.url)) { + this.files[index2].url = await this.getTempFileURL(item2.url); } else { - this.files[index2].url = item.url; + this.files[index2].url = item2.url; } this.files[index2].status = "success"; this.files[index2].progress += 1; @@ -64749,9 +64756,9 @@ ${i3} }; function formatMessage(args, resources = "") { var defaultMessage = ["label"]; - defaultMessage.forEach((item) => { - if (args[item] === void 0) { - args[item] = ""; + defaultMessage.forEach((item2) => { + if (args[item2] === void 0) { + args[item2] = ""; } }); let str = resources; @@ -64849,8 +64856,8 @@ ${i3} async validateRule(fieldKey, fieldValue, value, data, allData) { var result = null; let rules2 = fieldValue.rules; - let hasRequired = rules2.findIndex((item) => { - return item.required; + let hasRequired = rules2.findIndex((item2) => { + return item2.required; }); if (hasRequired < 0) { if (value === null || value === void 0) { @@ -64950,11 +64957,11 @@ ${i3} } = rule; let list = new Array(range2.length); for (let i2 = 0; i2 < range2.length; i2++) { - const item = range2[i2]; - if (types.object(item) && item.value !== void 0) { - list[i2] = item.value; + const item2 = range2[i2]; + if (types.object(item2) && item2.value !== void 0) { + list[i2] = item2.value; } else { - list[i2] = item; + list[i2] = item2; } } let result = false; @@ -65460,8 +65467,8 @@ ${i3} validateField(props2 = [], callback) { props2 = [].concat(props2); let invalidFields = {}; - this.childrens.forEach((item) => { - const name = realName(item.name); + this.childrens.forEach((item2) => { + const name = realName(item2.name); if (props2.indexOf(name) !== -1) { invalidFields = Object.assign({}, invalidFields, { [name]: this.formData[name] @@ -65477,13 +65484,13 @@ ${i3} */ clearValidate(props2 = []) { props2 = [].concat(props2); - this.childrens.forEach((item) => { + this.childrens.forEach((item2) => { if (props2.length === 0) { - item.errMsg = ""; + item2.errMsg = ""; } else { - const name = realName(item.name); + const name = realName(item2.name); if (props2.indexOf(name) !== -1) { - item.errMsg = ""; + item2.errMsg = ""; } } }); @@ -65515,9 +65522,9 @@ ${i3} return; let childrens = []; for (let i2 in invalidFields) { - const item = this.childrens.find((v2) => realName(v2.name) === i2); - if (item) { - childrens.push(item); + const item2 = this.childrens.find((v2) => realName(v2.name) === i2); + if (item2) { + childrens.push(item2); } } if (!callback && typeof keepitem === "function") { @@ -66225,11 +66232,11 @@ ${i3} let res = await classifyList({ deptId: e2.deptIds }); - this.range1 = res.data.map((item) => { + this.range1 = res.data.map((item2) => { return { - value: item.id, - text: item.name, - children: item.children + value: item2.id, + text: item2.name, + children: item2.children }; }); this.formData.type = e2.oneId; @@ -66249,11 +66256,11 @@ ${i3} methods: { searchDeep(e2) { formatAppLog("log", "at pagesHome/pages/integralEdit/integralEdit.vue:241", e2); - this.popList = this.deepList.filter((item) => !e2 || item.deptName.indexOf(e2) != -1); + this.popList = this.deepList.filter((item2) => !e2 || item2.deptName.indexOf(e2) != -1); }, - checkDeep(item) { - this.formData.assessDept = item.id; - this.formData.assessDeptName = item.deptName; + checkDeep(item2) { + this.formData.assessDept = item2.id; + this.formData.assessDeptName = item2.deptName; this.deepShow = false; }, showCheck() { @@ -66282,25 +66289,25 @@ ${i3} return; this.formData = data; this.formData.type = e2.id; - this.pointList = data.pointsVOS.map((item) => { + this.pointList = data.pointsVOS.map((item2) => { return { - value: item.point, - text: item.point + "" + value: item2.point, + text: item2.point + "" }; }); - this.range1.forEach((item) => { - item.children && item.children.forEach((item2) => { - if (item2.id == res.data.classifyId) { - formatAppLog("log", "at pagesHome/pages/integralEdit/integralEdit.vue:320", item.value); - this.formData.type = item.value; - this.range2 = item.children.map((item3) => { + this.range1.forEach((item2) => { + item2.children && item2.children.forEach((item22) => { + if (item22.id == res.data.classifyId) { + formatAppLog("log", "at pagesHome/pages/integralEdit/integralEdit.vue:320", item2.value); + this.formData.type = item2.value; + this.range2 = item2.children.map((item3) => { return { value: item3.id, text: item3.name, pointsVOS: item3.pointsVOS }; }); - this.pointList = item2.pointsVOS.map((item3) => { + this.pointList = item22.pointsVOS.map((item3) => { return { value: item3.point, text: item3.point + "" @@ -66351,11 +66358,11 @@ ${i3} changeType(e2) { this.formData.classifyId = ""; this.formData.classifyName = ""; - this.range2 = this.range1.find((fd) => fd.value == e2).children.map((item) => { + this.range2 = this.range1.find((fd) => fd.value == e2).children.map((item2) => { return { - value: item.id, - text: item.name, - pointsVOS: item.pointsVOS + value: item2.id, + text: item2.name, + pointsVOS: item2.pointsVOS }; }); }, @@ -66364,10 +66371,10 @@ ${i3} this.formData[key] = fds.text; if (key == "classifyName") { this.formData.point = ""; - this.pointList = fds.pointsVOS.map((item) => { + this.pointList = fds.pointsVOS.map((item2) => { return { - value: item.point, - text: item.point + "" + value: item2.point, + text: item2.point + "" }; }); } @@ -66397,11 +66404,11 @@ ${i3} selectFile(e2, type2) { const files = e2.tempFiles; formatAppLog("log", "at pagesHome/pages/integralEdit/integralEdit.vue:443", "files :>> ", files); - files.forEach(async (item) => { - let res = await api.upfile(item.path); + files.forEach(async (item2) => { + let res = await api.upfile(item2.path); this["fileList" + type2].push({ url: res.link, - name: item.name, + name: item2.name, type: type2 }); }); @@ -66417,7 +66424,7 @@ ${i3} this["fileList" + type2].splice(num, 1); formatAppLog("log", "at pagesHome/pages/integralEdit/integralEdit.vue:465", "this[fileList + type] :>> ", this["fileList" + type2]); }, - handlePreviewFile(item) { + handlePreviewFile(item2) { formatAppLog("log", "at pagesHome/pages/integralEdit/integralEdit.vue:468", "this.refs :>> ", this.refs); this.$refs.tip.setdetails({ title: "提示", @@ -66426,7 +66433,7 @@ ${i3} isshow: true, isshowcancel: true, success: async () => { - let url2 = item.url; + let url2 = item2.url; uni.downloadFile({ url: url2, success: function(res) { @@ -66462,15 +66469,15 @@ ${i3} } }); }, - handleCopy(item) { - this.urlItem = item; + handleCopy(item2) { + this.urlItem = item2; this.$refs.popUpCopyUrl.setDetails({ title: "复制链接", confirmText: "复制", showPopUp: true, success: async () => { uni.setClipboardData({ - data: item.url, + data: item2.url, //要被复制的内容 success: () => { uni.showToast({ @@ -66664,15 +66671,15 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($data.fileList2, (item, index2) => { + vue.renderList($data.fileList2, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.url, + key: item2.url, class: "fileList_item" }, [ vue.createElementVNode( "view", { class: "fileName" }, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ), @@ -66680,7 +66687,7 @@ ${i3} vue.createElementVNode("view", { class: "" }, [ vue.createVNode(_component_u_icon, { name: "eye-fill", - onClick: ($event) => $options.handlePreviewFile(item), + onClick: ($event) => $options.handlePreviewFile(item2), color: "#32df72" }, null, 8, ["onClick"]) ]), @@ -66700,7 +66707,7 @@ ${i3} }, [ vue.createVNode(_component_u_icon, { name: "download", - onClick: ($event) => $options.handleCopy(item), + onClick: ($event) => $options.handleCopy(item2), color: "#32df72" }, null, 8, ["onClick"]) ])) @@ -66855,12 +66862,12 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($data.popList, (item, index2) => { + vue.renderList($data.popList, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", - onClick: ($event) => $options.checkDeep(item), + onClick: ($event) => $options.checkDeep(item2), key: index2 - }, vue.toDisplayString(item.deptName), 9, ["onClick"]); + }, vue.toDisplayString(item2.deptName), 9, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ @@ -66939,9 +66946,9 @@ ${i3} this.infos = res.data; let data = res.data.indicatorsVOS; this.totalNum = data.total; - this.dataList = data.records.map((item) => { - item.createTime = uni.$u.timeFormat(item.createTime, "yyyy-mm-dd"); - return item; + this.dataList = data.records.map((item2) => { + item2.createTime = uni.$u.timeFormat(item2.createTime, "yyyy-mm-dd"); + return item2; }); }); }, @@ -66969,9 +66976,9 @@ ${i3} this.date = []; this.datatime = ""; }, - goDetail(item) { + goDetail(item2) { uni.navigateTo({ - url: `/pagesHome/pages/integralEdit/integralEdit?check=1&id=${item.id}&classifyId=${item.classifyId}` + url: `/pagesHome/pages/integralEdit/integralEdit?check=1&id=${item2.id}&classifyId=${item2.classifyId}` }); } } @@ -67150,10 +67157,10 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($data.dataList, (item, index2) => { + vue.renderList($data.dataList, (item2, index2) => { return vue.openBlock(), vue.createBlock(_component_uni_tr, { key: index2, - onClick: [($event) => $options.goDetail(item), ($event) => $options.goDetail(item)] + onClick: [($event) => $options.goDetail(item2), ($event) => $options.goDetail(item2)] }, { default: vue.withCtx(() => [ vue.createVNode( @@ -67175,11 +67182,11 @@ ${i3} ), vue.createVNode(_component_uni_td, { align: "center", - style: vue.normalizeStyle({ color: item.isObjection ? "#D3832A" : "" }) + style: vue.normalizeStyle({ color: item2.isObjection ? "#D3832A" : "" }) }, { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.createTime), + vue.toDisplayString(item2.createTime), 1 /* TEXT */ ) @@ -67193,7 +67200,7 @@ ${i3} { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.createdUserName), + vue.toDisplayString(item2.createdUserName), 1 /* TEXT */ ) @@ -67210,7 +67217,7 @@ ${i3} { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.classifyName), + vue.toDisplayString(item2.classifyName), 1 /* TEXT */ ) @@ -67227,7 +67234,7 @@ ${i3} { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.indicatorsStatusName), + vue.toDisplayString(item2.indicatorsStatusName), 1 /* TEXT */ ) @@ -67244,7 +67251,7 @@ ${i3} { default: vue.withCtx(() => [ vue.createTextVNode( - vue.toDisplayString(item.point), + vue.toDisplayString(item2.point), 1 /* TEXT */ ) @@ -67442,11 +67449,11 @@ ${i3} }); function removeall() { const res = uni.getStorageInfoSync(); - res.keys.map((item) => { - if (item == "loginuser" || item == "HistoryDate" || item == "setip" || item == "checkname" || item.indexOf("IMAGE_CACHE_INFO") != -1) { + res.keys.map((item2) => { + if (item2 == "loginuser" || item2 == "HistoryDate" || item2 == "setip" || item2 == "checkname" || item2.indexOf("IMAGE_CACHE_INFO") != -1) { return; } - uni.removeStorageSync(item); + uni.removeStorageSync(item2); }); uni.reLaunch({ url: "/pages/login/login" @@ -67506,11 +67513,11 @@ ${i3} } }); }; - const handleTrim = (item) => { - editPwdForm[item] = uni.$u.trim(editPwdForm[item].trim(), "all"); + const handleTrim = (item2) => { + editPwdForm[item2] = uni.$u.trim(editPwdForm[item2].trim(), "all"); }; - const isShowPwd = (item) => { - ShowPwdObj[item] = !ShowPwdObj[item]; + const isShowPwd = (item2) => { + ShowPwdObj[item2] = !ShowPwdObj[item2]; }; vue.toRefs(details); return (_ctx, _cache) => { @@ -67727,8 +67734,8 @@ ${i3} }); vue.onMounted(() => { }); - const goCheckList = (pageType, item) => { - const { startTime, endTime } = item; + const goCheckList = (pageType, item2) => { + const { startTime, endTime } = item2; const nowDate = (/* @__PURE__ */ new Date()).getTime(); if (new Date(startTime).getTime() > nowDate) { utils.ttsspke("盘点时间未到"); @@ -67748,10 +67755,10 @@ ${i3} pageType, data: { title: details.checkType[pageType], - id: item.id, - warehouseId: item.warehouseId, - marketName: item.marketName ? item.marketName.split(",") : [], - questNum: item.questNum + id: item2.id, + warehouseId: item2.warehouseId, + marketName: item2.marketName ? item2.marketName.split(",") : [], + questNum: item2.questNum } }; uni.navigateTo({ @@ -67766,13 +67773,13 @@ ${i3} if (code2 === 200 && res.data) { formatAppLog("log", "at pagesTask/pages/dynamicCheck/dynamicCheck.vue:173", "records :>> ", records); details.renderList = [...details.renderList, ...records]; - details.renderList.forEach((item) => { - item.marketName = item.list.map((val) => val.refName).join(","); + details.renderList.forEach((item2) => { + item2.marketName = item2.list.map((val) => val.refName).join(","); }); - details.renderList.forEach((item) => { - item.brandName = item.list.map((val) => val.brandName).join(","); - if (item.brandName === ",") - item.brandName = ""; + details.renderList.forEach((item2) => { + item2.brandName = item2.list.map((val) => val.brandName).join(","); + if (item2.brandName === ",") + item2.brandName = ""; }); if (records.length < details.page.size) option.isEnd = true; @@ -67800,17 +67807,17 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(renderList), (item) => { + vue.renderList(vue.unref(renderList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "taskList", - key: item.id + key: item2.id }, [ vue.createElementVNode("view", { class: "taskData" }, [ vue.createElementVNode("view", { class: "label" }, "任务编号: "), vue.createElementVNode( "view", null, - vue.toDisplayString(item.questNum), + vue.toDisplayString(item2.questNum), 1 /* TEXT */ ) @@ -67820,7 +67827,7 @@ ${i3} vue.createElementVNode( "view", null, - vue.toDisplayString(item.marketName), + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -67830,7 +67837,7 @@ ${i3} vue.createElementVNode( "view", null, - vue.toDisplayString(item.brandName), + vue.toDisplayString(item2.brandName), 1 /* TEXT */ ) @@ -67840,7 +67847,7 @@ ${i3} vue.createElementVNode( "view", null, - vue.toDisplayString(item.startTime), + vue.toDisplayString(item2.startTime), 1 /* TEXT */ ) @@ -67850,7 +67857,7 @@ ${i3} vue.createElementVNode( "view", null, - vue.toDisplayString(item.endTime), + vue.toDisplayString(item2.endTime), 1 /* TEXT */ ) @@ -67858,21 +67865,21 @@ ${i3} vue.createElementVNode("view", { class: "row-button" }, [ vue.createElementVNode("button", { class: "button", - onClick: ($event) => goCheckList(1, item) + onClick: ($event) => goCheckList(1, item2) }, "随机盘点", 8, ["onClick"]), vue.createElementVNode("button", { class: "button", - onClick: ($event) => goCheckList(2, item) + onClick: ($event) => goCheckList(2, item2) }, "按库位盘点", 8, ["onClick"]) ]), vue.createElementVNode("view", { class: "row-button" }, [ vue.createElementVNode("button", { class: "button", - onClick: ($event) => goCheckList(3, item) + onClick: ($event) => goCheckList(3, item2) }, "按合同号盘点", 8, ["onClick"]), vue.createElementVNode("button", { class: "button", - onClick: ($event) => goCheckList(4, item) + onClick: ($event) => goCheckList(4, item2) }, "按托盘盘点", 8, ["onClick"]) ]) ]); @@ -68194,16 +68201,16 @@ ${i3} }); scandata(); }; - function goTrayDetails(item) { + function goTrayDetails(item2) { const info = { // 托盘码 - trayCode: item.trayCode, + trayCode: item2.trayCode, // 任务Id taskId: details.id, // 托盘Id - trayId: item.trayId, + trayId: item2.trayId, // 货物类型 - type: item.goodsType, + type: item2.goodsType, // 商城数组 marketName: details.marketName, questNum: details.questNum @@ -68302,17 +68309,17 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(renderList), (item) => { + vue.renderList(vue.unref(renderList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "table" }, [ vue.createElementVNode("view", { class: "tpbx", - onClick: ($event) => goStorageDetails(item) + onClick: ($event) => goStorageDetails(item2) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "库位码:" + vue.toDisplayString(item.positionCode), + "库位码:" + vue.toDisplayString(item2.positionCode), 1 /* TEXT */ ) @@ -68322,7 +68329,7 @@ ${i3} vue.createElementVNode( "view", null, - "总件数:" + vue.toDisplayString(item.total), + "总件数:" + vue.toDisplayString(item2.total), 1 /* TEXT */ ) @@ -68332,7 +68339,7 @@ ${i3} vue.createElementVNode( "view", null, - "盘点件数:" + vue.toDisplayString(item.unTotal), + "盘点件数:" + vue.toDisplayString(item2.unTotal), 1 /* TEXT */ ) @@ -68387,17 +68394,17 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(renderList), (item) => { + vue.renderList(vue.unref(renderList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "table" }, [ vue.createElementVNode("view", { class: "tpbx", - onClick: ($event) => contract(item) + onClick: ($event) => contract(item2) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "合同号:" + vue.toDisplayString(item.orderCode), + "合同号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -68407,7 +68414,7 @@ ${i3} vue.createElementVNode( "view", null, - "总件数:" + vue.toDisplayString(item.total), + "总件数:" + vue.toDisplayString(item2.total), 1 /* TEXT */ ) @@ -68417,7 +68424,7 @@ ${i3} vue.createElementVNode( "view", null, - "在库件数:" + vue.toDisplayString(item.zktotal), + "在库件数:" + vue.toDisplayString(item2.zktotal), 1 /* TEXT */ ) @@ -68427,7 +68434,7 @@ ${i3} vue.createElementVNode( "view", null, - "盘点件数:" + vue.toDisplayString(item.unTotal), + "盘点件数:" + vue.toDisplayString(item2.unTotal), 1 /* TEXT */ ) @@ -68437,7 +68444,7 @@ ${i3} vue.createElementVNode( "view", null, - "是否库存品: " + vue.toDisplayString(item.isInventory === 0 ? "不是" : "是"), + "是否库存品: " + vue.toDisplayString(item2.isInventory === 0 ? "不是" : "是"), 1 /* TEXT */ ) @@ -68447,7 +68454,7 @@ ${i3} vue.createElementVNode( "view", null, - "是否零担: " + vue.toDisplayString(item.isZero === 0 ? "不是" : "是"), + "是否零担: " + vue.toDisplayString(item2.isZero === 0 ? "不是" : "是"), 1 /* TEXT */ ) @@ -68491,17 +68498,17 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(renderList), (item) => { + vue.renderList(vue.unref(renderList), (item2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "table" }, [ vue.createElementVNode("view", { class: "tpbx", - onClick: ($event) => goTrayDetails(item) + onClick: ($event) => goTrayDetails(item2) }, [ vue.createElementVNode("image", { src: "/pagesHome/static/kuweiicon.png" }), vue.createElementVNode( "view", null, - "托盘码:" + vue.toDisplayString(item.trayCode), + "托盘码:" + vue.toDisplayString(item2.trayCode), 1 /* TEXT */ ) @@ -68511,7 +68518,7 @@ ${i3} vue.createElementVNode( "view", null, - "总件数:" + vue.toDisplayString(item.total), + "总件数:" + vue.toDisplayString(item2.total), 1 /* TEXT */ ) @@ -68521,7 +68528,7 @@ ${i3} vue.createElementVNode( "view", null, - "货物类型:" + vue.toDisplayString(item.goodsType), + "货物类型:" + vue.toDisplayString(item2.goodsType), 1 /* TEXT */ ) @@ -68531,7 +68538,7 @@ ${i3} vue.createElementVNode( "view", null, - "盘点件数:" + vue.toDisplayString(item.unTotal), + "盘点件数:" + vue.toDisplayString(item2.unTotal), 1 /* TEXT */ ) @@ -68820,9 +68827,9 @@ ${i3} if (!val.questChildVOList) val.cargoName = 10; else { - val.questChildVOList.forEach((item) => { - if (item.questNum !== 0) - val.cargoName = Number(item.cargoName); + val.questChildVOList.forEach((item2) => { + if (item2.questNum !== 0) + val.cargoName = Number(item2.cargoName); }); } if (Number(val.questStatus) === 1) { @@ -69180,15 +69187,15 @@ ${i3} details.scancode = details.searchCode; scandata(); }; - const editOrderCode = (item) => { - if (!item.isManuallyAdd) + const editOrderCode = (item2) => { + if (!item2.isManuallyAdd) return; - details.addInfo.orderCode = item.orderCode; + details.addInfo.orderCode = item2.orderCode; popUp_Add.value.setDetails({ title: "修改合同号", showPopUp: true, success() { - item.orderCode = details.addInfo.orderCode; + item2.orderCode = details.addInfo.orderCode; details.addInfo.orderCode = ""; details.addInfo = {}; popUp_Add.value.details.showPopUp = false; @@ -69199,13 +69206,13 @@ ${i3} } }); }; - const editZero = (item) => { - if (!item.isManuallyAdd) + const editZero = (item2) => { + if (!item2.isManuallyAdd) return; - details.addInfo.waybillNumber = item.waybillNumber; - details.addInfo.orderCode = item.orderCode; - details.addInfo.stockNum = item.stockNum; - details.addInfo.materialName = item.materialName; + details.addInfo.waybillNumber = item2.waybillNumber; + details.addInfo.orderCode = item2.orderCode; + details.addInfo.stockNum = item2.stockNum; + details.addInfo.materialName = item2.materialName; popUp_AddZero.value.setDetails({ title: "修改零担信息", showPopUp: true, @@ -69226,11 +69233,11 @@ ${i3} title: "数量为大于0的数字", icon: "none" }); - item.orderCode = details.addInfo.orderCode; - item.waybillNumber = details.addInfo.waybillNumber; - item.stockNum = _number; - item.materialName = details.addInfo.materialName; - item.stockNum = _number; + item2.orderCode = details.addInfo.orderCode; + item2.waybillNumber = details.addInfo.waybillNumber; + item2.stockNum = _number; + item2.materialName = details.addInfo.materialName; + item2.stockNum = _number; details.addInfo.orderCode = ""; details.addInfo = {}; popUp_AddZero.value.details.showPopUp = false; @@ -69241,9 +69248,9 @@ ${i3} } }); }; - const handleShowDetails = (item) => { - formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1358", "item :>> ", item); - details.detailsInfo = item; + const handleShowDetails = (item2) => { + formatAppLog("log", "at pagesTask/pages/dynamicCheckDetails/dynamicCheckDetails.vue:1358", "item :>> ", item2); + details.detailsInfo = item2; popUp_Details.value.setDetails({ title: "详情", showPopUp: true, @@ -69439,8 +69446,8 @@ ${i3} }); } } - details.scanNum = [...details.orderList, ...details.stockList].reduce((curr, item) => { - if (item.questStatus === 1) + details.scanNum = [...details.orderList, ...details.stockList].reduce((curr, item2) => { + if (item2.questStatus === 1) return curr + 1; return curr; }, 0); @@ -69470,12 +69477,12 @@ ${i3} const handleShowSelect = (index2) => { details.materialChooseIndex = index2 === details.materialChooseIndex ? 0 : index2; }; - const handleChooseMaterial = (item) => { - details.addInfo.orderCode = item.orderCode; - details.addInfo.incomingBatch = item.incomingBatch; - details.addInfo.marketName = item.marketName; - details.addInfo.clientName = item.marketName; - details.addInfo.marketId = item.marketId; + const handleChooseMaterial = (item2) => { + details.addInfo.orderCode = item2.orderCode; + details.addInfo.incomingBatch = item2.incomingBatch; + details.addInfo.marketName = item2.marketName; + details.addInfo.clientName = item2.marketName; + details.addInfo.marketId = item2.marketId; handleShowSelect(0); }; const handleShowMarket = async () => { @@ -70242,10 +70249,10 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(details.renderList, (item) => { + vue.renderList(details.renderList, (item2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, - { key: item }, + { key: item2 }, [ vue.createCommentVNode(" 定制品 "), vue.createElementVNode("view", { @@ -70257,7 +70264,7 @@ ${i3} }) }, [ vue.withDirectives(vue.createElementVNode("view", { - onClick: vue.withModifiers(($event) => handleItemChoose(item), ["stop"]) + onClick: vue.withModifiers(($event) => handleItemChoose(item2), ["stop"]) }, [ vue.createCommentVNode(" 被选中 "), vue.withDirectives(vue.createElementVNode( @@ -70271,7 +70278,7 @@ ${i3} 512 /* NEED_PATCH */ ), [ - [vue.vShow, item.isChoose] + [vue.vShow, item2.isChoose] ]), vue.createCommentVNode(" 不被选中 "), vue.withDirectives(vue.createElementVNode( @@ -70285,7 +70292,7 @@ ${i3} 512 /* NEED_PATCH */ ), [ - [vue.vShow, !item.isChoose] + [vue.vShow, !item2.isChoose] ]) ], 8, ["onClick"]), [ [vue.vShow, vue.unref(showControl)] @@ -70295,41 +70302,41 @@ ${i3} vue.unref(tabBarCode) === 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "main_render_item", - onClick: ($event) => handleShowDetails(item) + onClick: ($event) => handleShowDetails(item2) }, [ vue.createElementVNode( "view", null, - "包条码: " + vue.toDisplayString(item.orderPackageCode || "暂无数据"), + "包条码: " + vue.toDisplayString(item2.orderPackageCode || "暂无数据"), 1 /* TEXT */ ), details.pageType !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, - style: vue.normalizeStyle({ color: item.isManuallyAdd ? "#f00" : "#000" }), - onClick: ($event) => editOrderCode(item) - }, " 合同号: " + vue.toDisplayString(item.orderCode || "暂无数据"), 13, ["onClick"])) : vue.createCommentVNode("v-if", true) - ], 8, ["onClick"])) : vue.unref(tabBarCode) === 2 && Number(item.questTarget) === 2 ? (vue.openBlock(), vue.createElementBlock( + style: vue.normalizeStyle({ color: item2.isManuallyAdd ? "#f00" : "#000" }), + onClick: ($event) => editOrderCode(item2) + }, " 合同号: " + vue.toDisplayString(item2.orderCode || "暂无数据"), 13, ["onClick"])) : vue.createCommentVNode("v-if", true) + ], 8, ["onClick"])) : vue.unref(tabBarCode) === 2 && Number(item2.questTarget) === 2 ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 1 }, [ vue.createCommentVNode(" 零担 "), vue.createElementVNode("view", { class: "main_render_item", - style: vue.normalizeStyle({ color: item.isManuallyAdd ? "#f00" : "#000" }), - onClick: ($event) => editZero(item) + style: vue.normalizeStyle({ color: item2.isManuallyAdd ? "#f00" : "#000" }), + onClick: ($event) => editZero(item2) }, [ vue.createElementVNode( "view", null, - "运单号: " + vue.toDisplayString(item.waybillNumber || "暂无数据"), + "运单号: " + vue.toDisplayString(item2.waybillNumber || "暂无数据"), 1 /* TEXT */ ), details.pageType !== 3 ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0 }, - " 合同号: " + vue.toDisplayString(item.orderCode || "暂无数据"), + " 合同号: " + vue.toDisplayString(item2.orderCode || "暂无数据"), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true) @@ -70339,21 +70346,21 @@ ${i3} /* STABLE_FRAGMENT */ )) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 库存品 "), - vue.unref(tabBarCode) === 2 && Number(item.questTarget) === 3 ? (vue.openBlock(), vue.createElementBlock("view", { + vue.unref(tabBarCode) === 2 && Number(item2.questTarget) === 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "main_render_item" }, [ vue.createElementVNode( "view", null, - "物料编码: " + vue.toDisplayString(item.materialCode || "暂无数据"), + "物料编码: " + vue.toDisplayString(item2.materialCode || "暂无数据"), 1 /* TEXT */ ), details.pageType !== 3 ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0 }, - " 合同号: " + vue.toDisplayString(item.orderCode || "暂无数据"), + " 合同号: " + vue.toDisplayString(item2.orderCode || "暂无数据"), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true) @@ -70367,7 +70374,7 @@ ${i3} vue.createElementVNode( "view", null, - vue.toDisplayString(item.positionCode || "暂无数据"), + vue.toDisplayString(item2.positionCode || "暂无数据"), 1 /* TEXT */ ) @@ -70382,7 +70389,7 @@ ${i3} vue.createElementVNode( "view", null, - vue.toDisplayString(item.materialName || "暂无数据"), + vue.toDisplayString(item2.materialName || "暂无数据"), 1 /* TEXT */ ) @@ -70392,7 +70399,7 @@ ${i3} vue.createElementVNode( "view", null, - vue.toDisplayString(item.stockNum || "暂无数据"), + vue.toDisplayString(item2.stockNum || "暂无数据"), 1 /* TEXT */ ) @@ -70403,7 +70410,7 @@ ${i3} )) : (vue.openBlock(), vue.createElementBlock( "view", { key: 1 }, - " 状态: " + vue.toDisplayString(Number(item.cargoName) === 10 ? "在库" : (details.stateArr.find((val) => val.code === Number(item.cargoName)) || {}).title || "暂无数据"), + " 状态: " + vue.toDisplayString(Number(item2.cargoName) === 10 ? "在库" : (details.stateArr.find((val) => val.code === Number(item2.cargoName)) || {}).title || "暂无数据"), 1 /* TEXT */ )) @@ -70412,7 +70419,7 @@ ${i3} vue.unref(tabBarCode) !== 1 ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0 }, - " 状态: " + vue.toDisplayString(Number(item.cargoName) === 10 ? "在库" : (details.stateArr.find((val) => val.code === Number(item.cargoName)) || {}).title || "暂无数据"), + " 状态: " + vue.toDisplayString(Number(item2.cargoName) === 10 ? "在库" : (details.stateArr.find((val) => val.code === Number(item2.cargoName)) || {}).title || "暂无数据"), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true), @@ -70421,7 +70428,7 @@ ${i3} vue.createElementVNode( "text", { class: "main_render_item_type" }, - vue.toDisplayString(details.typeArr.find((val) => val.code === Number(item.questTarget) || {}).title || "暂无数据"), + vue.toDisplayString(details.typeArr.find((val) => val.code === Number(item2.questTarget) || {}).title || "暂无数据"), 1 /* TEXT */ ) @@ -70433,10 +70440,10 @@ ${i3} { class: vue.normalizeClass({ main_render_item_type: true, - active: Number(item.questStatus) !== 1 + active: Number(item2.questStatus) !== 1 }) }, - vue.toDisplayString(details.checkStatus.find((val) => val.code === Number(item.questStatus)).title), + vue.toDisplayString(details.checkStatus.find((val) => val.code === Number(item2.questStatus)).title), 3 /* TEXT, CLASS */ ) @@ -70444,12 +70451,12 @@ ${i3} vue.createElementVNode("view", { class: "button_box" }, [ vue.createElementVNode("view", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]), details.pageType !== 4 && details.pageType !== 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "button", - onClick: ($event) => handleItemUp(item) + onClick: ($event) => handleItemUp(item2) }, " 上架 ", 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ]) ]) @@ -70514,17 +70521,17 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(details.stateArr, (item, index2) => { + vue.renderList(details.stateArr, (item2, index2) => { return vue.openBlock(), vue.createElementBlock( "view", { - key: item, + key: item2, class: vue.normalizeClass({ popUp_row: true, mr10: index2 % 2 === 0 }) }, [ vue.createElementVNode("view", { class: "popUp_row_item", - onClick: vue.withModifiers(($event) => handleCheck(item), ["stop"]) + onClick: vue.withModifiers(($event) => handleCheck(item2), ["stop"]) }, [ vue.createCommentVNode(" 被选中 "), vue.withDirectives(vue.createElementVNode( @@ -70538,7 +70545,7 @@ ${i3} 512 /* NEED_PATCH */ ), [ - [vue.vShow, item.isCheck] + [vue.vShow, item2.isCheck] ]), vue.createCommentVNode(" 不被选中 "), vue.withDirectives(vue.createElementVNode( @@ -70552,25 +70559,25 @@ ${i3} 512 /* NEED_PATCH */ ), [ - [vue.vShow, !item.isCheck] + [vue.vShow, !item2.isCheck] ]), vue.createElementVNode( "view", { class: "popUp_row_title" }, - vue.toDisplayString(item.title), + vue.toDisplayString(item2.title), 1 /* TEXT */ ) ], 8, ["onClick"]), vue.createCommentVNode(" 输入框 "), vue.withDirectives(vue.createElementVNode("input", { - class: vue.normalizeClass({ input: true, active: item.isCheck }), + class: vue.normalizeClass({ input: true, active: item2.isCheck }), type: "number", - onBlur: () => inputNum(item), - disabled: !item.isCheck, - "onUpdate:modelValue": ($event) => item.value = $event + onBlur: () => inputNum(item2), + disabled: !item2.isCheck, + "onUpdate:modelValue": ($event) => item2.value = $event }, null, 42, ["onBlur", "disabled", "onUpdate:modelValue"]), [ - [vue.vModelText, item.value] + [vue.vModelText, item2.value] ]), vue.createCommentVNode(' '), vue.createCommentVNode(" 在库数 "), @@ -70710,9 +70717,9 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(details.addType, (item) => { + vue.renderList(details.addType, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item, + key: item2, class: "popUp_row_item", onClick: _cache[8] || (_cache[8] = vue.withModifiers( () => { @@ -70733,7 +70740,7 @@ ${i3} 512 /* NEED_PATCH */ ), [ - [vue.vShow, item.isCheck] + [vue.vShow, item2.isCheck] ]), vue.createCommentVNode(" 不被选中 "), vue.withDirectives(vue.createElementVNode( @@ -70747,12 +70754,12 @@ ${i3} 512 /* NEED_PATCH */ ), [ - [vue.vShow, !item.isCheck] + [vue.vShow, !item2.isCheck] ]), vue.createElementVNode( "view", { class: "popUp_row_title" }, - vue.toDisplayString(item.title), + vue.toDisplayString(item2.title), 1 /* TEXT */ ) @@ -71648,7 +71655,7 @@ ${i3} details.showUpData = true; details.isBatch = true; } - function handleState(item) { + function handleState(item2) { try { const checkSectionList = [ { @@ -71687,7 +71694,7 @@ ${i3} title: "修改状态", isshow: true, tipstate: 6, - list: [{ title: "在库", value: item.stockNum }], + list: [{ title: "在库", value: item2.stockNum }], checkSectionList, checklist: [], inputtext: "", @@ -71709,9 +71716,9 @@ ${i3} }); } const questDetailList = [{ - id: item.id, + id: item2.id, // 在库数 - stockNum: item.stockNum, + stockNum: item2.stockNum, // 丢失 lossNum: checkSectionList2[0].value, // 配送 @@ -71741,7 +71748,7 @@ ${i3} title: "修改状态", isshow: true, tipstate: 6, - list: [{ title: "在库", value: item.stockNum }], + list: [{ title: "在库", value: item2.stockNum }], checkSectionList, checklist: [], inputtext: "", @@ -71763,9 +71770,9 @@ ${i3} }); } const questDetailList = [{ - id: item.id, + id: item2.id, // 在库数 - stockNum: item.stockNum, + stockNum: item2.stockNum, // 丢失 lossNum: checkSectionList2[0].value, // 配送 @@ -71963,11 +71970,11 @@ ${i3} } }); } - function upDataItem(item) { + function upDataItem(item2) { details.isUpScan = true; details.showUpData = true; details.isBatch = false; - details.upItme = item; + details.upItme = item2; } async function upDataForm() { try { @@ -72222,16 +72229,16 @@ ${i3} vue.unref(renderList).length !== 0 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(renderList), (item, index2) => { + vue.renderList(vue.unref(renderList), (item2, index2) => { return vue.openBlock(), vue.createElementBlock( "view", { - class: vue.normalizeClass(["list", `list ${details.activeColor[item.questStatus]}`]), - key: item + class: vue.normalizeClass(["list", `list ${details.activeColor[item2.questStatus]}`]), + key: item2 }, [ vue.createCommentVNode(" 复选框 "), - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "leftIcon" }, [ @@ -72262,7 +72269,7 @@ ${i3} key: 1, class: "rightMsg" }, [ - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -72270,11 +72277,11 @@ ${i3} vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-around" } }, [ vue.createElementVNode("text", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]), vue.createElementVNode("text", { class: "button", - onClick: ($event) => upDataItem(item) + onClick: ($event) => upDataItem(item2) }, "上架", 8, ["onClick"]) ]) ])) : vue.createCommentVNode("v-if", true), @@ -72283,7 +72290,7 @@ ${i3} vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.ordePackageCode), + "包条码:" + vue.toDisplayString(item2.ordePackageCode), 1 /* TEXT */ ) @@ -72293,7 +72300,7 @@ ${i3} vue.createElementVNode( "view", null, - "合同号:" + vue.toDisplayString(item.orderCode), + "合同号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -72303,7 +72310,7 @@ ${i3} vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item.positionCode), + "库位:" + vue.toDisplayString(item2.positionCode), 1 /* TEXT */ ) @@ -72318,7 +72325,7 @@ ${i3} [ vue.createCommentVNode(" 零担 "), vue.createElementVNode("view", { class: "rightMsg" }, [ - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -72326,11 +72333,11 @@ ${i3} vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-around" } }, [ vue.createElementVNode("text", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]), vue.createElementVNode("text", { class: "button", - onClick: ($event) => upDataItem(item) + onClick: ($event) => upDataItem(item2) }, "上架", 8, ["onClick"]) ]) ])) : vue.createCommentVNode("v-if", true), @@ -72339,7 +72346,7 @@ ${i3} vue.createElementVNode( "view", null, - "物料编码:" + vue.toDisplayString(item.materialCode), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -72349,7 +72356,7 @@ ${i3} vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.marketName), + "物料名称:" + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -72359,7 +72366,7 @@ ${i3} vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.stockNum), + "数量:" + vue.toDisplayString(item2.stockNum), 1 /* TEXT */ ) @@ -72369,7 +72376,7 @@ ${i3} vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item.positionCode), + "库位:" + vue.toDisplayString(item2.positionCode), 1 /* TEXT */ ) @@ -72388,7 +72395,7 @@ ${i3} [ vue.createCommentVNode(" 库存品 "), vue.createElementVNode("view", { class: "rightMsg" }, [ - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -72396,11 +72403,11 @@ ${i3} vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-around" } }, [ vue.createElementVNode("text", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]), vue.createElementVNode("text", { class: "button", - onClick: ($event) => upDataItem(item) + onClick: ($event) => upDataItem(item2) }, "上架", 8, ["onClick"]) ]) ])) : vue.createCommentVNode("v-if", true), @@ -72409,7 +72416,7 @@ ${i3} vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -72423,7 +72430,7 @@ ${i3} vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.stockNum), + "数量:" + vue.toDisplayString(item2.stockNum), 1 /* TEXT */ ) @@ -72433,7 +72440,7 @@ ${i3} vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item.positionCode), + "库位:" + vue.toDisplayString(item2.positionCode), 1 /* TEXT */ ) @@ -72838,7 +72845,7 @@ ${i3} } }); } - function handleState(item) { + function handleState(item2) { try { const checkSectionList = [ { @@ -72876,7 +72883,7 @@ ${i3} title: "修改状态", isshow: true, tipstate: 6, - list: [{ title: "在库", value: item.stockNum }], + list: [{ title: "在库", value: item2.stockNum }], checkSectionList, checklist: [], inputtext: "", @@ -72898,9 +72905,9 @@ ${i3} }); } const questDetailList = [{ - id: item.id, + id: item2.id, // 在库数 - stockNum: item.stockNum, + stockNum: item2.stockNum, // 丢失 lossNum: checkSectionList2[0].value, // 配送 @@ -73197,16 +73204,16 @@ ${i3} vue.unref(renderList) && vue.unref(renderList).length !== 0 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(renderList), (item, index2) => { + vue.renderList(vue.unref(renderList), (item2, index2) => { return vue.openBlock(), vue.createElementBlock( "view", { - class: vue.normalizeClass(`list ${details.activeColor[item.questStatus]}`), - key: item + class: vue.normalizeClass(`list ${details.activeColor[item2.questStatus]}`), + key: item2 }, [ vue.createCommentVNode(" 复选框 "), - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "leftIcon" }, [ @@ -73221,7 +73228,7 @@ ${i3} key: 1, class: "rightMsg" }, [ - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -73229,7 +73236,7 @@ ${i3} vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-between" } }, [ vue.createElementVNode("text", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]) ]) ])) : vue.createCommentVNode("v-if", true), @@ -73238,7 +73245,7 @@ ${i3} vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.ordePackageCode), + "包条码:" + vue.toDisplayString(item2.ordePackageCode), 1 /* TEXT */ ) @@ -73248,7 +73255,7 @@ ${i3} vue.createElementVNode( "view", null, - "合同号:" + vue.toDisplayString(item.orderCode), + "合同号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -73258,7 +73265,7 @@ ${i3} vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item.positionCode), + "库位:" + vue.toDisplayString(item2.positionCode), 1 /* TEXT */ ) @@ -73278,7 +73285,7 @@ ${i3} vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-between" } }, [ vue.createElementVNode("text", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]) ]) ]), @@ -73287,7 +73294,7 @@ ${i3} vue.createElementVNode( "view", null, - "物料编码:" + vue.toDisplayString(item.materialCode), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -73297,7 +73304,7 @@ ${i3} vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.marketName), + "物料名称:" + vue.toDisplayString(item2.marketName), 1 /* TEXT */ ) @@ -73307,7 +73314,7 @@ ${i3} vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.stockNum), + "数量:" + vue.toDisplayString(item2.stockNum), 1 /* TEXT */ ) @@ -73317,7 +73324,7 @@ ${i3} vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item.positionCode), + "库位:" + vue.toDisplayString(item2.positionCode), 1 /* TEXT */ ) @@ -73341,7 +73348,7 @@ ${i3} vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-between" } }, [ vue.createElementVNode("text", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]) ]) ]), @@ -73350,7 +73357,7 @@ ${i3} vue.createElementVNode( "view", null, - "订单号:" + vue.toDisplayString(item.orderCode), + "订单号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -73364,7 +73371,7 @@ ${i3} vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.stockNum), + "数量:" + vue.toDisplayString(item2.stockNum), 1 /* TEXT */ ) @@ -73374,7 +73381,7 @@ ${i3} vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item.positionCode), + "库位:" + vue.toDisplayString(item2.positionCode), 1 /* TEXT */ ) @@ -73797,11 +73804,11 @@ ${i3} details.showUpData = true; details.isBatch = true; } - function upDataItem(item) { + function upDataItem(item2) { details.isUpScan = true; details.showUpData = true; details.isBatch = false; - details.upItme = item; + details.upItme = item2; } async function upDataForm() { try { @@ -73839,7 +73846,7 @@ ${i3} details.isBatch = false; } } - function handleState(item) { + function handleState(item2) { try { const checkSectionList = [ { @@ -73878,7 +73885,7 @@ ${i3} title: "修改状态", isshow: true, tipstate: 6, - list: [{ title: "在库", value: item.quantity }], + list: [{ title: "在库", value: item2.quantity }], checkSectionList, checklist: [], inputtext: "", @@ -73900,9 +73907,9 @@ ${i3} }); } const questDetailList = [{ - id: item.questDetailId, + id: item2.questDetailId, // 在库数 - stockNum: item.quantity, + stockNum: item2.quantity, // 丢失 lossNum: checkSectionList2[0].value, // 配送 @@ -73932,7 +73939,7 @@ ${i3} title: "修改状态", isshow: true, tipstate: 6, - list: [{ title: "在库", value: item.quantity }], + list: [{ title: "在库", value: item2.quantity }], checkSectionList, checklist: [], inputtext: "", @@ -73954,9 +73961,9 @@ ${i3} }); } const questDetailList = [{ - id: item.questDetailId, + id: item2.questDetailId, // 在库数 - stockNum: item.quantity, + stockNum: item2.quantity, // 丢失 lossNum: checkSectionList2[0].value, // 配送 @@ -74325,17 +74332,17 @@ ${i3} vue.unref(renderList).length !== 0 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(renderList), (item, index2) => { + vue.renderList(vue.unref(renderList), (item2, index2) => { return vue.openBlock(), vue.createElementBlock( "view", { - class: vue.normalizeClass(["list", `list ${details.activeColor[item.questStatus]}`]), - key: item + class: vue.normalizeClass(["list", `list ${details.activeColor[item2.questStatus]}`]), + key: item2 }, [ vue.createCommentVNode(" 复选框 "), vue.createElementVNode("view", { class: "leftIcon" }, [ - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("image", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("image", { key: 0, class: "checkImage", onClick: ($event) => details.checkList[index2] = !details.checkList[index2], @@ -74368,7 +74375,7 @@ ${i3} \r `), vue.createElementVNode("view", { class: "rightMsg" }, [ - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -74376,11 +74383,11 @@ ${i3} vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-around" } }, [ vue.createElementVNode("text", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]), vue.createElementVNode("text", { class: "button", - onClick: ($event) => upDataItem(item) + onClick: ($event) => upDataItem(item2) }, "上架", 8, ["onClick"]) ]) ])) : vue.createCommentVNode("v-if", true), @@ -74389,7 +74396,7 @@ ${i3} vue.createElementVNode( "view", null, - "包条码:" + vue.toDisplayString(item.orderPackageCode), + "包条码:" + vue.toDisplayString(item2.orderPackageCode), 1 /* TEXT */ ) @@ -74399,7 +74406,7 @@ ${i3} vue.createElementVNode( "view", null, - "合同号:" + vue.toDisplayString(item.orderCode), + "合同号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -74409,7 +74416,7 @@ ${i3} vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item.allocation), + "库位:" + vue.toDisplayString(item2.allocation), 1 /* TEXT */ ) @@ -74419,7 +74426,7 @@ ${i3} vue.createElementVNode( "view", null, - "状态:" + vue.toDisplayString(item.currentStatus == 1 ? "在库" : "1"), + "状态:" + vue.toDisplayString(item2.currentStatus == 1 ? "在库" : "1"), 1 /* TEXT */ ) @@ -74434,7 +74441,7 @@ ${i3} [ vue.createCommentVNode(" 零担 "), vue.createElementVNode("view", { class: "rightMsg" }, [ - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -74442,11 +74449,11 @@ ${i3} vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-around" } }, [ vue.createElementVNode("text", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]), vue.createElementVNode("text", { class: "button", - onClick: ($event) => upDataItem(item) + onClick: ($event) => upDataItem(item2) }, "上架", 8, ["onClick"]) ]) ])) : vue.createCommentVNode("v-if", true), @@ -74455,7 +74462,7 @@ ${i3} vue.createElementVNode( "view", null, - "合同号:" + vue.toDisplayString(item.orderCode), + "合同号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -74465,7 +74472,7 @@ ${i3} vue.createElementVNode( "view", null, - "运单号:" + vue.toDisplayString(item.waybillNub), + "运单号:" + vue.toDisplayString(item2.waybillNub), 1 /* TEXT */ ) @@ -74475,7 +74482,7 @@ ${i3} vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.quantity), + "数量:" + vue.toDisplayString(item2.quantity), 1 /* TEXT */ ) @@ -74485,7 +74492,7 @@ ${i3} vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item.allocation), + "库位:" + vue.toDisplayString(item2.allocation), 1 /* TEXT */ ) @@ -74504,7 +74511,7 @@ ${i3} [ vue.createCommentVNode(" 库存品 "), vue.createElementVNode("view", { class: "rightMsg" }, [ - item.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.questStatus !== 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tpbx" }, [ @@ -74512,11 +74519,11 @@ ${i3} vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-around" } }, [ vue.createElementVNode("text", { class: "button", - onClick: ($event) => handleState(item) + onClick: ($event) => handleState(item2) }, "处理", 8, ["onClick"]), vue.createElementVNode("text", { class: "button", - onClick: ($event) => upDataItem(item) + onClick: ($event) => upDataItem(item2) }, "上架", 8, ["onClick"]) ]) ])) : vue.createCommentVNode("v-if", true), @@ -74525,7 +74532,7 @@ ${i3} vue.createElementVNode( "view", null, - "合同号:" + vue.toDisplayString(item.orderCode), + "合同号:" + vue.toDisplayString(item2.orderCode), 1 /* TEXT */ ) @@ -74535,7 +74542,7 @@ ${i3} vue.createElementVNode( "view", null, - "库位:" + vue.toDisplayString(item.allocation), + "库位:" + vue.toDisplayString(item2.allocation), 1 /* TEXT */ ) @@ -74548,7 +74555,7 @@ ${i3} vue.createElementVNode( "view", null, - "物料编码:" + vue.toDisplayString(item.materialCode), + "物料编码:" + vue.toDisplayString(item2.materialCode), 1 /* TEXT */ ) @@ -74561,7 +74568,7 @@ ${i3} vue.createElementVNode( "view", null, - "物料名称:" + vue.toDisplayString(item.materialName), + "物料名称:" + vue.toDisplayString(item2.materialName), 1 /* TEXT */ ) @@ -74571,7 +74578,7 @@ ${i3} vue.createElementVNode( "view", null, - "数量:" + vue.toDisplayString(item.quantity), + "数量:" + vue.toDisplayString(item2.quantity), 1 /* TEXT */ ) @@ -74581,7 +74588,7 @@ ${i3} vue.createElementVNode( "view", null, - "状态:" + vue.toDisplayString(item.currentStatus == 1 ? "在库" : ""), + "状态:" + vue.toDisplayString(item2.currentStatus == 1 ? "在库" : ""), 1 /* TEXT */ ) @@ -74855,13 +74862,13 @@ ${i3} const prefix = `u-${name}--`; const classes = {}; if (fixed) { - fixed.map((item) => { - classes[prefix + this[item]] = true; + fixed.map((item2) => { + classes[prefix + this[item2]] = true; }); } if (change) { - change.map((item) => { - this[item] ? classes[prefix + item] = this[item] : delete classes[prefix + item]; + change.map((item2) => { + this[item2] ? classes[prefix + item2] = this[item2] : delete classes[prefix + item2]; }); } return Object.keys(classes); @@ -76060,8 +76067,8 @@ ${i3} const style = {}; for (let i2 = 0; i2 < styleArray.length; i2++) { if (styleArray[i2]) { - const item = styleArray[i2].split(":"); - style[trim(item[0])] = trim(item[1]); + const item2 = styleArray[i2].split(":"); + style[trim(item2[0])] = trim(item2[1]); } } return style; @@ -78345,9 +78352,9 @@ ${i3} success: async (chooseImageRes) => { formatAppLog("log", "at compoment/tiplist/tiplist.vue:308", "chooseImageRes >>>>>>>>", chooseImageRes); const tempFilePaths = chooseImageRes.tempFilePaths; - tempFilePaths.map(async (item) => { + tempFilePaths.map(async (item2) => { formatAppLog("log", "at compoment/tiplist/tiplist.vue:312", 1232131231); - let url2 = await api.upfile(item); + let url2 = await api.upfile(item2); formatAppLog("log", "at compoment/tiplist/tiplist.vue:314", "url :>> ", url2); details.imglist[index2].imgList.push({ urlRoute: url2.link, type: type2, name: url2.originalName }); }); @@ -78356,7 +78363,7 @@ ${i3} } function checkall() { formatAppLog("log", "at compoment/tiplist/tiplist.vue:329", "111 :>> ", 111); - details.list.map((item, index2) => { + details.list.map((item2, index2) => { details.checklist.push(index2); }); } @@ -78392,31 +78399,31 @@ ${i3} details.showPreviewPicture = !details.showPreviewPicture; } let isInputN = null; - function checkInputNum(item) { + function checkInputNum(item2) { if (isInputN) clearTimeout(isInputN); isInputN = setTimeout(() => { - const maxNum = details.list[0].value - details.checkSectionList.reduce((curr, val) => curr + parseInt(val.value), 0) + parseInt(item.value); + const maxNum = details.list[0].value - details.checkSectionList.reduce((curr, val) => curr + parseInt(val.value), 0) + parseInt(item2.value); formatAppLog("log", "at compoment/tiplist/tiplist.vue:381", "maxNum :>> ", maxNum); - item.value = parseInt(item.value); - if (item.value <= 0 || isNaN(item.value)) - item.value = 0; - if (item.value >= maxNum) - item.value = maxNum; + item2.value = parseInt(item2.value); + if (item2.value <= 0 || isNaN(item2.value)) + item2.value = 0; + if (item2.value >= maxNum) + item2.value = maxNum; isInputN = null; clearTimeout(isInputN); }, 500); } let isInput = null; - function inputNum(item) { + function inputNum(item2) { if (isInput) clearTimeout(isInput); isInput = setTimeout(() => { - 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; + item2.value = parseInt(item2.value); + if (item2.value <= item2.minNum || isNaN(item2.value)) + item2.value = item2.minNum; + if (item2.value >= item2.maxNum) + item2.value = item2.maxNum; clearTimeout(isInput); }, 300); } @@ -78504,7 +78511,7 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(list), (item, index2) => { + vue.renderList(vue.unref(list), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { onClick: ($event) => checkitem(index2) }, [ @@ -78514,7 +78521,7 @@ ${i3} vue.createElementVNode( "view", null, - vue.toDisplayString(item), + vue.toDisplayString(item2), 1 /* TEXT */ ) @@ -78539,25 +78546,25 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(imglist), (item, index2) => { + vue.renderList(vue.unref(imglist), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.dictKey + key: item2.dictKey }, [ vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-between", "align-items": "center" } }, [ vue.createCommentVNode(" 必传照片不足时显示提示文字 "), vue.createElementVNode( "text", { - class: vue.normalizeClass({ "tpstitl": true, "start": vue.unref(ImagesRequiredFields).find((val) => val.key === item.dictKey), "showTitle": vue.unref(ImagesRequiredFields).find((val) => val.key === item.dictKey) && item.imgList.length < 1 }) + class: vue.normalizeClass({ "tpstitl": true, "start": vue.unref(ImagesRequiredFields).find((val) => val.key === item2.dictKey), "showTitle": vue.unref(ImagesRequiredFields).find((val) => val.key === item2.dictKey) && item2.imgList.length < 1 }) }, - vue.toDisplayString(item.dictValue), + vue.toDisplayString(item2.dictValue), 3 /* TEXT, CLASS */ ), vue.createCommentVNode(" 有模版照片时, 显示模版按钮 "), - Object.keys(vue.unref(details).templatePhotos).includes(item.dictValue) ? (vue.openBlock(), vue.createElementBlock("text", { + Object.keys(vue.unref(details).templatePhotos).includes(item2.dictValue) ? (vue.openBlock(), vue.createElementBlock("text", { key: 0, - onClick: ($event) => handleShowImage(vue.unref(details).templatePhotos[item.dictValue]), + onClick: ($event) => handleShowImage(vue.unref(details).templatePhotos[item2.dictValue]), class: "showImageBtn" }, "预览模版", 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ]), @@ -78566,14 +78573,14 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(item.imgList, (value, i2) => { + vue.renderList(item2.imgList, (value, i2) => { return vue.openBlock(), vue.createElementBlock("view", null, [ vue.createElementVNode("image", { src: value.urlRoute, onClick: ($event) => handleShowImage(value.urlRoute) }, null, 8, ["src", "onClick"]), vue.createElementVNode("image", { - onClick: ($event) => remove(index2, i2, item.dictKey), + onClick: ($event) => remove(index2, i2, item2.dictKey), src: _imports_0$3 }, null, 8, ["onClick"]) ]); @@ -78581,9 +78588,9 @@ ${i3} 256 /* UNKEYED_FRAGMENT */ )), - item.imgList.length < vue.unref(maximglength) ? (vue.openBlock(), vue.createElementBlock("view", { + item2.imgList.length < vue.unref(maximglength) ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, - onClick: ($event) => updateimg(item.dictKey, index2) + onClick: ($event) => updateimg(item2.dictKey, index2) }, [ vue.createElementVNode("image", { src: "/static/add.png" }) ], 8, ["onClick"])) : vue.createCommentVNode("v-if", true) @@ -78617,7 +78624,7 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(inpList), (item, index2) => { + vue.renderList(vue.unref(inpList), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "inpNumList", onClick: ($event) => checkitem(index2) @@ -78625,37 +78632,37 @@ ${i3} vue.createElementVNode( "view", { class: "inpNum-title" }, - " 物料名称: " + vue.toDisplayString(item.title), + " 物料名称: " + vue.toDisplayString(item2.title), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "inpNum-title" }, - " 物料总数: " + vue.toDisplayString(item.maxNum), + " 物料总数: " + vue.toDisplayString(item2.maxNum), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "inpNum-value" }, [ vue.createElementVNode("view", { class: "" }, " 物料数量:  "), vue.createCommentVNode(" 当输入框类型为数字类型时 "), - item.type.toLocaleLowerCase() === "number" && !item.disabled ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("input", { + item2.type.toLocaleLowerCase() === "number" && !item2.disabled ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("input", { key: 0, class: "inpNum", - placeholder: item.placeholder, - disabled: item.disabled, + placeholder: item2.placeholder, + disabled: item2.disabled, type: "number", - "onUpdate:modelValue": ($event) => item.value = $event, - onInput: ($event) => inputNum(item) + "onUpdate:modelValue": ($event) => item2.value = $event, + onInput: ($event) => inputNum(item2) }, null, 40, ["placeholder", "disabled", "onUpdate:modelValue", "onInput"])), [ - [vue.vModelText, item.value] - ]) : item.disabled ? (vue.openBlock(), vue.createElementBlock( + [vue.vModelText, item2.value] + ]) : item2.disabled ? (vue.openBlock(), vue.createElementBlock( "text", { key: 1, style: { "flex": "1" } }, - vue.toDisplayString(item.value), + vue.toDisplayString(item2.value), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true) @@ -78917,7 +78924,7 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList(vue.unref(details).checkSectionList, (item, index2) => { + vue.renderList(vue.unref(details).checkSectionList, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", null, [ vue.createElementVNode("image", { onClick: ($event) => singlecheckitem(index2), @@ -78927,18 +78934,18 @@ ${i3} vue.createElementVNode( "view", { style: { "flex": "none", "width": "60px" } }, - vue.toDisplayString(item.title), + vue.toDisplayString(item2.title), 1 /* TEXT */ ), vue.withDirectives(vue.createElementVNode("input", { type: "number", style: { "border": "1px solid #000" }, - "onUpdate:modelValue": ($event) => item.value = $event, - onInput: ($event) => checkInputNum(item), + "onUpdate:modelValue": ($event) => item2.value = $event, + onInput: ($event) => checkInputNum(item2), disabled: !vue.unref(details).checklist.includes(index2) }, null, 40, ["onUpdate:modelValue", "onInput", "disabled"]), [ - [vue.vModelText, item.value] + [vue.vModelText, item2.value] ]) ]); }), @@ -79384,9 +79391,9 @@ ${i3} vue.unref(bluetoothList).length !== 0 ? (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 0 }, - vue.renderList(vue.unref(bluetoothList), (item, index2) => { + vue.renderList(vue.unref(bluetoothList), (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item, + key: item2, class: "list-container", onClick: ($event) => handle_single(index2) }, [ @@ -79420,7 +79427,7 @@ ${i3} vue.createElementVNode( "view", { class: "list-item-title" }, - vue.toDisplayString(item.name), + vue.toDisplayString(item2.name), 1 /* TEXT */ ) @@ -79549,14 +79556,14 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($options.showList, (item, index2) => { + vue.renderList($options.showList, (item2, index2) => { return vue.openBlock(), vue.createElementBlock("view", { id: "box", key: index2 }, [ vue.createCommentVNode(" 使用作用域插槽,将遍历后的数据item和index传递出去 "), vue.renderSlot(_ctx.$slots, "default", { - item, + item: item2, $index: index2 }) ]); @@ -79628,14 +79635,14 @@ ${i3} const isOpen = (id) => { return expandedKeys.value.includes(id); }; - const nodeClick = (item) => { - $emit("node-click", item); - if (item.children && item.children.length) { - let index2 = expandedKeys.value.indexOf(item.id); + const nodeClick = (item2) => { + $emit("node-click", item2); + if (item2.children && item2.children.length) { + let index2 = expandedKeys.value.indexOf(item2.id); if (index2 > -1) { expandedKeys.value.splice(index2, 1); } else { - expandedKeys.value.push(item.id); + expandedKeys.value.push(item2.id); } } }; @@ -79646,23 +79653,23 @@ ${i3} (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, - vue.renderList($props.treeData, (item) => { + vue.renderList($props.treeData, (item2) => { return vue.openBlock(), vue.createElementBlock("view", { - key: item.id, + key: item2.id, class: "" }, [ vue.createElementVNode("view", { - class: vue.normalizeClass({ "tree_label": true, "active": item.id === $props.activeId }), - onClick: ($event) => nodeClick(item) + class: vue.normalizeClass({ "tree_label": true, "active": item2.id === $props.activeId }), + onClick: ($event) => nodeClick(item2) }, [ - item.children && item.children.length > 0 ? (vue.openBlock(), vue.createElementBlock("view", { + item2.children && item2.children.length > 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "tree_icon" }, [ vue.createElementVNode( "view", { - class: vue.normalizeClass({ "icon": true, "down": isOpen(item.id) }) + class: vue.normalizeClass({ "icon": true, "down": isOpen(item2.id) }) }, [ vue.createVNode(_component_u_icon, { @@ -79678,7 +79685,7 @@ ${i3} vue.createElementVNode( "text", null, - vue.toDisplayString(item.title), + vue.toDisplayString(item2.title), 1 /* TEXT */ ) @@ -79687,12 +79694,12 @@ ${i3} "view", { class: "tree_item", - style: vue.normalizeStyle({ "display": isOpen(item.id) ? "block" : "none" }) + style: vue.normalizeStyle({ "display": isOpen(item2.id) ? "block" : "none" }) }, [ - item.children && item.children.length > 0 ? (vue.openBlock(), vue.createBlock(_component_MyTree, { + item2.children && item2.children.length > 0 ? (vue.openBlock(), vue.createBlock(_component_MyTree, { key: 0, - treeData: item.children, + treeData: item2.children, onNodeClick: _cache[0] || (_cache[0] = ($event) => $emit("node-click", $event)), activeId: $props.activeId }, null, 8, ["treeData", "activeId"])) : vue.createCommentVNode("v-if", true)