feat(wms): 添加待办事项页面和导航入口
- 新增待办事项功能页面,包含标签待贴和其他待办选项卡 - 在导航栏添加待办事项快捷入口图标 - 更新仓库配置,添加罩式退火原料库选项 - 清理无用路由配置
This commit is contained in:
@@ -37,6 +37,7 @@
|
||||
'脱脂工序': [
|
||||
{value: '1988150545175736322', label: '脱脂原料库'},
|
||||
{value: '1988150586938421250', label: '脱脂成品库'},
|
||||
{value: "1988150648993148929", label: '罩式退火原料库'},
|
||||
],
|
||||
'退火工序': [
|
||||
{value: '1988150648993148929', label: '罩式退火原料库'},
|
||||
|
||||
@@ -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: {
|
||||
|
||||
26
klp-ui/src/views/wms/todo/index.vue
Normal file
26
klp-ui/src/views/wms/todo/index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user