refactor(CoilSelector): 修改change事件返回参数包含完整钢卷信息 chore: 添加打包模块相关图标和API文件 test: 添加打包模块单元测试 docs: 更新打包模块API文档
38 lines
996 B
Vue
38 lines
996 B
Vue
<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: [501, 120],
|
|
actionQueryParams: {
|
|
createBy: 'duxinkuguan'
|
|
},
|
|
baseQueryParams: {
|
|
createBy: 'duxinkuguan',
|
|
},
|
|
warehouseOptions: [
|
|
{ value: '1988150323162836993', label: '镀锌成品库' },
|
|
{ value: '1988150487185289217', label: '镀锌纵剪分条原料库' },
|
|
{ value: '2019583656787259393', label: '技术部' },
|
|
{ value: '2019583325311414274', label: '小钢卷库' },
|
|
{ value: '2019583429955104769', label: '废品库' },
|
|
{ value: '2019583137616310273', label: '退货库' },
|
|
],
|
|
}
|
|
}
|
|
}
|
|
</script> |