Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

222 lignes
4.9 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">重新指派</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. },
  92. };
  93. </script>
  94. <style lang="scss" scoped>
  95. .cented-box{
  96. background: #F8F8F8;
  97. width: 100%;
  98. height: 100%;
  99. padding-bottom: 30rpx;
  100. }
  101. .customer{
  102. margin-top: 30rpx;
  103. width: 100%;
  104. background: #FFFFFF;
  105. box-shadow: 0px 0px 12px 0px rgba(224, 224, 224, 0.3);
  106. .title{
  107. height: 90rpx;
  108. border-bottom: 1px solid #E0E0E0;
  109. display: flex;
  110. align-items: center;
  111. .zuo{
  112. width: 80%;
  113. height: 100%;
  114. display: flex;
  115. align-items: center;
  116. .zuoimg{
  117. width: 52rpx;
  118. height: 52rpx;
  119. border-radius: 50%;
  120. border: 1px solid #C9C9C9;
  121. font-size: 30rpx;
  122. color: #292929;
  123. font-weight: 400;
  124. line-height: 52rpx;
  125. text-align: center;
  126. margin-left: 30rpx;
  127. }
  128. .zuoname{
  129. font-size: 30rpx;
  130. font-weight: 500;
  131. color: #333333;
  132. line-height: 30rpx;
  133. margin-left: 20rpx;
  134. }
  135. }
  136. .you{
  137. width: 20%;
  138. height: 100%;
  139. display: flex;
  140. align-items: center;
  141. .youimg1{
  142. width: 12rpx;
  143. height: 12rpx;
  144. border-radius: 50%;
  145. background: #2B6EFF;
  146. }
  147. .youtext{
  148. font-size: 30rpx;
  149. font-weight: 400;
  150. color: #292929;
  151. line-height: 30rpx;
  152. margin-left: 10rpx;
  153. }
  154. }
  155. }
  156. .centerbox{
  157. .centerbox-che{
  158. width: 100%;
  159. margin-top: 30rpx;
  160. height: 30rpx;
  161. font-size: 30rpx;
  162. font-weight: 400;
  163. color: #666666;
  164. line-height: 30rpx;
  165. text-indent: 30rpx;
  166. .shizai{
  167. color: #333333;
  168. }
  169. }
  170. .centerbox-che2{
  171. width: 100%;
  172. margin-top: 30rpx;
  173. height: 30rpx;
  174. font-size: 30rpx;
  175. font-weight: 400;
  176. color: #666666;
  177. line-height: 30rpx;
  178. text-indent: 30rpx;
  179. display: flex;
  180. .Workcard{
  181. width: 50%;
  182. }
  183. }
  184. }
  185. .footer-button{
  186. margin-top: 30rpx;
  187. width: 100%;
  188. height: 90rpx;
  189. display: flex;
  190. font-size: 30rpx;
  191. font-weight: 400;
  192. color: #333333;
  193. border-top: 1rpx solid #E0E0E0;
  194. .footer1{
  195. flex: 1;
  196. text-align: center;
  197. line-height: 90rpx;
  198. border-right: 1rpx solid #E0E0E0;
  199. }
  200. .footer3{
  201. flex: 1;
  202. text-align: center;
  203. line-height: 90rpx;
  204. }
  205. }
  206. }
  207. .add {
  208. width: 90rpx;
  209. height: 90rpx;
  210. position: fixed;
  211. bottom: 70rpx;
  212. right: 44rpx;
  213. }
  214. </style>