123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <template>
- <!-- 聊天消息 -->
- <view class="back">
- <view class="input u-flex">
- <u-icon name="search" color="rgba(153, 153, 153, 1)" size="40"></u-icon>
- <input type="text" placeholder="搜索聊天记录/团长" style="width: 600rpx;margin-left: 16rpx;" />
- </view>
- <!-- 客服 -->
- <view class="kefu u-flex" @click="tokefu">
- <image src="/pageA/static/images/kefu.png" style="width: 88rpx;height: 88rpx;" mode=""></image>
- <view class="u-row-between"
- style="height: 88rpx;display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
- <view class="u-flex u-row-between">
- <view class="name">官方客服</view>
- <view class="time">14:09</view>
- </view>
- <view class="u-flex u-row-between">
- <text class="news">[卡片]</text>
- <u-badge :type="type" max="99" :value="value"></u-badge>
- </view>
- </view>
- </view>
- <view class="box " >
- <view class="u-flex " style="margin-bottom: 26rpx;" v-for="(item,idx) in 6">
- <image src="/pageA/static/images/kefu.png" style="width: 88rpx;height: 88rpx;" mode=""></image>
- <view class="u-row-between"
- style="display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
- <view class="u-flex u-row-between">
- <view class="name">官方客服</view>
- <view class="time">14:09</view>
- </view>
- <view class="u-flex u-row-between" style="border-bottom: 2rpx solid #979797;padding-bottom: 26rpx;margin-top: 10rpx;">
- <text class="news">[卡片]</text>
- <u-badge :type="type" max="99" :value="value"></u-badge>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- type: "error",
- value: 1
- };
- },
- methods:{
- tokefu(){
- uni.navigateTo({
- url:'/pageA/service/service'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .back {
- width: 750rpx;
- // height: 1624rpx;
- background: #F4F4F4;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- .input {
- width: 702rpx;
- height: 72rpx;
- background: #FFFFFF;
- border-radius: 36rpx;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .kefu {
- width: 702rpx;
- height: 156rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 36rpx 24rpx 32rpx;
- box-sizing: border-box;
- margin-top: 24rpx;
- }
- .name {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 32rpx;
- color: #222222;
- line-height: 44rpx;
- text-align: left;
- font-style: normal;
- }
- .time {
- font-family: SFPro, SFPro;
- font-weight: 400;
- font-size: 20rpx;
- color: #666666;
- line-height: 24rpx;
- text-align: left;
- font-style: normal;
- }
- .news {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #666666;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- .box {
- width: 702rpx;
- min-height: 1156rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 40rpx 24rpx 20rpx;
- box-sizing: border-box;
- margin-top: 20rpx;
- }
- }
- </style>
|