index.vue 878 B

123456789101112131415161718192021222324252627
  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: 1rem 0;">
  9. <h4 style="margin-bottom: .32rem;">运输委托模版.docx</h4>
  10. <Button type="primary" style="width: 50%;" round @click="download">下载文档</Button>
  11. </div>
  12. </Tab>
  13. <Tab title="仓储服务">
  14. <app-html url="./html/ccfw.htm" />
  15. </Tab>
  16. </Tabs>
  17. </app-view>
  18. </template>
  19. <script lang="ts" setup>
  20. import { Tab, Tabs, Button } from 'vant'
  21. import AppHtml from '@mobile/components/base/html-panel/index.vue'
  22. const download = () => {
  23. window.open('./html/yswtmb.docx')
  24. }
  25. </script>