|
@@ -1,6 +1,6 @@
|
|
<template>
|
|
<template>
|
|
<view class="chat-pages">
|
|
<view class="chat-pages">
|
|
- <u-navbar title="在线客服" :safeAreaInsetTop="true" :placeholder='true'>
|
|
|
|
|
|
+ <u-navbar title="在线客服" :safeAreaInsetTop="true" :placeholder='true' :fixed='true'>
|
|
<view class="u-nav-slot u-flex" slot="left">
|
|
<view class="u-nav-slot u-flex" slot="left">
|
|
<u-icon @click="return1" name="arrow-left" size="19"></u-icon>
|
|
<u-icon @click="return1" name="arrow-left" size="19"></u-icon>
|
|
<image src="../static/images/phone.png" style="width: 40rpx;height: 40rpx;margin-left: 44rpx;" mode="">
|
|
<image src="../static/images/phone.png" style="width: 40rpx;height: 40rpx;margin-left: 44rpx;" mode="">
|
|
@@ -15,59 +15,25 @@
|
|
{{renderTime(item.time)}}
|
|
{{renderTime(item.time)}}
|
|
</view>
|
|
</view>
|
|
<view class="chat-item-box u-flex u-col-top acenter" v-if="item.from == user_other_no">
|
|
<view class="chat-item-box u-flex u-col-top acenter" v-if="item.from == user_other_no">
|
|
- <image src="/pageA/static/images/kefu.png" class="user-img" mode=""></image>
|
|
|
|
|
|
+ <!-- <image :src="user_other.avatar" class="user-img" mode=""></image> -->
|
|
|
|
+ <image src="/pageA/static/images/kefu.png" style="width: 88rpx;height: 88rpx;" mode=""></image>
|
|
<view style="max-width: 80%;" class="" v-if="item.type == 'txt' && !item.ext.type">
|
|
<view style="max-width: 80%;" class="" v-if="item.type == 'txt' && !item.ext.type">
|
|
<view class="chat-text" :style="{background:item.from == user_no ? '#D3E5FB' : '#fff'}">
|
|
<view class="chat-text" :style="{background:item.from == user_no ? '#D3E5FB' : '#fff'}">
|
|
{{item.msg}}
|
|
{{item.msg}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view style="max-width: 80%;" v-if="item.type == 'audio'">
|
|
|
|
- <view class="chat-text hflex acenter" style="background: #D3E5FB;max-width: 550rpx;"
|
|
|
|
- @click="playaudio(item.url)">
|
|
|
|
- <image src="static/yuyin-left.png" mode="" style="width: 20rpx;height: 20rpx;"></image>
|
|
|
|
- <text :style="'padding-right: ' + item.length * 10 + 'rpx'">{{item.length}}</text>
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <image :src="item.msg ? item.msg : item.url" v-if="item.type === 'img'" mode="widthFix"
|
|
|
|
- style="width: 200px;text-align: right;" @click="previewimg(item.url)"></image>
|
|
|
|
- <view class="chat-header" v-if="item.type == 'txt' && item.ext.type == 'cand'"
|
|
|
|
- :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
|
|
|
|
- <view class="header-top u-flex u-row-between">
|
|
|
|
- <view class="header-left">
|
|
|
|
- <view class="u-flex">
|
|
|
|
- <text class="text1">{{item.ext.order.name}}</text>
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="header-right">
|
|
|
|
- <image :src="item.ext.order.avatar" class="right-img" mode=""></image>
|
|
|
|
- <image src="../static/images/nan.png" class="sex" mode=""
|
|
|
|
- v-if="item.ext.order.sex == 'male'"></image>
|
|
|
|
- <image src="../static/images/nv.png" class="sex" mode="" v-else></image>
|
|
|
|
|
|
+ <view class="chat-header" v-if="item.type == 'txt' && item.ext.type == 'shopinfo'"
|
|
|
|
+ :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'shopinfo')">
|
|
|
|
+ <view class="u-flex ">
|
|
|
|
+ <image :src="item.ext.order.image" style="width: 152rpx;height: 152rpx;" mode=""></image>
|
|
|
|
+ <view class="u-flex-column u-row-between" style="margin-left: 20rpx;height: 152rpx;">
|
|
|
|
+ <view class="chattitle">{{item.ext.order.name}}</view>
|
|
|
|
+ <text
|
|
|
|
+ class="catmoney">¥{{item.ext.order.discount_price || item.ext.order.discount_price}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view class="goutong-time">
|
|
|
|
- {{renderTime(item.time)}} 发起沟通
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'pos'"
|
|
|
|
- :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
|
|
|
|
- <view class="header1-top u-flex u-row-between">
|
|
|
|
- <text>{{item.ext.order.title}}</text>
|
|
|
|
- <text>{{item.ext.order.salary}}K</text>
|
|
|
|
- </view>
|
|
|
|
- <view class="goutong-time1">
|
|
|
|
- {{renderTime(item.time)}} 发起沟通
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'order'"
|
|
|
|
- :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'order')">
|
|
|
|
- <view class="header1-top u-flex u-row-between">
|
|
|
|
- <text>{{item.ext.order.title}}</text>
|
|
|
|
- <text>{{item.ext.order.salary}}K</text>
|
|
|
|
- </view>
|
|
|
|
- <view class="goutong-time1">
|
|
|
|
- {{renderTime(item.time)}} 发起沟通
|
|
|
|
- </view>
|
|
|
|
|
|
+ <view class="" style="border: 2rpx solid #979797;opacity: 0.1;margin: 24rpx 0;"></view>
|
|
|
|
+ <view class="chatfu">{{item.ext.order.fu}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="chat-item-box u-flex u-col-top jend" v-if="item.from == user_no">
|
|
<view class="chat-item-box u-flex u-col-top jend" v-if="item.from == user_no">
|
|
@@ -76,53 +42,18 @@
|
|
{{item.msg}}
|
|
{{item.msg}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view style="max-width: 80%;" v-if="item.type == 'audio'">
|
|
|
|
- <view class="chat-text hflex acenter jend" style="background: #D3E5FB;max-width: 550rpx;"
|
|
|
|
- @click="playaudio(item.url)">
|
|
|
|
- <text :style="'padding-left: ' + item.length * 10 + 'rpx'">{{item.length}}</text>
|
|
|
|
- <image src="static/yuyin-right.png" mode="" style="width: 20rpx;height: 20rpx;"></image>
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <image :src="item.msg ? item.msg : item.url" v-if="item.type === 'img'" mode="widthFix"
|
|
|
|
- style="width: 200px;text-align: right;" @click="previewimg(item.url)"></image>
|
|
|
|
- <view class="chat-header" v-if="item.type == 'txt' && item.ext.type == 'cand'"
|
|
|
|
- :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
|
|
|
|
- <view class="header-top u-flex u-row-between">
|
|
|
|
- <view class="header-left">
|
|
|
|
- <view class="u-flex">
|
|
|
|
- <text class="text1">{{item.ext.order.name}}</text>
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="header-right">
|
|
|
|
- <image :src="item.ext.order.avatar" class="right-img" mode=""></image>
|
|
|
|
- <image src="../static/images/nan.png" class="sex" mode=""
|
|
|
|
- v-if="item.ext.order.sex == 'male'"></image>
|
|
|
|
- <image src="../static/images/nv.png" class="sex" mode="" v-else></image>
|
|
|
|
|
|
+ <view class="chat-header" v-if="item.type == 'txt' && item.ext.type == 'shopinfo'"
|
|
|
|
+ :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'shopinfo')">
|
|
|
|
+ <view class="u-flex ">
|
|
|
|
+ <image :src="item.ext.order.image" style="width: 152rpx;height: 152rpx;" mode=""></image>
|
|
|
|
+ <view class="u-flex-column u-row-between" style="margin-left: 20rpx;height: 152rpx;">
|
|
|
|
+ <view class="chattitle">{{item.ext.order.name}}</view>
|
|
|
|
+ <text
|
|
|
|
+ class="catmoney">¥{{item.ext.order.discount_price || item.ext.order.discount_price}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view class="goutong-time">
|
|
|
|
- {{renderTime(item.time)}} 发起沟通
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'pos'"
|
|
|
|
- :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'pos')">
|
|
|
|
- <view class="header1-top u-flex u-row-between">
|
|
|
|
- <text>{{item.ext.order.title}}</text>
|
|
|
|
- <text>{{item.ext.order.salary}}K</text>
|
|
|
|
- </view>
|
|
|
|
- <view class="goutong-time1">
|
|
|
|
- {{renderTime(item.time)}} 发起沟通
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="chat-header1" v-if="item.type == 'txt' && item.ext.type == 'order'"
|
|
|
|
- :style="{top:(statusheight + 58) + 'px'}" @click="toinfo(item,'order')">
|
|
|
|
- <view class="header1-top u-flex u-row-between">
|
|
|
|
- <text>{{item.ext.order.title}}</text>
|
|
|
|
- <text>{{item.ext.order.salary}}K</text>
|
|
|
|
- </view>
|
|
|
|
- <view class="goutong-time1">
|
|
|
|
- {{renderTime(item.time)}} 发起沟通
|
|
|
|
- </view>
|
|
|
|
|
|
+ <view class="" style="border: 2rpx solid #979797;opacity: 0.1;margin: 24rpx 0;"></view>
|
|
|
|
+ <view class="chatfu">{{item.ext.order.fu}}</view>
|
|
</view>
|
|
</view>
|
|
<image v-if="item.from == user_no" :src="user.avatar" class="user-img" mode=""></image>
|
|
<image v-if="item.from == user_no" :src="user.avatar" class="user-img" mode=""></image>
|
|
</view>
|
|
</view>
|
|
@@ -321,6 +252,48 @@
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
<style lang="scss">
|
|
|
|
+ .chatfu {
|
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 20rpx;
|
|
|
|
+ color: #555555;
|
|
|
|
+ line-height: 28rpx;
|
|
|
|
+ text-align: left;
|
|
|
|
+ font-style: normal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .chattitle {
|
|
|
|
+ width: 314rpx;
|
|
|
|
+ height: 72rpx;
|
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ color: #222222;
|
|
|
|
+ line-height: 36rpx;
|
|
|
|
+ text-align: left;
|
|
|
|
+ font-style: normal;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
+ word-break: break-all;
|
|
|
|
+ -webkit-line-clamp: 2;
|
|
|
|
+ display: -webkit-box;
|
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
|
+ // white-space: pre-wrap;
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .catmoney {
|
|
|
|
+ width: 104rpx;
|
|
|
|
+ height: 46rpx;
|
|
|
|
+ font-family: HarmonyOS_Sans_Medium;
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ color: #F83224;
|
|
|
|
+ line-height: 36rpx;
|
|
|
|
+ text-align: left;
|
|
|
|
+ font-style: normal;
|
|
|
|
+ font-weight: 600;
|
|
|
|
+ }
|
|
|
|
+
|
|
.title {
|
|
.title {
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 500;
|
|
font-weight: 500;
|
|
@@ -452,14 +425,15 @@
|
|
}
|
|
}
|
|
|
|
|
|
.chat-header {
|
|
.chat-header {
|
|
- width: 702rpx;
|
|
|
|
|
|
+ width: 540rpx;
|
|
|
|
+ // height: 264rpx;
|
|
background: #FFFFFF;
|
|
background: #FFFFFF;
|
|
border-radius: 16rpx;
|
|
border-radius: 16rpx;
|
|
position: sticky;
|
|
position: sticky;
|
|
left: 24rpx;
|
|
left: 24rpx;
|
|
- z-index: 20;
|
|
|
|
|
|
+ z-index: 10;
|
|
margin: 10px auto;
|
|
margin: 10px auto;
|
|
- padding: 0 20rpx;
|
|
|
|
|
|
+ padding: 20rpx;
|
|
|
|
|
|
.goutong-time {
|
|
.goutong-time {
|
|
line-height: 80rpx;
|
|
line-height: 80rpx;
|