2026-02-02 15:59:27 +08:00
|
|
|
<template>
|
2026-03-18 15:41:09 +08:00
|
|
|
<LossTemplate
|
|
|
|
|
:actionTypes="actionTypes"
|
|
|
|
|
:actionQueryParams="actionQueryParams"
|
|
|
|
|
></LossTemplate>
|
2026-02-02 15:59:27 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2026-03-18 15:41:09 +08:00
|
|
|
import LossTemplate from '@/views/wms/report/template/loss.vue'
|
2026-02-02 15:59:27 +08:00
|
|
|
|
2026-03-18 15:41:09 +08:00
|
|
|
export default {
|
|
|
|
|
name: 'LossReport',
|
|
|
|
|
components: {
|
|
|
|
|
LossTemplate,
|
|
|
|
|
},
|
|
|
|
|
data() {
|
2026-02-02 15:59:27 +08:00
|
|
|
return {
|
2026-03-18 15:41:09 +08:00
|
|
|
actionTypes: [501, 120],
|
|
|
|
|
actionQueryParams: {
|
|
|
|
|
updateBy: 'duxinkuguan'
|
|
|
|
|
},
|
2026-02-02 15:59:27 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-18 15:41:09 +08:00
|
|
|
</script>
|