resourDetail.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter">
  4. <image src="/static/images/comment/company1.png" class="top_img"></image>
  5. <view class="top_text">{{pageData.title}}</view>
  6. </view>
  7. <view class="box">
  8. <view class="tabs hflex acenter jcenter">
  9. <view class="tabs_item" :class="tab_active == 1 ? 'tab_active' : ''" @click="changeTab(1)">规则</view>
  10. <view class="tabs_item" :class="tab_active == 2 ? 'tab_active' : ''" @click="changeTab(2)">公约</view>
  11. </view>
  12. <view class="text">
  13. <u-parse :content="content"></u-parse>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. import $api from '@/static/js/api.js'
  20. var that = ''
  21. export default {
  22. data() {
  23. return {
  24. pageData: {
  25. },
  26. content: '',
  27. tab_active: 1,
  28. id: ''
  29. }
  30. },
  31. onLoad(options) {
  32. that = this
  33. that.id = options.id
  34. that.getData()
  35. },
  36. methods: {
  37. getData() {
  38. $api.req({
  39. url: '/data/api.ResCenter/show',
  40. data: {
  41. id: that.id
  42. }
  43. }, function(res) {
  44. if(res.code == 1) {
  45. that.pageData = res.data
  46. that.content = res.data.c_rule
  47. }
  48. })
  49. },
  50. // 切换tab
  51. changeTab(index) {
  52. that.tab_active = index
  53. if(index == 1) {
  54. that.content = that.pageData.c_rule
  55. } else {
  56. that.content = that.pageData.c_conv
  57. }
  58. }
  59. },
  60. }
  61. </script>
  62. <style lang="scss" scoped>
  63. .content {
  64. background: #F4F4F4;
  65. .top {
  66. width: 100%;
  67. height: 120rpx;
  68. background: #FFFFFF;
  69. box-sizing: border-box;
  70. padding: 36rpx 30rpx;
  71. .top_img {
  72. width: 48rpx;
  73. height: 48rpx;
  74. }
  75. .top_text {
  76. font-size: 36rpx;
  77. font-weight: 500;
  78. color: #222222;
  79. line-height: 50rpx;
  80. padding-left: 12rpx;
  81. }
  82. }
  83. .box {
  84. margin: 20rpx 0 0;
  85. width: 100%;
  86. min-height: calc(100vh - 140rpx);
  87. background: #FFFFFF;
  88. .tabs {
  89. width: 100%;
  90. padding: 24rpx 0 16rpx;
  91. border-bottom: 1rpx solid #F4F4F4;
  92. .tabs_item {
  93. width: 50%;
  94. text-align: center;
  95. font-size: 30rpx;
  96. font-weight: 400;
  97. color: #222222;
  98. line-height: 42rpx;
  99. }
  100. .tab_active {
  101. color: #506DFF;
  102. position: relative;
  103. }
  104. .tab_active::after {
  105. position: absolute;
  106. content: "";
  107. bottom: -16rpx;
  108. left: 160rpx;
  109. width: 60rpx;
  110. height: 6rpx;
  111. background: #506DFF;
  112. border-radius: 8rpx;
  113. }
  114. }
  115. .text {
  116. width: 100%;
  117. box-sizing: border-box;
  118. padding: 30rpx;
  119. }
  120. }
  121. }
  122. </style>