chatDetail.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <view class="container">
  3. <view class="list-box">
  4. <view class="list-item-box" v-for="item in list" :key="item.id">
  5. <view class="header-box">
  6. <view class="icon-box">
  7. <cover-image class="icon" :src="`/static/chat-icon/${item.type}.png`"></cover-image>
  8. </view>
  9. <view class="title-box">
  10. {{item.title}}
  11. </view>
  12. </view>
  13. <view class="main-box">
  14. {{item.content}}
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script setup>
  21. import { ref } from 'vue'
  22. import { onLoad } from '@dcloudio/uni-app'
  23. const chatId = ref()
  24. const chatTitle = ref('')
  25. const list = ref([
  26. {
  27. id: '1',
  28. title: '课程提醒',
  29. content: '尊敬的用户,您预约2023年8月16日《广州市存量房网……》直播课堂已经开始,请及时观看!',
  30. type: 'jiaoyu',
  31. time: '8/16',
  32. },
  33. {
  34. id: '2',
  35. title: '课程提醒',
  36. content: '尊敬的用户,您预约2023年8月16日《xxxx》直播课堂已经开始,请及时观看!',
  37. type: 'jiaoyu',
  38. time: '8/16',
  39. },
  40. ])
  41. onLoad((load) => {
  42. chatId.value = load.id
  43. chatTitle.value = load.title
  44. uni.setNavigationBarTitle({
  45. title: chatTitle.value
  46. })
  47. })
  48. </script>
  49. <style lang="scss" scoped>
  50. .container {
  51. height: 100vh;
  52. width: 100vw;
  53. background-color: $uni-bg-color;
  54. padding: 0 20rpx;
  55. .list-box {
  56. padding: 0 20rpx;
  57. .list-item-box {
  58. padding: 20rpx;
  59. background-color: $uni-text-color-inverse;
  60. margin-bottom: 30rpx;
  61. border-radius: $uni-card-border-radius;
  62. &:active {
  63. background-color: $uni-bg-color-hover;
  64. }
  65. .header-box {
  66. display: flex;
  67. align-items: center;
  68. margin-bottom: 10rpx;
  69. .icon-box {
  70. width: 50rpx;
  71. .icon {
  72. width: 35rpx;
  73. height: 35rpx;
  74. }
  75. }
  76. .title-box {
  77. font-size: $uni-title-font-size-2;
  78. font-weight: bolder;
  79. }
  80. }
  81. .main-box {
  82. padding: 10rpx;
  83. padding-bottom: 0;
  84. font-size: $uni-font-size-1;
  85. font-weight: bold;
  86. line-height: 40rpx;
  87. }
  88. }
  89. }
  90. }
  91. </style>