Merge pull request '罗世杰:fixed:项目招商,出租信息修改,客服按钮完成' (#49) from lj into master

Reviewed-on: http://git.feashow.cn/odjbin/city-store-transfer/pulls/49
This commit is contained in:
luojie
2023-11-15 15:10:37 +00:00
4 changed files with 21 additions and 4 deletions

View File

@@ -47,7 +47,6 @@
return { return {
title: ['行业', '区域', '面积', '筛选'], title: ['行业', '区域', '面积', '筛选'],
activeIndex: -1, activeIndex: -1,
// postlist: [['全部', '餐饮美食', '百货超市', '美容美发'],['区域1', '区域2', '区域3', '区域4'],['100m2','200m2','300m2'],['附近的', '最新发布的', '其他']]
}; };
}, },
computed: { computed: {

View File

@@ -15,7 +15,7 @@
<DropDown></DropDown> <DropDown></DropDown>
</view> </view>
<view class="marginLR10"> <view class="marginLR10">
<SearchShopList :showStyle="1"/> <ShowShopList :showStyle="1"/>
</view> </view>
</view> </view>
</template> </template>

View File

@@ -15,7 +15,7 @@
<DropDown></DropDown> <DropDown></DropDown>
</view> </view>
<view class="marginLR10"> <view class="marginLR10">
<SearchShopList :showStyle="1"/> <ShowShopList :showStyle="1"/>
</view> </view>
</view> </view>
</template> </template>

View File

@@ -4,6 +4,13 @@
<view class="home-content"> <view class="home-content">
<view class="service"> <view class="service">
<u-image src="/static/statistics/sy_icon_lxkf.png" width="108rpx" height="108rpx"/> <u-image src="/static/statistics/sy_icon_lxkf.png" width="108rpx" height="108rpx"/>
<button
open-type="contact"
bindcontact="handleContact"
session-from="sessionFrom"
class="service-btn"
>
</button>
</view> </view>
<HomeNavCard></HomeNavCard> <HomeNavCard></HomeNavCard>
<HomeNoticeBar :text="notice" /> <HomeNoticeBar :text="notice" />
@@ -51,7 +58,6 @@
methods: { methods: {
getBanner(){ getBanner(){
this.$api.getBanner().then(res=>{ this.$api.getBanner().then(res=>{
console.log('轮播图',res.data.data);
this.swiperList = res.data.data.map(item=>this.$api.imgUrl+item.img) this.swiperList = res.data.data.map(item=>this.$api.imgUrl+item.img)
}) })
}, },
@@ -175,6 +181,18 @@
right: 17rpx; right: 17rpx;
top: 1109rpx; top: 1109rpx;
z-index: 1; z-index: 1;
.service-btn {
position: absolute;
top: 0;
background-color: inherit;
border-radius: 50%;
width: 108rpx;
height: 108rpx;
}
.service-btn::after {
border: none;
}
} }
} }