rule.vue 589 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="box">
  3. <rich-text :nodes="integralRole" style="background: #fff;"></rich-text>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. integralRole:'',
  11. }
  12. },
  13. onLoad(opt) {
  14. this.getdata()
  15. },
  16. methods: {
  17. getdata(){
  18. uni.showLoading({
  19. title: '加载中'
  20. })
  21. this.$http('openIntegralMall/integralInfo', {
  22. },'GET').then(res => {
  23. uni.hideLoading();
  24. this.integralRole=res.data.integralRole
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style scoped>
  31. .box{
  32. /* background: #ffffff;
  33. min-height: 100vh; */
  34. }
  35. </style>