|
|
@@ -15,7 +15,7 @@
|
|
|
<div class="tit-sub">{{ item.subTitle }}</div>
|
|
|
</div>
|
|
|
<div class="module-det">
|
|
|
- <img class="module-img" :src="item.img" :lazy-load="true">
|
|
|
+ <app-img class="module-img" :src="item.img" :lazy-load="true" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- ad -->
|
|
|
@@ -26,13 +26,13 @@
|
|
|
</div>
|
|
|
<div class="ad-list-wrap">
|
|
|
<div class="ad-list" v-for="(item, index) in adData" :key="index">
|
|
|
- <img :src="item" alt />
|
|
|
+ <app-img :src="item" alt />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="official-wrap">
|
|
|
<div class="off-title">花卉宝,花店经营的标配工具</div>
|
|
|
<div class="off-sub-tit">
|
|
|
- <img src="../static/images/official/phone-small.png" alt="">
|
|
|
+ <app-img src="../static/images/official/phone-small.png" alt="" />
|
|
|
<span>咨询热线:0592 - 3272000</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -48,6 +48,7 @@
|
|
|
|
|
|
<script>
|
|
|
import AppSwiper from '@/components/app-swiper'
|
|
|
+import AppImg from '@/components/app-img'
|
|
|
// img
|
|
|
import banner1 from '@/static/images/official/banner-1.png'
|
|
|
import banner2 from '@/static/images/official/banner-2.png'
|
|
|
@@ -74,7 +75,8 @@ import list8 from '@/static/images/official/list-8.png'
|
|
|
export default {
|
|
|
name: 'index',
|
|
|
components: {
|
|
|
- AppSwiper
|
|
|
+ AppSwiper,
|
|
|
+ AppImg
|
|
|
},
|
|
|
data() {
|
|
|
return {
|