|
|
@@ -5,11 +5,10 @@
|
|
|
</template>
|
|
|
<Tabs>
|
|
|
<Tab title="运输委托">
|
|
|
- <!-- <div style="text-align: center;background-color: #fff;padding: .32rem;">
|
|
|
+ <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>下载文档</Button>
|
|
|
- </div> -->
|
|
|
- <Empty />
|
|
|
+ <Button type="primary" style="width: 50%;" round @click="download">下载文档</Button>
|
|
|
+ </div>
|
|
|
</Tab>
|
|
|
<Tab title="仓储服务">
|
|
|
<app-html url="./html/ccfw.htm" />
|
|
|
@@ -19,6 +18,10 @@
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
-import { Tab, Tabs, Empty } from 'vant'
|
|
|
+import { Tab, Tabs, Button } from 'vant'
|
|
|
import AppHtml from '@mobile/components/base/html-panel/index.vue'
|
|
|
+
|
|
|
+const download = () => {
|
|
|
+ window.open('./html/yswtmb.docx')
|
|
|
+}
|
|
|
</script>
|