feat(wms): 添加待办事项页面和导航入口

- 新增待办事项功能页面,包含标签待贴和其他待办选项卡
- 在导航栏添加待办事项快捷入口图标
- 更新仓库配置,添加罩式退火原料库选项
- 清理无用路由配置
This commit is contained in:
2026-04-22 16:30:29 +08:00
parent 19dad696a7
commit 1259a33664
5 changed files with 55 additions and 32 deletions

View File

@@ -8,6 +8,9 @@
<div class="right-menu">
<template v-if="device!=='mobile'">
<search id="header-search" class="right-menu-item" />
<div class="right-menu-item hover-effect" @click="gotoTodo" title="代办事项">
<el-icon class="el-icon-document-checked" />
</div>
<screenfull id="screenfull" class="right-menu-item hover-effect" />
@@ -93,6 +96,9 @@ export default {
window.location.reload(true)
// this.$store.dispatch('app/refresh')
},
gotoTodo() {
this.$router.push({ path: '/wms/todo' })
},
async logout() {
this.$confirm('确定注销并退出系统吗?', '提示', {
confirmButtonText: '确定',