35 lines
897 B
Vue
35 lines
897 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: 502,
|
|
reportType: 'day',
|
|
productionLine: '脱脂线',
|
|
warehouseOptions: [
|
|
{ value: '1988150586938421250', label: '脱脂成品库' },
|
|
{ value: '1988150648993148929', label: '罩式退火原料库' },
|
|
{ label: '技术部', value: '2019583656787259393' },
|
|
{ label: '小钢卷库', value: '2019583325311414274' },
|
|
{ label: '废品库', value: '2019583429955104769' },
|
|
{ label: '退货库', value: '2019583137616310273' },
|
|
],
|
|
}
|
|
}
|
|
}
|
|
</script>
|