|
@@ -58,16 +58,18 @@
|
|
|
status: 1
|
|
status: 1
|
|
|
})"
|
|
})"
|
|
|
>立即续费</div>
|
|
>立即续费</div>
|
|
|
- <div v-else class="app-footer" @click="pageTo({
|
|
|
|
|
|
|
+ <div v-if="status != 3 && this.getLoginInfo.openShop !== 1" class="app-footer" @click="pageTo({
|
|
|
url: '/pagesClient/official/pay',
|
|
url: '/pagesClient/official/pay',
|
|
|
query:{
|
|
query:{
|
|
|
...option
|
|
...option
|
|
|
}
|
|
}
|
|
|
})">申请试用</div>
|
|
})">申请试用</div>
|
|
|
|
|
+ <div v-if="status != 3 && this.getLoginInfo.openShop == 1" class="app-footer">已申请</div>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
+import { mapGetters } from 'vuex'
|
|
|
import AppSwiper from "@/components/app-swiper";
|
|
import AppSwiper from "@/components/app-swiper";
|
|
|
import AppImg from "@/components/app-img";
|
|
import AppImg from "@/components/app-img";
|
|
|
import { applyStatus } from "@/api/official";
|
|
import { applyStatus } from "@/api/official";
|
|
@@ -138,12 +140,20 @@ export default {
|
|
|
adData: [1, 2, 3, 4, 5, 6, 7, 8]
|
|
adData: [1, 2, 3, 4, 5, 6, 7, 8]
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
|
|
+ mounted() {
|
|
|
|
|
+ // 隐藏返回首页按钮。
|
|
|
|
|
+ uni.hideHomeButton()
|
|
|
|
|
+ },
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ ...mapGetters(["getMerchantInfo", "getLoginInfo"])
|
|
|
|
|
+ },
|
|
|
onLoad() {
|
|
onLoad() {
|
|
|
this.jweixinFn({
|
|
this.jweixinFn({
|
|
|
title: "更懂您的花卉宝",
|
|
title: "更懂您的花卉宝",
|
|
|
pagePath: "pagesClient/official/index",
|
|
pagePath: "pagesClient/official/index",
|
|
|
imageUrl: ""
|
|
imageUrl: ""
|
|
|
});
|
|
});
|
|
|
|
|
+ console.log(this.getLoginInfo)
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
init() {
|
|
init() {
|