12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <view class="content">
- <view class="box">
- <view class="hflex acenter">
- <view class="dian" v-if="is_read"></view>
- <view class="title">{{title}}</view>
- </view>
- <u-parse :content="text"></u-parse>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- id: '',
- title: '',
- text: '',
- is_read: 0
- }
- },
- onLoad(options) {
- that = this
- that.id = options.id
- },
- methods: {
-
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background-color: #F4f4f4;
- padding: 20rpx 30rpx 0;
- .box {
- width: 100%;
- box-sizing: border-box;
- padding: 48rpx 20rpx;
- background-color: #fff;
- border-radius: 24rpx;
- .dian {
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- background-color: #ff4646;
- margin-right: 8rpx;
- }
- .title {
- font-size: 32rpx;
- color: #222;
- }
- }
- }
- </style>
|