Files
klp-oa/klp-ui/src/views/wms/report/shuang/comprehensive.vue

30 lines
889 B
Vue

<template>
<ActionTemplate :actionType="actionType" :reportType="reportType" :productionLine="productionLine" :warehouseOptions="warehouseOptions" />
</template>
<script>
import ActionTemplate from '@/views/wms/report/template/action.vue'
export default {
name: 'ComprehensiveReport',
components: {
ActionTemplate,
},
data() {
return {
actionType: 504,
reportType: 'all',
productionLine: '双机架线',
warehouseOptions: [
{ value: '1992873437713080322', label: '双机架成品库' },
{ value: '1988151076996706306', label: '镀铬原料库' },
{ label: '技术部', value: '2019583656787259393' },
{ label: '小钢卷库', value: '2019583325311414274' },
{ label: '废品库', value: '2019583429955104769' },
{ label: '退货库', value: '2019583137616310273' },
],
}
}
}
</script>