|
- <template>
- <view class="cented-box">
-
- <view class="customer">
- <view class="title">
- <view class="zuo">
- <view class="zuoimg">A</view>
- <view class="zuoname">李先生</view>
- </view>
- <view class="you">
- <view class="youimg1"></view>
- <view class="youtext">接待中</view>
- </view>
- </view>
- <view class="centerbox">
- <view class="centerbox-che">手机号码:<text class="shizai">17551333886</text></view>
- <view class="centerbox-che">开始时间:<text class="shizai">2021-07-20 14:00:30</text></view>
- <view class="centerbox-che">顾问姓名:<text class="shizai">毛丫丫</text></view>
- <view class="centerbox-che2">
- <view class="Workcard">工牌电量:<text class="shizai">56%</text></view>
- <view class="Workcard">录音状态:<text class="shizai">使用中</text></view>
- </view>
- </view>
- <view class="footer-button">
- <view class="footer1">接待延时</view>
- <view class="footer1">重新指派</view>
- <view class="footer3">结束接待</view>
- </view>
- </view>
-
- <view class="customer">
- <view class="title">
- <view class="zuo">
- <view class="zuoimg">A</view>
- <view class="zuoname">李先生</view>
- </view>
- <view class="you">
- <view class="youimg1"></view>
- <view class="youtext">排队中</view>
- </view>
- </view>
- <view class="centerbox">
- <view class="centerbox-che">手机号码:<text class="shizai">--</text></view>
- </view>
- <view class="footer-button">
- <view class="footer3">指派顾问</view>
- </view>
- </view>
-
- <view class="customer">
- <view class="title">
- <view class="zuo">
- <view class="zuoimg">A</view>
- <view class="zuoname">李先生</view>
- </view>
- <view class="you">
- <view class="youimg1"></view>
- <view class="youtext">接待中</view>
- </view>
- </view>
- <view class="centerbox">
- <view class="centerbox-che">手机号码:<text class="shizai">17551333886</text></view>
- <view class="centerbox-che">开始时间:<text class="shizai">2021-07-20 14:00:30</text></view>
- <view class="centerbox-che">顾问姓名:<text class="shizai">毛丫丫</text></view>
- <view class="centerbox-che2">
- <view class="Workcard">工牌电量:<text class="shizai">56%</text></view>
- <view class="Workcard">录音状态:<text class="shizai">使用中</text></view>
- </view>
- </view>
- <view class="footer-button">
- <view class="footer1">接待延时</view>
- <view class="footer1">重新指派</view>
- <view class="footer3">结束接待</view>
- </view>
- </view>
-
- <image @click="addreception()" class="add" src="/static/images/add.png" mode=""></image>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {};
- },
- components: {},
- onLoad() {},
- onShow() {},
- methods: {
- //新增接待
- addreception(){
- uni.navigateTo({
- url: '/pages/mine/reception/addreception'
- });
- }
- },
-
- };
- </script>
-
- <style lang="scss" scoped>
- .cented-box{
- background: #F8F8F8;
- width: 100%;
- height: 100%;
- padding-bottom: 30rpx;
- }
- .customer{
- margin-top: 30rpx;
- width: 100%;
- background: #FFFFFF;
- box-shadow: 0px 0px 12px 0px rgba(224, 224, 224, 0.3);
- .title{
- height: 90rpx;
- border-bottom: 1px solid #E0E0E0;
- display: flex;
- align-items: center;
- .zuo{
- width: 80%;
- height: 100%;
- display: flex;
- align-items: center;
- .zuoimg{
- width: 52rpx;
- height: 52rpx;
- border-radius: 50%;
- border: 1px solid #C9C9C9;
- font-size: 30rpx;
- color: #292929;
- font-weight: 400;
- line-height: 52rpx;
- text-align: center;
- margin-left: 30rpx;
- }
- .zuoname{
- font-size: 30rpx;
- font-weight: 500;
- color: #333333;
- line-height: 30rpx;
- margin-left: 20rpx;
- }
- }
- .you{
- width: 20%;
- height: 100%;
- display: flex;
- align-items: center;
- .youimg1{
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- background: #2B6EFF;
- }
- .youtext{
- font-size: 30rpx;
- font-weight: 400;
- color: #292929;
- line-height: 30rpx;
- margin-left: 10rpx;
- }
- }
- }
- .centerbox{
- .centerbox-che{
- width: 100%;
- margin-top: 30rpx;
- height: 30rpx;
- font-size: 30rpx;
- font-weight: 400;
- color: #666666;
- line-height: 30rpx;
- text-indent: 30rpx;
- .shizai{
- color: #333333;
- }
- }
- .centerbox-che2{
- width: 100%;
- margin-top: 30rpx;
- height: 30rpx;
- font-size: 30rpx;
- font-weight: 400;
- color: #666666;
- line-height: 30rpx;
- text-indent: 30rpx;
- display: flex;
- .Workcard{
- width: 50%;
- }
- }
- }
- .footer-button{
- margin-top: 30rpx;
- width: 100%;
- height: 90rpx;
- display: flex;
- font-size: 30rpx;
- font-weight: 400;
- color: #333333;
- border-top: 1rpx solid #E0E0E0;
- .footer1{
- flex: 1;
- text-align: center;
- line-height: 90rpx;
- border-right: 1rpx solid #E0E0E0;
- }
- .footer3{
- flex: 1;
- text-align: center;
- line-height: 90rpx;
- }
- }
- }
- .add {
- width: 90rpx;
- height: 90rpx;
- position: fixed;
- bottom: 70rpx;
- right: 44rpx;
- }
- </style>
|