refactor(CoilSelector): 修改change事件返回参数包含完整钢卷信息 chore: 添加打包模块相关图标和API文件 test: 添加打包模块单元测试 docs: 更新打包模块API文档
37 lines
970 B
Vue
37 lines
970 B
Vue
<template>
|
|
<ComprehensiveTemplate
|
|
:actionTypes="actionTypes"
|
|
:actionQueryParams="actionQueryParams"
|
|
:baseQueryParams="baseQueryParams"
|
|
:warehouseOptions="warehouseOptions"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import ComprehensiveTemplate from '@/views/wms/report/template/comprehensive.vue'
|
|
|
|
export default {
|
|
name: 'ShuangComprehensiveReport',
|
|
components: {
|
|
ComprehensiveTemplate,
|
|
},
|
|
data() {
|
|
return {
|
|
actionTypes: [504, 120],
|
|
actionQueryParams: {
|
|
createBy: 'shuangkuguan'
|
|
},
|
|
baseQueryParams: {
|
|
createBy: 'shuangkuguan',
|
|
},
|
|
warehouseOptions: [
|
|
{value: '1992873437713080322', label: '双机架成品库'},
|
|
{ label: '技术部', value: '2019583656787259393' },
|
|
{ label: '小钢卷库', value: '2019583325311414274' },
|
|
{ label: '废品库', value: '2019583429955104769' },
|
|
{ label: '退货库', value: '2019583137616310273' },
|
|
],
|
|
}
|
|
}
|
|
}
|
|
</script> |