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