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

37 lines
917 B
Vue
Raw Normal View History

<template>
<MonthTemplate
:actionTypes="actionTypes"
:actionQueryParams="actionQueryParams"
:baseQueryParams="baseQueryParams"
:warehouseOptions="warehouseOptions"
/>
</template>
<script>
import MonthTemplate from '@/views/wms/report/template/month.vue'
export default {
name: 'MonthReport',
components: {
MonthTemplate,
},
data() {
return {
actionTypes: [505, 120],
actionQueryParams: {
updateBy: 'dugekuguan'
},
baseQueryParams: {
createBy: 'dugekuguan',
},
warehouseOptions: [
{value: '1988151132361519105', label: '镀铬成品库'},
{ label: '技术部', value: '2019583656787259393' },
{ label: '小钢卷库', value: '2019583325311414274' },
{ label: '废品库', value: '2019583429955104769' },
{ label: '退货库', value: '2019583137616310273' },
],
}
}
}
</script>