修改客户提出的要求点

This commit is contained in:
gxwebsoft
2024-04-10 15:10:25 +08:00
parent 68c7734828
commit 5a030d5a30
5 changed files with 29 additions and 18 deletions

View File

@@ -16,8 +16,8 @@
<video loop class="swiper-video" muted :autoplay="true" :src="form.videoUrl"></video>
</view>
<view class="swiper-switch">
<view @click="swiperType = 'video'" :class="{active: swiperType == 'video'}" class="swiper-switch-item">视频</view>
<view @click="swiperType = 'image'" :class="{active: swiperType == 'image'}" class="swiper-switch-item">图片</view>
<view @click="swiperType = 'video'" :class="{active: swiperType == 'video'}" class="swiper-switch-item">视频</view>
</view>
@@ -82,13 +82,13 @@
</view>
<view v-if="isManager" class="item col-2">业主电话{{ form.phone || '' }}</view>
<view v-if="isManager" class="item col-2">物业费{{ form.propertyFees || '' }}</view>
<view v-if="isManager" class="item col-2">租期{{ form.tenancy || '' }}</view>
<!-- <view v-if="isManager" class="item col-2">租期{{ form.tenancy || '' }}</view> -->
<view class="item col-2" v-if="isManager">
佣金{{ form.commission || '' }}
</view>
<view class="item col-2" v-if="isManager">
<!-- <view class="item col-2" v-if="isManager">
是否可溢价{{ form.premium || '' }}
</view>
</view> -->
</view>
</view>
@@ -152,11 +152,11 @@
<text v-if="form.liked">已收藏</text>
<text v-else>收藏</text>
</view>
<view class="item" @click="$push('sub_pages/checkout/checkout?id=' + form.houseId)">
<u-button icon="map" type="error" text="预约看房"></u-button>
<view class="item">
<u-button icon="map" type="error" text="预约看房" disabled @click="$push('sub_pages/checkout/checkout?id=' + form.houseId)"></u-button>
</view>
<view class="item" @click="onCall()">
<u-button icon="phone" type="primary" text="电话咨询"></u-button>
<view class="item">
<u-button icon="phone" type="primary" text="电话咨询" disabled @click="onCall()"></u-button>
</view>
</view>
</view>
@@ -302,7 +302,7 @@
padding: '12rpx 0',
borderRadius: '12rpx'
},
swiperType: 'video',
swiperType: 'image',
latitude: 39.909,
longitude: 116.39742,
covers: [{
@@ -347,6 +347,17 @@
onPageScroll(e) {
this.scrollTop = e.scrollTop
},
onShareAppMessage() {
return {
title: this.form.houseTitle
}
},
onShareTimeline() {
return {
title: this.form.houseTitle,
query: this.form.houseId
}
},
methods: {
getHouseInfo() {
const app = this