chatDetail.vue 1.7 KB

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