fix:有待入库时小程序上书直接跳转上传页,无需选仓库
This commit is contained in:
parent
bee31382e7
commit
70b8bce69d
@ -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({
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user