index.vue 963 B

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