库存界面跳转修改

This commit is contained in:
z 2025-07-01 17:55:06 +08:00
parent f9a52e3732
commit 9672f1323b
5 changed files with 6 additions and 6 deletions

View File

@ -201,7 +201,7 @@ const handleQuery = () => {
getList() getList()
} }
const jump = async () => { const jump = async () => {
router.push({ path: '/inventory/storagein' }) router.push({ path: '/purchase/storagein' })
} }
/** 重置按钮操作 */ /** 重置按钮操作 */
const resetQuery = () => { const resetQuery = () => {

View File

@ -144,7 +144,7 @@ onMounted(async () => {
getList(); getList();
}) })
const cancel = async () => { const cancel = async () => {
router.push({ path: '/inventory/storagein' }) router.push({ path: '/purchase/storagein' })
tagsViewStore.delVisitedView(router.currentRoute.value) tagsViewStore.delVisitedView(router.currentRoute.value)
} }
@ -158,7 +158,7 @@ const deleteForm = async () => {
// //
await StorageinApi.deleteStorageIn(query.id) await StorageinApi.deleteStorageIn(query.id)
message.success(t('common.delSuccess')) message.success(t('common.delSuccess'))
router.push({ path: '/inventory/storagein' }) router.push({ path: '/purchase/storagein' })
tagsViewStore.delVisitedView(router.currentRoute.value) tagsViewStore.delVisitedView(router.currentRoute.value)
} }

View File

@ -169,7 +169,7 @@ const openForm = (type: string, id?: number) => {
router.push({ path: '/purchase/purchaseorderedit', query: { id: id } }) router.push({ path: '/purchase/purchaseorderedit', query: { id: id } })
break break
case 'detail': case 'detail':
router.push({ path: '/inventory/storageindetail', query: { id: id } }) router.push({ path: '/purchase/storageindetail', query: { id: id } })
break break
default: default:
break break

View File

@ -125,7 +125,7 @@ const subBoomFormRef = ref()
const closeForm = async () => { const closeForm = async () => {
router.push({ path: '/inventory/supplementManagement' ,query: { ...query }}) router.push({ path: '/purchase/supplementManagement' ,query: { ...query }})
tagsViewStore.delVisitedView(router.currentRoute.value) tagsViewStore.delVisitedView(router.currentRoute.value)
} }
const userList = ref<UserApi.UserVO[]>([]) // const userList = ref<UserApi.UserVO[]>([]) //

View File

@ -156,7 +156,7 @@ const openForm = (type: string, id?: number) => {
router.push({ path: '/purchase/materialplanedit', query: { id: id } }) router.push({ path: '/purchase/materialplanedit', query: { id: id } })
break; break;
case 'detail': case 'detail':
router.push({ path: '/inventory/supplemanagementdetail', query: { id: id } }) router.push({ path: '/purchase/supplemanagementdetail', query: { id: id } })
break; break;
default: default:
break; break;