|
|
@@ -286,12 +286,20 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<msgNumber></msgNumber>
|
|
|
-
|
|
|
<view class="chat-fixed" v-if="recommendCard">
|
|
|
<view class="chat-box ddflex" @click="jumpSingleChatRoom()">
|
|
|
<image :src="recommendCard.avatar?recommendCard.avatar:'../../static/pages/images/userimg.png'"></image>
|
|
|
<view class="chat-lyl">聊一聊</view>
|
|
|
</view>
|
|
|
+ </view> -->
|
|
|
+ <view :class="'chat-fixed '+(chatShow?'chat-fixed-long':'')" v-if="recommendCard">
|
|
|
+ <view class="chat-box ddflex">
|
|
|
+ <image :src="recommendCard.avatar?recommendCard.avatar:'../../static/pages/images/userimg.png'"></image>
|
|
|
+ <view v-if="chatShowText" class="fflex tover"
|
|
|
+ style="font-size: 24rpx;color: #333333;margin-left: 20rpx;">您好,我是{{recommendCard.realName}},欢迎访问我的微页
|
|
|
+ </view>
|
|
|
+ <view class="chat-lyl">聊一聊</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</template>
|
|
|
@@ -393,11 +401,14 @@
|
|
|
fxIndex: 0,
|
|
|
fxContentList: [],
|
|
|
|
|
|
- recommendCard: '', //销售
|
|
|
+ recommendCard: {}, //销售
|
|
|
|
|
|
isShowCodePop: false,
|
|
|
|
|
|
- lpalCode: req.public.lpalCode
|
|
|
+ lpalCode: req.public.lpalCode,
|
|
|
+
|
|
|
+ chatShow: true,
|
|
|
+ chatShowText: true
|
|
|
};
|
|
|
},
|
|
|
|
|
|
@@ -448,7 +459,7 @@
|
|
|
};
|
|
|
QQMapWX.reverseGeocoder(to, resp => {});
|
|
|
});
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
|
|
|
async onShow() {
|