From 278f388cd1c0d967896d93cd27eeb67f00fbfd3c Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Thu, 19 Oct 2023 23:04:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=BA=93=E5=86=85=E8=AF=AD?= =?UTF-8?q?=E9=9F=B3=E5=92=8C=E8=87=AA=E6=8F=90=E6=89=AB=E6=8F=8F=E7=9A=84?= =?UTF-8?q?=E9=9B=B6=E6=8B=85=E7=89=B5=E6=89=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/user.js | 38 +- compoment/tiplist/tiplist.vue | 16 +- config/host.js | 4 +- manifest.json | 4 +- pages/user/user.vue | 2 +- .../CustomerOrdersDetails.vue | 115 +- .../CustomerTrayDetails.vue | 15 +- pagesHome/pages/DownGoods/DownGoods.vue | 20 +- .../OrderSortingDetail/OrderSortingDetail.vue | 14 +- pagesHome/pages/PeopleScanUp/PeopleScanUp.vue | 55 +- .../PeopleSortingDetail.vue | 40 +- .../RelocationAllocationId.vue | 2 +- .../pages/ScanSortingType/ScanSortingType.vue | 5 +- pagesHome/pages/ScanUp/ScanUp.vue | 104 +- .../pages/SelfPScanList/SelfPScanList.vue | 422 ++++-- .../SelfPickupDetails/SelfPickupDetails.vue | 153 +- pagesHome/pages/StockUplist/StockUplist.vue | 4 + .../StockUplistScandetails.vue | 289 ++-- .../lnventorysortinglist.vue | 2 - pagesHome/pages/pickingScan/pickingScan.vue | 2 + .../CustomerOrdersDetails.css | 2 +- unpackage/dist/dev/app-plus/app-service.js | 1318 ++++++++++------- unpackage/dist/dev/app-plus/app.css | 12 +- unpackage/dist/dev/app-plus/manifest.json | 4 +- .../CustomerOrdersDetails.css | 22 + 25 files changed, 1589 insertions(+), 1075 deletions(-) diff --git a/api/user.js b/api/user.js index bda1965..877c3cd 100644 --- a/api/user.js +++ b/api/user.js @@ -151,7 +151,7 @@ export function billLadingdetailList(data) { export function billLadingzeroBillData(data) { return request({ - url: `logpm-distribution/app/billLading/zeroBillData`, + url: `logpm-distribution/app/billLading/zeroBillPackData`, method: "post", data }); @@ -457,6 +457,18 @@ export function billLadinggetInventory(data) { data }); } +/** + * 自提零担订单提交 + * @param {Object} data + */ +export function billLadinggetZeroBillPack(data) { + + return request({ + url: `logpm-distribution/app/billLading/zeroBillPack`, + method: "post", + data + }); +} /** * 自提详情库存品 * @param {Object} data @@ -481,6 +493,18 @@ export function billLadingscan(data) { data }); } +/** + * 自提扫描 -- 零担订单列表的数据 + * @param {Object} data + */ +export function billLadingZeroBillOrderData(data) { + + return request({ + url: `logpm-distribution/app/billLading//zeroBillOrderData`, + method: "post", + data + }); +} /** * 订单分拣列表 * @param {Object} data @@ -961,6 +985,18 @@ export function warehouseUpdownTypedownScanPackage(data) { data }); } +/** + * 下架扫描包件 + * @param {Object} data + */ +export function warehouseUpdownTypedownDownAllocation(data) { + + return request({ + url: `logpm-warehouse/api/warehouseUpdownType/downAllocation`, + method: "post", + data + }); +} /** * 扫描来源托盘 * @param {Object} data diff --git a/compoment/tiplist/tiplist.vue b/compoment/tiplist/tiplist.vue index da778e5..d431c23 100644 --- a/compoment/tiplist/tiplist.vue +++ b/compoment/tiplist/tiplist.vue @@ -71,9 +71,6 @@ :placeholder="item.placeholder" :disabled="item.disabled" type="number" v-model="item.value" @input="inputNum(item)" /> {{item.value}} - - @@ -478,7 +475,7 @@ .scvboxs { width: 100%; - height: 500upx; + max-height: 500upx; } .imgbx { @@ -639,16 +636,21 @@ margin-bottom: 10upx; } + &:last-child { + border-bottom: 0px; + } + .inpNum-value { display: flex; align-items: center; justify-content: space-between; .inpNum { - margin-left: 20upx; + margin-left: 10upx; flex: 1; - padding: 0 10upx; - border: 1upx solid #000; + padding: 5upx 10upx; + border: 1upx solid #afafaf; + border-radius: 10upx; } } } diff --git a/config/host.js b/config/host.js index 8c73905..1597c9e 100644 --- a/config/host.js +++ b/config/host.js @@ -10,9 +10,9 @@ // zhy // const devhost = 'http://192.168.10.48:8888/' // tjj -// const devhost = 'http://192.168.10.29:13000/' +const devhost = 'http://192.168.10.29:13000/' // cyz -const devhost = 'http://192.168.10.75:8777/' +// const devhost = 'http://192.168.10.75:8777/' // 正式 // const devhost = 'http://h5uapi.huitongys.com/' // cg diff --git a/manifest.json b/manifest.json index 9a4afdd..514effb 100644 --- a/manifest.json +++ b/manifest.json @@ -2,8 +2,8 @@ "name" : "货无忧", "appid" : "__UNI__EB22F37", "description" : "", - "versionName" : "1.0.9", - "versionCode" : 109, + "versionName" : "1.0.11", + "versionCode" : 1011, "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { diff --git a/pages/user/user.vue b/pages/user/user.vue index b4607ab..a9f1bb2 100644 --- a/pages/user/user.vue +++ b/pages/user/user.vue @@ -173,7 +173,7 @@ // 获取版本信息 // let version = await utils.getversion() let version = { - version: '1.0.9', + version: '1.0.11', pkName: 'com.hwy.pda' } console.log("version 版本>>>>", version) diff --git a/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue b/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue index a0bb4c0..c0f56bd 100644 --- a/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue +++ b/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue @@ -54,40 +54,57 @@ - - - 订单编号:{{item.orderCode}} + + + + + @@ -208,7 +225,9 @@ details.datalist = response.data.records || [] if (loadingNub.value != 0 && details.isscan) { console.log(loadingNub.value + '件') - utils.ttsspke(loadingNub.value + '件') + setTimeout(() => { + utils.ttsspke(loadingNub.value + '件') + }, 1000) } } function checktype(e) { @@ -247,6 +266,7 @@ const { code, audio } = res // 异常装车 if (code === 5000) { + console.log(123123) utils.ttsspke('不在本次计划, 是否继续装车') // 开启弹出层 @@ -268,6 +288,7 @@ // 提价异常装车请求 const res = await postAbnormalTruckLoading(data) console.log('res :>> ', res); + tiplists.value.setdetails({ isshow: false }) }, cancel: () => { tiplists.value.setdetails({ isshow: false }) @@ -295,7 +316,6 @@ console.log('err :>> ', err); //TODO handle the exception } finally { - tiplists.value.setdetails({ isshow: false }) initpage() } } @@ -308,7 +328,6 @@ details.listcheckindex = index } } - const { listcheckindex, inputtxt, orderStatus, schanvalue, typearr, items, datalist } = toRefs(details) @@ -431,6 +450,7 @@ box-sizing: border-box; position: relative; margin-bottom: 20upx; + overflow: hidden; &:nth-last-child(1) { margin-bottom: 0; @@ -580,4 +600,29 @@ } } } + + .abnormalStyleContainer { + top: -20upx; + left: -20upx; + position: absolute; + padding: 10upx; + border: 1upx solid #f8544b; + border-radius: 50%; + } + + // 异常标签 + .abnormalStyle { + font-size: 28upx; + height: 80upx; + width: 80upx; + display: flex; + align-items: center; + text-align: center; + + color: #f8544b; + padding: 10upx; + border-radius: 50%; + border: 1upx solid #f8544b; + opacity: 0.6; + } \ No newline at end of file diff --git a/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue b/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue index add25b6..92ceec8 100644 --- a/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue +++ b/pagesHome/pages/CustomerTrayDetails/CustomerTrayDetails.vue @@ -106,7 +106,7 @@ orderType: 0, inputtxt: '', listcheckindex: -1, - isscan:false + isscan: false }) const tiplists = ref(null) onLoad((op) => { @@ -136,7 +136,7 @@ const loadingNub = computed(() => { let num = 0 - if (!!details.datalist){ + if (!!details.datalist) { details.datalist.map(item => { if (item.loadingNub) { num += item.loadingNub @@ -181,11 +181,11 @@ // } const res = await distributionTrayDetail(data) console.log('res', res); - const {code } = res + const { code } = res const resData = res.data // 重置数据列表 details.datalist = [] - if (code === 200 && !!resData){ + if (code === 200 && !!resData) { details.datalist = resData.records } if (loadingNub.value != 0 && details.isscan) { @@ -224,11 +224,10 @@ type: 2, barcode: details.scancode } - - data.barcode = 'HTLQ000019' + let res = await deliveryloadingscan(data) console.log('res', res); - const {code} = res + const { code } = res // 语音播报 if (code === 3001 || code === 200) utils.ttsspke(res.audio) initpage() @@ -241,7 +240,7 @@ details.listcheckindex = index } } - + const { listcheckindex, inputtxt, orderStatus, schanvalue, typearr, items, datalist } = toRefs(details) diff --git a/pagesHome/pages/DownGoods/DownGoods.vue b/pagesHome/pages/DownGoods/DownGoods.vue index bfdd07b..cc7e2af 100644 --- a/pagesHome/pages/DownGoods/DownGoods.vue +++ b/pagesHome/pages/DownGoods/DownGoods.vue @@ -62,7 +62,7 @@ 托盘码:{{details.resdata.trayCode}} - + @@ -265,6 +265,7 @@ import { warehouseUpdownTypedownScanPackage, warehouseUpdownTypeupShelfScanAllocation, + warehouseUpdownTypedownDownAllocation, warehouseUpdownTypedownPackage, warehouseUpdownTypedownTrayCode, warehouseUpdownTypedownZeroOrder, @@ -325,7 +326,9 @@ // details.scancode='23072400555-1' // scandata() // },4500) + }) + onShow(() => { uni.$on('scancodedate', function (code) { if (code) { // console.log(code); @@ -334,6 +337,11 @@ } }) }) + + onHide(() => { + uni.$off('scancodedate') + }) + function backun() { uni.navigateBack() } @@ -454,7 +462,7 @@ data = { allocationId: details.resdata.allocationId } - res = await warehouseUpdownTypeupShelfScanAllocation(data) + res = await warehouseUpdownTypedownDownAllocation(data) break; case 3: list = [] @@ -500,7 +508,14 @@ res = await warehouseUpdownTypedownZeroOrder(data) break; } + console.log('res :>> ', res); + uni.hideLoading() if (res.code == 200) { + uni.showToast({ + title: res.msg, + icon: 'none' + }) + utils.ttsspke(res.msg) details.checkdatalist = [] details.datalist = [] details.codelist = [] @@ -513,7 +528,6 @@ title: '下架失败' }) } - uni.hideLoading() } function checkite(item) { if (details.checkdatalist.indexOf(item) == -1) { diff --git a/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue b/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue index edb906d..5a0e592 100644 --- a/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue +++ b/pagesHome/pages/OrderSortingDetail/OrderSortingDetail.vue @@ -114,7 +114,7 @@ onLoad((op) => { details.trayCode = op.trayCode details.trayType = op.trayType - utils.ttsspke('当前打托方式为' + op.pageName) + if (op.pageName) utils.ttsspke('当前打托方式为' + op.pageName) console.log('details.trayType :>> ', details.trayType); if (!op.trayType) { uni.showToast({ @@ -203,12 +203,11 @@ } }) } - if (details?.detauser?.trayNum && details?.detauser?.trayNum > 0 && details.iscan) { - utils.ttsspke('托盘件数' + details.detauser.trayNum + '件') - } } else { } + + return res } async function scandata() { let data = { @@ -218,8 +217,11 @@ } let response = await warehouseTrayTypeorderScanOrderPackageCode(data) console.log(response); - initlist() - utils.ttsspke('') + const res = await initlist() + + if (details?.detauser?.trayNum && details?.detauser?.trayNum > 0) { + utils.ttsspke(details.detauser.trayNum + '件') + } } // watchEffect(()=>{ // if(details?.detauser?.trayNum){ diff --git a/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue b/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue index 9d171f4..3be8330 100644 --- a/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue +++ b/pagesHome/pages/PeopleScanUp/PeopleScanUp.vue @@ -324,7 +324,7 @@ onLoad((op) => { details.pageName = op.pageName details.upshelfScanType = op.type - utils.ttsspke(`当前上架方式为 ${op.pageName}, 请扫描货位`) + if (op.pageName) utils.ttsspke(`当前上架方式为 ${op.pageName}, 请扫描货位`) initmarke() }) @@ -494,7 +494,32 @@ } function uplist() { - utils.ttsspke(`当前待上架${details.uplistarr.length}件, 是否进行上架`) + if (details.uplistarr.length == 0) { + let content = '' + let msg = '' + if (details.allocationId === '') { + content = '请先扫描库位' + msg = '请先扫描库位' + } + else if (Number(details.upshelfScanType) == 4) { + content = '请先扫描托盘码' + msg = '请先扫描托盘码' + } else { + content = '请先扫描包件数据' + msg = '请先扫描包件' + } + uni.showToast({ + title: content, + icon: "none" + }) + utils.ttsspke(msg) + return + } + + // 计算扫描件数总数 + const _totalShelfNum = uplistarr.value.reduce((curr, item) => curr + item.shelfNum, 0) + + utils.ttsspke(`当前待上架${_totalShelfNum}件, 是否进行上架`) tip.value.setdetails({ title: '提示', @@ -503,31 +528,7 @@ isshow: true, isshowcancel: true, success: async () => { - if (details.uplistarr.length == 0) { - let content = '' - if (Number(details.upshelfScanType) == 4) { - content = '请先扫描托盘码' - } else { - content = '请先扫描包件数据' - } - tip.value.setdetails({ - title: '警告', - content, - confirmTxt: '确认', - isshow: true, - isshowcancel: true, - success: () => { - tip.value.setisshow(false) - }, - cancel: () => { - tip.value.setisshow(false) - }, - close: () => { - tip.value.setisshow(false) - } - }) - return - } + uni.showLoading({ mask: true, title: '上架中' diff --git a/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue b/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue index bbbf471..d6bc592 100644 --- a/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue +++ b/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail.vue @@ -173,6 +173,7 @@ warehouseTrayenterZeroOrderByTrayCode, warehouseTrayTypegetZeroOrderByWaybillCode, } from '@/api/user.js' + import utils from '@/utils/utils.js'; import { reactive, toRefs, watchEffect, ref } from "vue"; let details = reactive({ showstate: 0, @@ -191,6 +192,7 @@ onLoad((op) => { details.trayCode = op.trayCode details.trayType = op.trayType + if (op.pageName) utils.ttsspke(`当前打托方式为${op.pageName}`) if (!op.trayType) { uni.showToast({ title: '获取打托方式出错', @@ -248,28 +250,28 @@ let zeroList = [] // 是否退出提交 let isfl = false - + isfl = !details.codelist.every(item => item.number > 0) // 当数据为空或物料数据未修改时, 不进行提交 if (isfl || details.codelist) { return tip.value.setdetails({ - title: '警告', - content: '最少修改一项物料', - confirmTxt: '确认', - isshow: true, - isshowcancel: false, - success: () => { - tip.value.setisshow(false) - }, - cancel: () => { - tip.value.setisshow(false) - }, - close: () => { - tip.value.setisshow(false) - } - }) + title: '警告', + content: '最少修改一项物料', + confirmTxt: '确认', + isshow: true, + isshowcancel: false, + success: () => { + tip.value.setisshow(false) + }, + cancel: () => { + tip.value.setisshow(false) + }, + close: () => { + tip.value.setisshow(false) + } + }) } - + // 循环筛选符合的数据 details.codelist.forEach(item => { if (item.number == 0) { @@ -302,12 +304,12 @@ zeroList.push(obj) } }) - + // 不符合提交要求, 退出函数 if (isfl) { return } - + let data = { trayType: details.trayType, trayCode: details.trayCode, diff --git a/pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue b/pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue index 33cb527..eb80e40 100644 --- a/pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue +++ b/pagesHome/pages/RelocationAllocationId/RelocationAllocationId.vue @@ -227,7 +227,7 @@ }) onLoad((op) => { details.pagetype = op.type - utils.ttsspke(`当前移库方式为${op.pageName}, 请先扫描要移动的库位,再扫描目标库位`) + if (op.pageName) utils.ttsspke(`当前移库方式为${op.pageName}, 请先扫描要移动的库位,再扫描目标库位`) }) // 页面隐藏时, 关闭监听扫描事件 onHide(() => { diff --git a/pagesHome/pages/ScanSortingType/ScanSortingType.vue b/pagesHome/pages/ScanSortingType/ScanSortingType.vue index 0c449f7..7cf2f2e 100644 --- a/pagesHome/pages/ScanSortingType/ScanSortingType.vue +++ b/pagesHome/pages/ScanSortingType/ScanSortingType.vue @@ -27,7 +27,6 @@ let typelist = ref<{ type : number, name : string, src : string }[]>([]) let pageType = ref('') let trayCode = ref('') - utils.ttsspke('请进行服务号/订单自编码/商场/客户/仓库/门店/其它分拣') onLoad((op) => { pageType.value = op.type trayCode.value = op.trayCode @@ -42,6 +41,7 @@ { type: 7, name: '其他', src: '/pagesHome/static/scicon7.png' }, ] let trayCodeTypearr = uni.getStorageSync('trayCodeType') + utils.ttsspke('请进行服务号/订单自编码/商场/客户/仓库/门店/其它分拣') console.log(trayCodeTypearr); trayCodeTypearr.map((item, index) => { typelist.value.map((ite, inde) => { @@ -55,6 +55,7 @@ { type: 1, name: '运单号', src: '/pagesHome/static/scicon1.png' }, { type: 2, name: '订单自编码', src: '/pagesHome/static/scicon2.png' }, ] + utils.ttsspke('请进行运单号/订单自编码分拣') let trayCodeTypearr = uni.getStorageSync('trayCodeType') console.log(trayCodeTypearr); trayCodeTypearr.map((item, index) => { @@ -75,7 +76,7 @@ + trayCode.value + '&trayType=' + item.dictKey + '&pageName=' + item.name } else if (Number(pageType.value) == 2) { url = '/pagesHome/pages/PeopleSortingDetail/PeopleSortingDetail?trayCode=' - + trayCode.value + '&trayType=' + item.dictKey + + trayCode.value + '&trayType=' + item.dictKey + '&pageName=' + item.name } uni.redirectTo({ url diff --git a/pagesHome/pages/ScanUp/ScanUp.vue b/pagesHome/pages/ScanUp/ScanUp.vue index af26f2a..778e3a5 100644 --- a/pagesHome/pages/ScanUp/ScanUp.vue +++ b/pagesHome/pages/ScanUp/ScanUp.vue @@ -230,7 +230,7 @@ onLoad((op) => { details.upshelfScanType = op.type - utils.ttsspke(`当前上架方式为${op.pageName},请先扫描库位码`) + if (op.pageName) utils.ttsspke(`当前上架方式为${op.pageName},请先扫描库位码`) }) // 开启监听扫描 @@ -253,6 +253,12 @@ // 下拉刷新数据 onPullDownRefresh(() => { setTimeout(() => { + // 重置数据 + details.allocationId = '' + details.reqobj = [] + details.renderList = [] + details.datalist = [] + details.uplistarr = [] // 关闭刷新动画 uni.stopPullDownRefresh() @@ -277,22 +283,6 @@ } } else { if (Number(details.upshelfScanType) == 4 && details.reqobj.trayCode) { - tip.value.setdetails({ - title: '提示', - content: '该库位已绑托盘', - confirmTxt: '确认', - isshow: true, - isshowcancel: true, - success: () => { - tip.value.setisshow(false) - }, - cancel: () => { - tip.value.setisshow(false) - }, - close: () => { - tip.value.setisshow(false) - } - }) // #ifdef APP utils.ttsspke('该库位已绑托盘') // #endif @@ -302,22 +292,6 @@ if (details.upshelfScanType === '3') { const flag = details.uplistarr.findIndex(val => val.orderPackageCode === details.scancode) if (flag !== -1) { - tip.value.setdetails({ - title: '提示', - content: '重复扫描包件', - confirmTxt: '确认', - isshow: true, - isshowcancel: true, - success: () => { - tip.value.setisshow(false) - }, - cancel: () => { - tip.value.setisshow(false) - }, - close: () => { - tip.value.setisshow(false) - } - }) // #ifdef APP utils.ttsspke('包件重复扫描') // #endif @@ -330,10 +304,15 @@ code: details.scancode, } let res = await warehouseUpdownTypeupShelfScanGoods(data) - console.log(res); + console.log('res>>>>>', res); if (res.code == 200) { details.uplistarr = details.uplistarr.concat(res.data) + if (details.upshelfScanType === '4') utils.ttsspke(details.uplistarr.reduce((curr, item) => curr + item.shelfNum, 0) + '件') + else utils.ttsspke(details.uplistarr.length + '件') if (details.checkstate === 1) return details.renderList = details.uplistarr + + } else if (res.code === 3001 && res.audio) { + utils.ttsspke(res.audio) } } @@ -346,7 +325,32 @@ }) } function uplist() { - utils.ttsspke(`待上架${uplistarr.value.length}件, 是否进行上架`) + if (details.uplistarr.length == 0) { + let content = '' + let msg = '' + if (details.allocationId === '') { + content = '请先扫描库位' + msg = '请先扫描库位' + } + else if (Number(details.upshelfScanType) == 4) { + content = '请先扫描托盘码' + msg = '请先扫描托盘码' + } else { + content = '请先扫描包件数据' + msg = '请先扫描包件' + } + uni.showToast({ + title: content, + icon: "none" + }) + utils.ttsspke(msg) + return + } + let _totalShelfNum = 0 + // 计算扫描件数总数 + if (details.upshelfScanType === '3') _totalShelfNum = uplistarr.value.length + if (details.upshelfScanType === '4') _totalShelfNum = uplistarr.value.reduce((curr, item) => curr + item.shelfNum, 0) + utils.ttsspke(`待上架${_totalShelfNum}件, 是否进行上架`) tip.value.setdetails({ title: '提示', @@ -355,33 +359,6 @@ isshow: true, isshowcancel: true, success: async () => { - if (details.uplistarr.length == 0) { - let content = '' - if (Number(details.upshelfScanType) == 4) { - utils.ttsspke('请先扫描托盘码') - content = '请先扫描托盘码' - } else { - utils.ttsspke('请先扫描包件数据') - content = '请先扫描包件数据' - } - tip.value.setdetails({ - title: '警告', - content, - confirmTxt: '确认', - isshow: true, - isshowcancel: true, - success: () => { - tip.value.setisshow(false) - }, - cancel: () => { - tip.value.setisshow(false) - }, - close: () => { - tip.value.setisshow(false) - } - }) - return - } let res : any = null // loading uni.showLoading({ @@ -410,10 +387,11 @@ } if (res.code == 200) { - utils.ttsspke(`成功上架${uplistarr.value.length}件`) + // utils.ttsspke(`成功上架${_totalShelfNum}件`) details.uplistarr = [] details.scancode = details.allocationId details.allocationId = '' + details.renderList = [] scandata() } // 关闭loading diff --git a/pagesHome/pages/SelfPScanList/SelfPScanList.vue b/pagesHome/pages/SelfPScanList/SelfPScanList.vue index b9f6920..b1341c9 100644 --- a/pagesHome/pages/SelfPScanList/SelfPScanList.vue +++ b/pagesHome/pages/SelfPScanList/SelfPScanList.vue @@ -1,9 +1,7 @@