detail.vue 953 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="hflex acenter">
  5. <view class="dian" v-if="is_read"></view>
  6. <view class="title">{{title}}</view>
  7. </view>
  8. <u-parse :content="text"></u-parse>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. import $api from '@/static/js/api.js'
  14. var that = ''
  15. export default {
  16. data() {
  17. return {
  18. id: '',
  19. title: '',
  20. text: '',
  21. is_read: 0
  22. }
  23. },
  24. onLoad(options) {
  25. that = this
  26. that.id = options.id
  27. },
  28. methods: {
  29. },
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. .content {
  34. background-color: #F4f4f4;
  35. padding: 20rpx 30rpx 0;
  36. .box {
  37. width: 100%;
  38. box-sizing: border-box;
  39. padding: 48rpx 20rpx;
  40. background-color: #fff;
  41. border-radius: 24rpx;
  42. .dian {
  43. width: 12rpx;
  44. height: 12rpx;
  45. border-radius: 50%;
  46. background-color: #ff4646;
  47. margin-right: 8rpx;
  48. }
  49. .title {
  50. font-size: 32rpx;
  51. color: #222;
  52. }
  53. }
  54. }
  55. </style>