index.vue 563 B

1234567891011121314151617
  1. <route lang="json">
  2. { "style": { "navigationStyle": "custom" } }
  3. </route>
  4. <script setup lang="ts">
  5. import NavbarEvo from '@/components/navbar-evo.vue'
  6. const imgs = ref([
  7. 'https://image.zhuchaohui.com/zhucaohui/2550ff2eaa430a01135344f20645987fca8dc389d89ce3b654522204c4b21428.png',
  8. ])
  9. </script>
  10. <template>
  11. <div>
  12. <NavbarEvo dark transparent title="材料商入驻"></NavbarEvo>
  13. <template v-for="(it, i) in imgs" :key="i">
  14. <wd-img width="100%" :src="it" mode="widthFix" custom-class="vertical-bottom"></wd-img>
  15. </template>
  16. </div>
  17. </template>