123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <view class="">
- <u-navbar
- :title="title"
- :placeholder="true"
- :autoBack="true"
- :safeAreaInsetTop="true"
- >
- </u-navbar>
- <!-- <view class="title">积分规则</view> -->
- <view class="page-wrap parse-content">
- <u-parse :content="content"></u-parse>
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title:'',
- regulationName:'',
- content:'',
- type:'',
- }
- },
- onShow() {
-
- },
- onLoad(page) {
- this.title = page.regulationName;;
- this.regulationName = page.regulationName;
- this.type = page.type;
- // console.log('page',page);
- this.getPageData();
- },
- methods: {
- getPageData(){
- this.$u.api.getAgreement({type:this.type}).then(res=>{
- this.content = res.data.content
- console.log('res',res.data);
- }).catch(err=>{
- console.log('memberCreditDesc',err);
- })
- }
- }
- }
- </script>
- <style>
- page{
- background-color: #f5f5f5;
- }
- </style>
- <style lang="scss" scoped>
- .title{
- text-align: center;
- }
- </style>
|