regulation.vue 500 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="">
  3. <u-navbar
  4. title="积分规则"
  5. :autoBack="true"
  6. :safeAreaInsetTop="true"
  7. >
  8. </u-navbar>
  9. <view class="title">积分规则</view>
  10. <u-parse :content="content"></u-parse>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. content:'',
  18. }
  19. },
  20. onShow() {
  21. },
  22. onLoad() {
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style>
  29. page{
  30. background-color: #f5f5f5;
  31. }
  32. </style>
  33. <style lang="scss" scoped>
  34. .title{
  35. text-align: center;
  36. }
  37. </style>