Files
klp-oa/klp-ui/src/views/wms/report/tuozhi/year.vue

37 lines
916 B
Vue
Raw Normal View History

<template>
<YearTemplate
:actionTypes="actionTypes"
:actionQueryParams="actionQueryParams"
:baseQueryParams="baseQueryParams"
:warehouseOptions="warehouseOptions"
/>
</template>
<script>
import YearTemplate from '@/views/wms/report/template/year.vue'
export default {
name: 'YearReport',
components: {
YearTemplate,
},
data() {
return {
actionTypes: [502, 120],
actionQueryParams: {
createBy: 'tuozhikuguan'
},
baseQueryParams: {
createBy: 'tuozhikuguan',
},
warehouseOptions: [
{value: '1988150586938421250', label: '脱脂成品库'},
{ label: '技术部', value: '2019583656787259393' },
{ label: '小钢卷库', value: '2019583325311414274' },
{ label: '废品库', value: '2019583429955104769' },
{ label: '退货库', value: '2019583137616310273' },
],
}
}
}
</script>