news.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <!-- 聊天消息 -->
  3. <view class="back">
  4. <view class="input u-flex">
  5. <u-icon name="search" color="rgba(153, 153, 153, 1)" size="40"></u-icon>
  6. <input type="text" placeholder="搜索聊天记录/团长" style="width: 600rpx;margin-left: 16rpx;" />
  7. </view>
  8. <!-- 客服 -->
  9. <view class="kefu u-flex" @click="tokefu">
  10. <image src="/pageA/static/images/kefu.png" style="width: 88rpx;height: 88rpx;" mode=""></image>
  11. <view class="u-row-between"
  12. style="height: 88rpx;display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
  13. <view class="u-flex u-row-between">
  14. <view class="name">官方客服</view>
  15. <view class="time">14:09</view>
  16. </view>
  17. <view class="u-flex u-row-between">
  18. <text class="news">[卡片]</text>
  19. <u-badge :type="type" max="99" :value="value"></u-badge>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="box " >
  24. <view class="u-flex " style="margin-bottom: 26rpx;" v-for="(item,idx) in 6" @click="chat">
  25. <image src="/pageA/static/images/kefu.png" style="width: 88rpx;height: 88rpx;" mode=""></image>
  26. <view class="u-row-between"
  27. style="display: flex;flex-direction: column;margin-left: 20rpx;width: 85%;">
  28. <view class="u-flex u-row-between">
  29. <view class="name">官方客服</view>
  30. <view class="time">14:09</view>
  31. </view>
  32. <view class="u-flex u-row-between" style="border-bottom: 2rpx solid #979797;padding-bottom: 26rpx;margin-top: 10rpx;">
  33. <text class="news">[卡片]</text>
  34. <u-badge :type="type" max="99" :value="value"></u-badge>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {
  45. type: "error",
  46. value: 1
  47. };
  48. },
  49. methods:{
  50. tokefu(){
  51. uni.navigateTo({
  52. url:'/pageA/service/service'
  53. })
  54. },
  55. chat(){
  56. uni.navigateTo({
  57. url:'/pageA/chat/chat'
  58. })
  59. }
  60. }
  61. }
  62. </script>
  63. <style lang="scss">
  64. .back {
  65. width: 750rpx;
  66. // height: 1624rpx;
  67. background: #F4F4F4;
  68. padding: 20rpx 24rpx;
  69. box-sizing: border-box;
  70. .input {
  71. width: 702rpx;
  72. height: 72rpx;
  73. background: #FFFFFF;
  74. border-radius: 36rpx;
  75. padding: 0 24rpx;
  76. box-sizing: border-box;
  77. }
  78. .kefu {
  79. width: 702rpx;
  80. height: 156rpx;
  81. background: #FFFFFF;
  82. border-radius: 16rpx;
  83. padding: 36rpx 24rpx 32rpx;
  84. box-sizing: border-box;
  85. margin-top: 24rpx;
  86. }
  87. .name {
  88. font-family: PingFangSC, PingFang SC;
  89. font-weight: 400;
  90. font-size: 32rpx;
  91. color: #222222;
  92. line-height: 44rpx;
  93. text-align: left;
  94. font-style: normal;
  95. }
  96. .time {
  97. font-family: SFPro, SFPro;
  98. font-weight: 400;
  99. font-size: 20rpx;
  100. color: #666666;
  101. line-height: 24rpx;
  102. text-align: left;
  103. font-style: normal;
  104. }
  105. .news {
  106. font-family: PingFangSC, PingFang SC;
  107. font-weight: 400;
  108. font-size: 24rpx;
  109. color: #666666;
  110. line-height: 34rpx;
  111. text-align: left;
  112. font-style: normal;
  113. }
  114. .box {
  115. width: 702rpx;
  116. min-height: 1156rpx;
  117. background: #FFFFFF;
  118. border-radius: 16rpx;
  119. padding: 40rpx 24rpx 20rpx;
  120. box-sizing: border-box;
  121. margin-top: 20rpx;
  122. }
  123. }
  124. </style>