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

@@ -37,6 +37,7 @@
'脱脂工序': [
{value: '1988150545175736322', label: '脱脂原料库'},
{value: '1988150586938421250', label: '脱脂成品库'},
{value: "1988150648993148929", label: '罩式退火原料库'},
],
'退火工序': [
{value: '1988150648993148929', label: '罩式退火原料库'},

View File

@@ -62,6 +62,7 @@ export const tuozhiConfig = {
},
warehouseOptions: [
{ value: '1988150586938421250', label: '脱脂成品库' },
{ value: "1988150648993148929", label: '罩式退火原料库' },
{ label: '技术部', value: '2019583656787259393' },
{ label: '小钢卷库', value: '2019583325311414274' },
{ label: '废品库', value: '2019583429955104769' },
@@ -112,7 +113,7 @@ export const zincConfig = {
export const splitConfig = {
actionTypes: [506],
actionQueryParams: {
actionQueryParams: {
createBys: 'fenjiankuguan'
},
baseQueryParams: {

View File

@@ -0,0 +1,26 @@
<template>
<el-tabs v-model="activeTab" type="card">
<el-tab-pane label="待贴标签" name="first">
<TranferCoilTable />
</el-tab-pane>
<el-tab-pane label="其他代办" name="second">
更多代办事项开发中...
</el-tab-pane>
</el-tabs>
</template>
<script>
import TranferCoilTable from '@/views/wms/coil/views/base/tranfer.vue'
export default {
name: 'TodoIndex',
components: {
TranferCoilTable,
},
data() {
return {
activeTab: 'first',
}
}
}
</script>