feat(wms): 新增综合报表模板及分条线报表组件
添加mands.vue模板组件用于综合报表展示,包含日期筛选、数据统计、图表展示等功能 新增and.vue分条线报表组件,继承综合报表模板功能 实现产出与消耗钢卷数据的对比统计及可视化展示
This commit is contained in:
26
klp-ui/src/views/wms/report/split/and.vue
Normal file
26
klp-ui/src/views/wms/report/split/and.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<MandsTemplate
|
||||
:actionTypes="actionTypes"
|
||||
:actionQueryParams="actionQueryParams"
|
||||
:baseQueryParams="baseQueryParams"
|
||||
:warehouseOptions="warehouseOptions"
|
||||
:productionLine="productionLine"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MandsTemplate from '@/views/wms/report/template/mands.vue'
|
||||
import { splitConfig } from '@/views/wms/report/js/config.js'
|
||||
|
||||
export default {
|
||||
name: 'AndReport',
|
||||
components: {
|
||||
MandsTemplate,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
...splitConfig,
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user