1234567891011121314151617181920212223 |
- <!--
- * @Author: Badguy
- * @Date: 2022-03-09 11:51:26
- * @LastEditTime: 2022-05-05 16:55:10
- * @LastEditors: your name
- * @Description: 中转进港行李视图
- * have a nice day!
- -->
- <template>
- <BaggageView />
- </template>
- <script>
- import BaggageView from '../baggage'
- export default {
- name: 'TransferArrivalBaggageView',
- components: {
- BaggageView
- }
- }
- </script>
|