feat(wms): 新增分卷操作页面和通用操作面板组件

refactor(wms): 移除操作卡片的多余加载状态
style(login): 调整记住密码复选框的边距
style(element-ui): 修改表单项底部边距为变量
This commit is contained in:
砂糖
2025-11-20 13:29:02 +08:00
parent f2b754126c
commit 5bfa264021
6 changed files with 1038 additions and 4 deletions

View 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>