fix:有待入库时小程序上书直接跳转上传页,无需选仓库

This commit is contained in:
ShenQiLun 2026-06-29 11:46:16 +08:00
parent bee31382e7
commit 70b8bce69d

View File

@ -76,9 +76,17 @@ export default {
handleEntry(type) { handleEntry(type) {
switch (type) { switch (type) {
case 'upload': case 'upload':
uni.navigateTo({ //
url: '/pages/warehouse/warehouse' var pendingList = uni.getStorageSync('pendingProductList') || []
}) if (pendingList.length > 0) {
uni.navigateTo({
url: '/pages/upload/upload'
})
} else {
uni.navigateTo({
url: '/pages/warehouse/warehouse'
})
}
break break
case 'refresh': case 'refresh':
uni.showToast({ uni.showToast({