You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong_qianduan/pages/activity/presaleRule.vue

54 lines
1.1 KiB

10 months ago
<template>
<view class="presale">
<view class="p" v-html="content"></view>
10 months ago
</view>
</template>
<script>
import * as Api from '@/api/help'
10 months ago
export default {
data() {
return {
content: '',
type: 4
}
},
onLoad(op) {
uni.setNavigationBarTitle({
title: op.type == 5 ? '预售规则' : '排行榜规则'
})
this.type = op.type
this.getCarouselList(op.type)
},
onShow() {},
methods: {
// 获取预售规则
getCarouselList(type) {
const app = this;
Api.getAgreement({
type: type==5?'presale_rule':"rank_rule"
10 months ago
})
.then(result => {
let content = result.data.detail.content;
if(content){
content = content.replace(/style=""/g,'').replace(/<img src=/g,'<img style="width: 100%; display:block" src=')
}
this.content = content
10 months ago
})
.finally(() => app.isLoading = false)
},
}
}
</script>
10 months ago
<style lang="scss" scoped>
10 months ago
.presale {
padding: 40rpx;
10 months ago
.p {
10 months ago
font-size: 26rpx;
line-height: 50rpx;
10 months ago
color: #212121;
}
10 months ago
}
</style>