index.vue 588 B

1234567891011121314151617181920
  1. <template>
  2. <app-view class="app-html">
  3. <template #header>
  4. <app-navbar title="隐私政策" />
  5. </template>
  6. <Tabs class="mine-generalize__tabs">
  7. <Tab title="隐私政策">
  8. <app-html url="./html/yszc.htm" />
  9. </Tab>
  10. <Tab title="物流隐私条款">
  11. <app-html url="./html/wlystk.htm" />
  12. </Tab>
  13. </Tabs>
  14. </app-view>
  15. </template>
  16. <script lang="ts" setup>
  17. import AppHtml from '@mobile/components/base/html-panel/index.vue'
  18. import { Tab, Tabs } from 'vant'
  19. </script>