Files
klp-oa/klp-ui/src/views/wms/report/duge/day.vue

34 lines
823 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: 'DayReport',
components: {
ActionTemplate,
},
data() {
return {
actionType: 505,
reportType: 'day',
productionLine: '镀铬线',
warehouseOptions: [
{ value: '1988151132361519105', label: '镀铬成品库' },
{ label: '技术部', value: '2019583656787259393' },
{ label: '小钢卷库', value: '2019583325311414274' },
{ label: '废品库', value: '2019583429955104769' },
{ label: '退货库', value: '2019583137616310273' },
],
}
}
}
</script>