|
|
@@ -15,7 +15,7 @@
|
|
|
<div class="tit-sub">{{ item.subTitle }}</div>
|
|
|
</div>
|
|
|
<div class="module-det">
|
|
|
- <app-img class="module-img" :src="item.img" :lazy-load="true" />
|
|
|
+ <app-img class="module-img" :src="item.img" :lazy-load="true" mode="widthFix" />
|
|
|
</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">
|
|
|
- <app-img :src="`${constant.imgUrl}/retail/official/list-${index + 1}.png`" alt />
|
|
|
+ <app-img :src="`${constant.imgUrl}/retail/official/list-${index + 1}.png`" mode="widthFix" alt="他们都在用" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="official-wrap">
|
|
|
<div class="off-title">花卉宝,花店数字化建设者</div>
|
|
|
<div class="off-sub-tit" @click="contactFn">
|
|
|
- <app-img :src="`${constant.imgUrl}/retail/official/phone-small.png`" alt />
|
|
|
+ <app-img :src="`${constant.imgUrl}/retail/official/phone-small.png`" alt="电话" mode="widthFix" />
|
|
|
<span>咨询热线:0592 - 3272000</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -53,17 +53,6 @@
|
|
|
<div v-else class="app-footer" @click="pageTo({
|
|
|
url: '/admin/official/pay'
|
|
|
})">申请试用</div>
|
|
|
- <!-- <div v-if="status == -1" class="app-footer" @click="pageTo({
|
|
|
- url: '/admin/official/pay',
|
|
|
- status: 2
|
|
|
- })">申请试用</div>
|
|
|
- <div v-if="status == 0" class="app-footer under-review">审核中</div>
|
|
|
- <div v-if="status == 1" class="app-footer under-review">试用中</div>
|
|
|
- <div v-if="status == 2" class="app-footer under-review">审核未通过</div>-->
|
|
|
- <!-- <div v-if="status == 4" class="app-footer" @click="pageTo({
|
|
|
- url: '/admin/official/apply',
|
|
|
- status: 2
|
|
|
- })">立即订购</div>-->
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -72,14 +61,14 @@ import AppSwiper from "@/components/app-swiper";
|
|
|
import AppImg from "@/components/app-img";
|
|
|
// api
|
|
|
import { applyStatus } from "@/api/official";
|
|
|
-import { share } from '@/mixins'
|
|
|
+import { share } from "@/mixins";
|
|
|
export default {
|
|
|
name: "index",
|
|
|
components: {
|
|
|
AppSwiper,
|
|
|
AppImg
|
|
|
},
|
|
|
- mixins:[share],
|
|
|
+ mixins: [share],
|
|
|
data() {
|
|
|
return {
|
|
|
constant: this.$constant,
|
|
|
@@ -141,10 +130,10 @@ export default {
|
|
|
},
|
|
|
onLoad() {
|
|
|
this.jweixinFn({
|
|
|
- title:'更懂您的花卉宝',
|
|
|
- pagePath:'admin/official/index',
|
|
|
- imageUrl:''
|
|
|
- })
|
|
|
+ title: "更懂您的花卉宝",
|
|
|
+ pagePath: "admin/official/index",
|
|
|
+ imageUrl: ""
|
|
|
+ });
|
|
|
},
|
|
|
methods: {
|
|
|
init() {
|