|
|
@@ -264,11 +264,18 @@
|
|
|
</view>
|
|
|
<msgNumber></msgNumber>
|
|
|
|
|
|
- <view class="chat-fixed">
|
|
|
+ <!-- <view class="chat-fixed">
|
|
|
<view class="chat-box ddflex">
|
|
|
<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>
|
|
|
@@ -374,7 +381,10 @@ export default {
|
|
|
|
|
|
isShowCodePop:false,
|
|
|
|
|
|
- lpalCode:req.public.lpalCode
|
|
|
+ lpalCode:req.public.lpalCode,
|
|
|
+
|
|
|
+ chatShow:true,
|
|
|
+ chatShowText:true
|
|
|
};
|
|
|
},
|
|
|
|
|
|
@@ -387,6 +397,12 @@ export default {
|
|
|
},
|
|
|
props: {},
|
|
|
onLoad: async function(options) {
|
|
|
+ setTimeout(()=>{
|
|
|
+ this.chatShow=false
|
|
|
+ setTimeout(()=>{
|
|
|
+ this.chatShowText = false
|
|
|
+ },1500)
|
|
|
+ },3000)
|
|
|
// console.log("扫码进去参数===" + JSON.stringify(options));
|
|
|
// if (options.scene) {
|
|
|
// // this.scene = options.scene || '1290926887903780865';
|