messageInfo.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view class="info">
  3. <u-navbar
  4. title-color="#fff"
  5. :custom-back="customBack"
  6. :border-bottom="false"
  7. back-icon-color="#CCE8FF"
  8. :background="{ background: '#008CFF' }"
  9. title="消息详情"
  10. ></u-navbar>
  11. <view class="time">{{ details.createTime }}</view>
  12. <view class="box">
  13. <view class="title">{{ details.title }}</view>
  14. <view class="content">{{ details.content }}</view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. details: {}
  23. };
  24. },
  25. onLoad(page) {
  26. const details = JSON.parse(page.details);
  27. if (details) {
  28. this.details = details;
  29. }
  30. },
  31. methods: {
  32. customBack() {
  33. this.$u.route({
  34. url: 'pages/message/message'
  35. });
  36. }
  37. }
  38. };
  39. </script>
  40. <style>
  41. /* #ifndef H5 */
  42. page {
  43. height: 100%;
  44. background-color: #f6f6ff;
  45. }
  46. /* #endif */
  47. </style>
  48. <style lang="scss" scoped>
  49. .info {
  50. padding: 40rpx 40rpx;
  51. }
  52. .box {
  53. margin-top: 20rpx;
  54. background-color: white;
  55. border-radius: 15rpx;
  56. .title {
  57. padding-top: 20rpx;
  58. text-align: center;
  59. font-size: 40rpx;
  60. }
  61. }
  62. .content {
  63. text-indent: 2em;
  64. padding: 20rpx 40rpx;
  65. line-height: 44rpx;
  66. }
  67. </style>