news.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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">
  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. }
  56. }
  57. </script>
  58. <style lang="scss">
  59. .back {
  60. width: 750rpx;
  61. // height: 1624rpx;
  62. background: #F4F4F4;
  63. padding: 20rpx 24rpx;
  64. box-sizing: border-box;
  65. .input {
  66. width: 702rpx;
  67. height: 72rpx;
  68. background: #FFFFFF;
  69. border-radius: 36rpx;
  70. padding: 0 24rpx;
  71. box-sizing: border-box;
  72. }
  73. .kefu {
  74. width: 702rpx;
  75. height: 156rpx;
  76. background: #FFFFFF;
  77. border-radius: 16rpx;
  78. padding: 36rpx 24rpx 32rpx;
  79. box-sizing: border-box;
  80. margin-top: 24rpx;
  81. }
  82. .name {
  83. font-family: PingFangSC, PingFang SC;
  84. font-weight: 400;
  85. font-size: 32rpx;
  86. color: #222222;
  87. line-height: 44rpx;
  88. text-align: left;
  89. font-style: normal;
  90. }
  91. .time {
  92. font-family: SFPro, SFPro;
  93. font-weight: 400;
  94. font-size: 20rpx;
  95. color: #666666;
  96. line-height: 24rpx;
  97. text-align: left;
  98. font-style: normal;
  99. }
  100. .news {
  101. font-family: PingFangSC, PingFang SC;
  102. font-weight: 400;
  103. font-size: 24rpx;
  104. color: #666666;
  105. line-height: 34rpx;
  106. text-align: left;
  107. font-style: normal;
  108. }
  109. .box {
  110. width: 702rpx;
  111. min-height: 1156rpx;
  112. background: #FFFFFF;
  113. border-radius: 16rpx;
  114. padding: 40rpx 24rpx 20rpx;
  115. box-sizing: border-box;
  116. margin-top: 20rpx;
  117. }
  118. }
  119. </style>