| | |
| | | <view style="background: #F5F5F5;height: 24rpx;"> |
| | | |
| | | </view> |
| | | <view class="bg-white p10"> |
| | | <image :src="dto.cover" v-if="dto.cover" mode="aspectFit" class="m-t-8" |
| | | style="display: block;margin: 0 auto;" @click="previewImg(dto.cover)"></image> |
| | | |
| | | </view> |
| | | |
| | | <view style="background: #F5F5F5;height: 24rpx;"> |
| | | |
| | | </view> |
| | | |
| | | <!-- 活动描述 --> |
| | | <view class="info-desc"> |
| | | <view class="title">公告描述</view> |
| | | <view v-html="dto.content||'暂无'" class="rich" style="overflow: scroll;"> |
| | | <view v-html="dto.content||'暂无'" class="rich" style="overflow: scroll;"> |
| | | |
| | | </view> |
| | | </view> |
| | |
| | | this.$message.showLoading() |
| | | const { |
| | | data |
| | | } = await this.$http.request('get', '/api/announcement/page/view?id=' + this.id, { |
| | | } = await this.$http.request('get', '/api/pub/announcement/page/view?id=' + this.id, { |
| | | |
| | | }) |
| | | |
| | |
| | | this.dto = { |
| | | ...data |
| | | } |
| | | this.dto.content = this.$util.formatRichText(this.dto.content||'') |
| | | |
| | | this.dto.content = this.$util.formatRichText(this.dto.content || '') |
| | | |
| | | }, |
| | | } |
| | | } |