添加mands.vue模板组件用于综合报表展示,包含日期筛选、数据统计、图表展示等功能 新增and.vue分条线报表组件,继承综合报表模板功能 实现产出与消耗钢卷数据的对比统计及可视化展示
26 lines
520 B
Vue
26 lines
520 B
Vue
<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> |