detail.vue 879 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view>
  3. <!--文章标题-->
  4. <view class="text-black text-bold text-lg title">停水停电通知。</view>
  5. <view class="content-view-box">
  6. <view class="font-view">
  7. <u-parse :html="content"></u-parse>
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. components: {
  15. },
  16. data() {
  17. return {
  18. content:'市政通水设施突发性故障抢修,本小区供水压力暂受影响,敬请做好储水准备,预约影响时间2020年11月28号22时至11月29号16时,由此给您带来不便,敬请谅解。'
  19. }
  20. },
  21. onLoad(options) {
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style lang="scss">
  28. page {
  29. background: #FFFFFF;
  30. }
  31. .title {
  32. margin: 36.36rpx 27.27rpx;
  33. }
  34. .content-view-box {
  35. position: relative;
  36. .font-view {
  37. padding: 27.27rpx;
  38. line-height: 1.7;
  39. }
  40. image {
  41. width: 100%;
  42. }
  43. }
  44. </style>