| 1234567891011121314151617181920 |
- <template>
- <app-view class="app-html">
- <template #header>
- <app-navbar title="隐私政策" />
- </template>
- <Tabs class="mine-generalize__tabs">
- <Tab title="隐私政策">
- <app-html url="./html/yszc.htm" />
- </Tab>
- <Tab title="物流隐私条款">
- <app-html url="./html/wlystk.htm" />
- </Tab>
- </Tabs>
- </app-view>
- </template>
- <script lang="ts" setup>
- import AppHtml from '@mobile/components/base/html-panel/index.vue'
- import { Tab, Tabs } from 'vant'
- </script>
|