fix:有待入库时小程序上书直接跳转上传页,无需选仓库
This commit is contained in:
parent
bee31382e7
commit
70b8bce69d
@ -76,9 +76,17 @@ export default {
|
||||
handleEntry(type) {
|
||||
switch (type) {
|
||||
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
|
||||
case 'refresh':
|
||||
uni.showToast({
|
||||
|
||||
Loading…
Reference in New Issue
Block a user