|
@@ -19,7 +19,7 @@
|
|
|
<image class="logo" :src="item.smallAvatar" />
|
|
<image class="logo" :src="item.smallAvatar" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="text-group_7 flex-col justify-between">
|
|
<view class="text-group_7 flex-col justify-between">
|
|
|
- <text class="text_8">{{item.showName}}</text>
|
|
|
|
|
|
|
+ <text class="text_8">{{item.name}}</text>
|
|
|
<text class="text_9">{{item.address}}{{item.floor}}</text>
|
|
<text class="text_9">{{item.address}}{{item.floor}}</text>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
@@ -36,7 +36,7 @@
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view v-else>
|
|
<view v-else>
|
|
|
- <text style="margin-top:30upx;margin-left:30upx;">暂无花店</text>
|
|
|
|
|
|
|
+ <text style="margin-top:200upx;margin-left:80upx;font-size:30upx;font-weight:bold;">暂无花店</text>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
</block>
|
|
</block>
|
|
@@ -84,7 +84,7 @@ import AppSwiper from "@/components/app-swiper";
|
|
|
import TuiListCell from "@/components/plugin/list-cell";
|
|
import TuiListCell from "@/components/plugin/list-cell";
|
|
|
import TuiListView from "@/components/plugin/list-view";
|
|
import TuiListView from "@/components/plugin/list-view";
|
|
|
import AppActivilyCoupon from "@/components/module/app-activily-coupon";
|
|
import AppActivilyCoupon from "@/components/module/app-activily-coupon";
|
|
|
-import { getNewShop } from "@/api/shop";
|
|
|
|
|
|
|
+import { getList } from "@/api/hd";
|
|
|
import { share } from "@/mixins";
|
|
import { share } from "@/mixins";
|
|
|
import AppAvatarModule from "@/components/module/app-avatar";
|
|
import AppAvatarModule from "@/components/module/app-avatar";
|
|
|
import { mapGetters } from 'vuex'
|
|
import { mapGetters } from 'vuex'
|
|
@@ -131,17 +131,17 @@ export default {
|
|
|
this.$msg('升级中...')
|
|
this.$msg('升级中...')
|
|
|
},
|
|
},
|
|
|
bugFlower(item){
|
|
bugFlower(item){
|
|
|
- this.pageTo({ url:'/pages/item/item?account='+item.id})
|
|
|
|
|
|
|
+ this.pageTo({ url:'/pages/item/item?account='+item.shopId})
|
|
|
},
|
|
},
|
|
|
bugHs(item){
|
|
bugHs(item){
|
|
|
- this.pageTo({ url:'/pages/home/category?account='+item.id})
|
|
|
|
|
|
|
+ this.pageTo({ url:'/pages/home/category?account='+item.shopId})
|
|
|
},
|
|
},
|
|
|
init () {
|
|
init () {
|
|
|
this.getShopList()
|
|
this.getShopList()
|
|
|
},
|
|
},
|
|
|
getShopList(){
|
|
getShopList(){
|
|
|
let that = this
|
|
let that = this
|
|
|
- getNewShop().then(res=>{
|
|
|
|
|
|
|
+ getList().then(res=>{
|
|
|
that.list = res.data.list
|
|
that.list = res.data.list
|
|
|
that.showGlInfo = res.data.showGlInfo
|
|
that.showGlInfo = res.data.showGlInfo
|
|
|
})
|
|
})
|