refactor(组件): 重构发货单明细表格为独立组件 feat(组件): 添加发货单打印预览组件 fix(登录页): 移除默认用户名和密码 style(钢卷面板): 添加显示控制属性并优化布局 chore: 添加vitest测试配置和依赖
27 lines
503 B
Vue
27 lines
503 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :showStatus="showStatus" :hideType="hideType" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
dataType: 1,
|
|
materialType: '成品',
|
|
status: 1
|
|
},
|
|
showControl: false,
|
|
labelType: '3',
|
|
showStatus: false,
|
|
hideType: false,
|
|
}
|
|
}
|
|
}
|
|
</script> |