完善入库跳转以及出库创建页面

This commit is contained in:
zx
2026-04-07 10:55:39 +08:00
parent ce6d5e5d6e
commit b16dd22d70
16 changed files with 514 additions and 166 deletions

View File

@@ -13,7 +13,7 @@
<script setup>
import { onShow } from '@dcloudio/uni-app';
import {removeStorage} from '../until';
import { removeStorage } from '../until';
const menuList = [
{
id: 'inventory',
@@ -169,6 +169,10 @@ const menuList = [
title: '出库单开单',
click: () => {
console.log('出库单开单')
removeStorage()
uni.navigateTo({
url: '/pages/warehousing/stockOut/create'
});
}
},
{
@@ -177,6 +181,10 @@ const menuList = [
title: '我的出库单',
click: () => {
console.log('我的出库单')
removeStorage()
uni.navigateTo({
url: '/pages/warehousing/stockOut/my'
});
}
},
{
@@ -185,6 +193,10 @@ const menuList = [
title: '出库单出库',
click: () => {
console.log('出库单出库')
removeStorage()
uni.navigateTo({
url: '/pages/warehousing/stockOut/outbound'
});
}
},
@@ -228,28 +240,28 @@ const menuList = [
},
]
},
// {
// id: 'transportCheckIn',
// title: '运输打卡',
// menuItem: [
// {
// id: "transportCheckIn_transportCheckIn",
// icon: '../../static/transportCheckIn/transportCheckIn.png',
// title: '运输打卡',
// click: () => {
// console.log('运输打卡')
// }
// },
// {
// id: "transportCheckIn_myTransportCheckIn",
// icon: '../../static/transportCheckIn/myTransportCheckIn.png',
// title: '我的运输打卡',
// click: () => {
// console.log('我的运输打卡')
// }
// },
// ]
// },
{
id: 'transportCheckIn',
title: '运输打卡',
menuItem: [
{
id: "transportCheckIn_transportCheckIn",
icon: '../../static/transportCheckIn/transportCheckIn.png',
title: '运输打卡',
click: () => {
console.log('运输打卡')
}
},
{
id: "transportCheckIn_myTransportCheckIn",
icon: '../../static/transportCheckIn/myTransportCheckIn.png',
title: '我的运输打卡',
click: () => {
console.log('我的运输打卡')
}
},
]
},
]
onShow(() => {
uni.removeStorage({