29 lines
854 B
Vue
29 lines
854 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: 506,
|
|
reportType: 'all',
|
|
productionLine: '分条线',
|
|
warehouseOptions: [
|
|
{ value: '1988150210872930306', label: '酸连轧分条成品' },
|
|
{ value: '1988150800092950529', label: '退火分条成品' },
|
|
{ value: '1988150380649967617', label: '镀锌分条成品' },
|
|
{ value: '1988151027466170370', label: '拉矫分条成品' },
|
|
{ value: '2027272581575487489', label: '包装用内部仓' },
|
|
],
|
|
}
|
|
}
|
|
}
|
|
</script>
|