You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

227 lines
5.1 KiB

  1. <template>
  2. <view class="cented-box">
  3. <view class="customer">
  4. <view class="title">
  5. <view class="zuo">
  6. <view class="zuoimg">A</view>
  7. <view class="zuoname">李先生</view>
  8. </view>
  9. <view class="you">
  10. <view class="youimg1"></view>
  11. <view class="youtext">接待中</view>
  12. </view>
  13. </view>
  14. <view class="centerbox">
  15. <view class="centerbox-che">手机号码:<text class="shizai">17551333886</text></view>
  16. <view class="centerbox-che">开始时间:<text class="shizai">2021-07-20 14:00:30</text></view>
  17. <view class="centerbox-che">顾问姓名:<text class="shizai">毛丫丫</text></view>
  18. <view class="centerbox-che2">
  19. <view class="Workcard">工牌电量:<text class="shizai">56%</text></view>
  20. <view class="Workcard">录音状态:<text class="shizai">使用中</text></view>
  21. </view>
  22. </view>
  23. <view class="footer-button">
  24. <view class="footer1">接待延时</view>
  25. <view class="footer1" @click="goConsultant">重新指派</view>
  26. <view class="footer3">结束接待</view>
  27. </view>
  28. </view>
  29. <view class="customer">
  30. <view class="title">
  31. <view class="zuo">
  32. <view class="zuoimg">A</view>
  33. <view class="zuoname">李先生</view>
  34. </view>
  35. <view class="you">
  36. <view class="youimg1"></view>
  37. <view class="youtext">排队中</view>
  38. </view>
  39. </view>
  40. <view class="centerbox">
  41. <view class="centerbox-che">手机号码:<text class="shizai">--</text></view>
  42. </view>
  43. <view class="footer-button">
  44. <view class="footer3">指派顾问</view>
  45. </view>
  46. </view>
  47. <view class="customer">
  48. <view class="title">
  49. <view class="zuo">
  50. <view class="zuoimg">A</view>
  51. <view class="zuoname">李先生</view>
  52. </view>
  53. <view class="you">
  54. <view class="youimg1"></view>
  55. <view class="youtext">接待中</view>
  56. </view>
  57. </view>
  58. <view class="centerbox">
  59. <view class="centerbox-che">手机号码:<text class="shizai">17551333886</text></view>
  60. <view class="centerbox-che">开始时间:<text class="shizai">2021-07-20 14:00:30</text></view>
  61. <view class="centerbox-che">顾问姓名:<text class="shizai">毛丫丫</text></view>
  62. <view class="centerbox-che2">
  63. <view class="Workcard">工牌电量:<text class="shizai">56%</text></view>
  64. <view class="Workcard">录音状态:<text class="shizai">使用中</text></view>
  65. </view>
  66. </view>
  67. <view class="footer-button">
  68. <view class="footer1">接待延时</view>
  69. <view class="footer1">重新指派</view>
  70. <view class="footer3">结束接待</view>
  71. </view>
  72. </view>
  73. <image @click="addreception()" class="add" src="/static/images/add.png" mode=""></image>
  74. </view>
  75. </template>
  76. <script>
  77. export default {
  78. data() {
  79. return {};
  80. },
  81. components: {},
  82. onLoad() {},
  83. onShow() {},
  84. methods: {
  85. //新增接待
  86. addreception(){
  87. uni.navigateTo({
  88. url: '/pages/mine/reception/addreception'
  89. });
  90. },
  91. goConsultant(){
  92. uni.navigateTo({
  93. url: '/pages/mine/reception/consultant'
  94. });
  95. },
  96. },
  97. };
  98. </script>
  99. <style lang="scss" scoped>
  100. .cented-box{
  101. background: #F8F8F8;
  102. width: 100%;
  103. height: 100%;
  104. padding-bottom: 30rpx;
  105. }
  106. .customer{
  107. margin-top: 30rpx;
  108. width: 100%;
  109. background: #FFFFFF;
  110. box-shadow: 0px 0px 12px 0px rgba(224, 224, 224, 0.3);
  111. .title{
  112. height: 90rpx;
  113. border-bottom: 1px solid #E0E0E0;
  114. display: flex;
  115. align-items: center;
  116. .zuo{
  117. width: 80%;
  118. height: 100%;
  119. display: flex;
  120. align-items: center;
  121. .zuoimg{
  122. width: 52rpx;
  123. height: 52rpx;
  124. border-radius: 50%;
  125. border: 1px solid #C9C9C9;
  126. font-size: 30rpx;
  127. color: #292929;
  128. font-weight: 400;
  129. line-height: 52rpx;
  130. text-align: center;
  131. margin-left: 30rpx;
  132. }
  133. .zuoname{
  134. font-size: 30rpx;
  135. font-weight: 500;
  136. color: #333333;
  137. line-height: 30rpx;
  138. margin-left: 20rpx;
  139. }
  140. }
  141. .you{
  142. width: 20%;
  143. height: 100%;
  144. display: flex;
  145. align-items: center;
  146. .youimg1{
  147. width: 12rpx;
  148. height: 12rpx;
  149. border-radius: 50%;
  150. background: #2B6EFF;
  151. }
  152. .youtext{
  153. font-size: 30rpx;
  154. font-weight: 400;
  155. color: #292929;
  156. line-height: 30rpx;
  157. margin-left: 10rpx;
  158. }
  159. }
  160. }
  161. .centerbox{
  162. .centerbox-che{
  163. width: 100%;
  164. margin-top: 30rpx;
  165. height: 30rpx;
  166. font-size: 30rpx;
  167. font-weight: 400;
  168. color: #666666;
  169. line-height: 30rpx;
  170. text-indent: 30rpx;
  171. .shizai{
  172. color: #333333;
  173. }
  174. }
  175. .centerbox-che2{
  176. width: 100%;
  177. margin-top: 30rpx;
  178. height: 30rpx;
  179. font-size: 30rpx;
  180. font-weight: 400;
  181. color: #666666;
  182. line-height: 30rpx;
  183. text-indent: 30rpx;
  184. display: flex;
  185. .Workcard{
  186. width: 50%;
  187. }
  188. }
  189. }
  190. .footer-button{
  191. margin-top: 30rpx;
  192. width: 100%;
  193. height: 90rpx;
  194. display: flex;
  195. font-size: 30rpx;
  196. font-weight: 400;
  197. color: #333333;
  198. border-top: 1rpx solid #E0E0E0;
  199. .footer1{
  200. flex: 1;
  201. text-align: center;
  202. line-height: 90rpx;
  203. border-right: 1rpx solid #E0E0E0;
  204. }
  205. .footer3{
  206. flex: 1;
  207. text-align: center;
  208. line-height: 90rpx;
  209. }
  210. }
  211. }
  212. .add {
  213. width: 90rpx;
  214. height: 90rpx;
  215. position: fixed;
  216. bottom: 70rpx;
  217. right: 44rpx;
  218. }
  219. </style>