| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="u-content">
- <u-parse :html="content" ></u-parse>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- content: ''
- }
- },
- onLoad() {
- this.fetchDetail()
- },
- methods:{
- fetchDetail(){
- let params={
- title:'活动规则'
- }
- this.$api.notice.detail(params).then(res=>{
- this.content=res.data.data.content
- })
- },
- }
- }
- </script>
- <style >
- page{
- background-color: #FFFFFF;
- }
-
- .u-content {
- padding: 30rpx;
- line-height: 50rpx;
- }
- </style>
|