7 lines
219 B
Vue
7 lines
219 B
Vue
|
|
<template>
|
||
|
|
<choose-list :isWarehousing="true" :pathParams="{ type: 'dailyReport' }" />
|
||
|
|
</template>
|
||
|
|
<script setup>
|
||
|
|
import ChooseList from '../../components/ChooseList.vue'
|
||
|
|
</script>
|
||
|
|
<style lang="sass" scoped></style>
|