库存界面跳转修改
This commit is contained in:
parent
f9a52e3732
commit
9672f1323b
@ -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 = () => {
|
||||||
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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[]>([]) // 用户列表
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user