regulation.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view class="">
  3. <u-navbar
  4. :title="title"
  5. :placeholder="true"
  6. :autoBack="true"
  7. :safeAreaInsetTop="true"
  8. >
  9. </u-navbar>
  10. <!-- <view class="title">积分规则</view> -->
  11. <view class="page-wrap parse-content">
  12. <u-parse :content="content"></u-parse>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. title:'',
  21. regulationName:'',
  22. content:'',
  23. type:'',
  24. }
  25. },
  26. onShow() {
  27. },
  28. onLoad(page) {
  29. this.title = page.regulationName;;
  30. this.regulationName = page.regulationName;
  31. this.type = page.type;
  32. // console.log('page',page);
  33. this.getPageData();
  34. },
  35. methods: {
  36. getPageData(){
  37. this.$u.api.getAgreement({type:this.type}).then(res=>{
  38. this.content = res.data.content
  39. console.log('res',res.data);
  40. }).catch(err=>{
  41. console.log('memberCreditDesc',err);
  42. })
  43. }
  44. }
  45. }
  46. </script>
  47. <style>
  48. page{
  49. background-color: #f5f5f5;
  50. }
  51. </style>
  52. <style lang="scss" scoped>
  53. .title{
  54. text-align: center;
  55. }
  56. </style>