rule.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="content">
  3. <u-parse :content="content"></u-parse>
  4. </view>
  5. </template>
  6. <script>
  7. import $api from '@/static/js/api.js'
  8. var that = ''
  9. export default {
  10. data() {
  11. return {
  12. content: ''
  13. }
  14. },
  15. onLoad(options) {
  16. that = this
  17. var title = ''
  18. switch(options.index) {
  19. case '1':
  20. title = '规则';
  21. break;
  22. case '2':
  23. title = '公约';
  24. break;
  25. case '3':
  26. title = '供方认可机构清单';
  27. break;
  28. }
  29. uni.setNavigationBarTitle({
  30. title: title
  31. })
  32. that.getData(options.index)
  33. },
  34. methods: {
  35. getData(index) {
  36. $api.req({
  37. url: '/data/api.ResCenter/config'
  38. }, function(res) {
  39. if(res.code == 1) {
  40. switch(index) {
  41. case '1':
  42. that.content = res.data.c_rule;
  43. break;
  44. case '2':
  45. that.content = res.data.c_conv;
  46. break;
  47. case '3':
  48. that.content = res.data.c_menu;
  49. break;
  50. }
  51. }
  52. })
  53. }
  54. },
  55. }
  56. </script>
  57. <style lang="scss" scoped>
  58. .content {
  59. background-color: #fff;
  60. padding: 24rpx 30rpx;
  61. }
  62. </style>