| 123456789101112131415161718192021222324 |
- <template>
- <app-view class="app-html">
- <template #header>
- <app-navbar title="仓储物流" />
- </template>
- <Tabs>
- <Tab title="运输委托">
- <!-- <div style="text-align: center;background-color: #fff;padding: .32rem;">
- <h4 style="margin-bottom: .32rem;">运输委托模版.docx</h4>
- <Button type="primary" style="width: 50%;" round>下载文档</Button>
- </div> -->
- <Empty />
- </Tab>
- <Tab title="仓储服务">
- <app-html url="./html/ccfw.htm" />
- </Tab>
- </Tabs>
- </app-view>
- </template>
- <script lang="ts" setup>
- import { Tab, Tabs, Empty } from 'vant'
- import AppHtml from '@mobile/components/base/html-panel/index.vue'
- </script>
|