feat(wms): 新增分卷操作页面和通用操作面板组件
refactor(wms): 移除操作卡片的多余加载状态 style(login): 调整记住密码复选框的边距 style(element-ui): 修改表单项底部边距为变量
This commit is contained in:
27
klp-ui/src/views/wms/coil/do/split.vue
Normal file
27
klp-ui/src/views/wms/coil/do/split.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<DoPage :label="actionType" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DoPage from '../panels/do.vue'
|
||||
|
||||
export default {
|
||||
name: 'SplitDo',
|
||||
components: {
|
||||
DoPage
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
actionType: '分卷'
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
'$route.query.actionType': {
|
||||
handler(newVal) {
|
||||
this.actionType = newVal
|
||||
},
|
||||
immediate: true
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user