index.vue 828 B

123456789101112131415161718192021222324
  1. <template>
  2. <app-view class="app-html">
  3. <template #header>
  4. <app-navbar title="仓储物流" />
  5. </template>
  6. <Tabs>
  7. <Tab title="运输委托">
  8. <!-- <div style="text-align: center;background-color: #fff;padding: .32rem;">
  9. <h4 style="margin-bottom: .32rem;">运输委托模版.docx</h4>
  10. <Button type="primary" style="width: 50%;" round>下载文档</Button>
  11. </div> -->
  12. <Empty />
  13. </Tab>
  14. <Tab title="仓储服务">
  15. <app-html url="./html/ccfw.htm" />
  16. </Tab>
  17. </Tabs>
  18. </app-view>
  19. </template>
  20. <script lang="ts" setup>
  21. import { Tab, Tabs, Empty } from 'vant'
  22. import AppHtml from '@mobile/components/base/html-panel/index.vue'
  23. </script>