rule.vue 649 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <u-parse :content="text"></u-parse>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. import $api from '@/static/js/api.js'
  10. var that = ''
  11. export default {
  12. data() {
  13. return {
  14. text: ''
  15. }
  16. },
  17. onLoad() {
  18. that = this
  19. that.getData()
  20. },
  21. methods: {
  22. getData() {
  23. $api.req({
  24. url: '/data/api.business.Login/getconfigset',
  25. method: 'POST',
  26. }, function(res) {
  27. if(res.code ==1) {
  28. that.text = res.data.shop_platform_rules
  29. }
  30. })
  31. }
  32. },
  33. }
  34. </script>
  35. <style lang="scss" scoped>
  36. .content {
  37. padding: 30rpx;
  38. .box {
  39. width: 100%;
  40. }
  41. }
  42. </style>