| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <template>
- <view>
- <!--文章标题-->
- <view class="text-black text-bold text-lg title">停水停电通知。</view>
- <view class="content-view-box">
- <view class="font-view">
- <u-parse :html="content"></u-parse>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- content:'市政通水设施突发性故障抢修,本小区供水压力暂受影响,敬请做好储水准备,预约影响时间2020年11月28号22时至11月29号16时,由此给您带来不便,敬请谅解。'
- }
- },
- onLoad(options) {
-
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- page {
- background: #FFFFFF;
- }
- .title {
- margin: 36.36rpx 27.27rpx;
- }
- .content-view-box {
- position: relative;
- .font-view {
- padding: 27.27rpx;
- line-height: 1.7;
- }
- image {
- width: 100%;
- }
- }
- </style>
|