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