resources.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view class="content">
  3. <view class="hflex acenter jbetween">
  4. <view class="top_bg">
  5. <view class="top" @click="toRule(1)">规则</view>
  6. </view>
  7. <view class="top_bg">
  8. <view class="top" @click="toRule(2)">公约</view>
  9. </view>
  10. <view class="top_bg">
  11. <view class="top" @click="toRule(3)">供方认可机构清单</view>
  12. </view>
  13. </view>
  14. <view class="">
  15. <block v-for="(item,index) in pageList" :key="index">
  16. <view class="box">
  17. <view class="box_name">{{item.title}}</view>
  18. <view class="text_style1 text_hide">规则:{{item.c_rule}}</view>
  19. <view class="text_style1 text_hide">公约:{{item.c_conv}}</view>
  20. <view class="bottom hflex jend">
  21. <view class="btn" @click="toDetail(item.id)">查看详情</view>
  22. </view>
  23. </view>
  24. </block>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import $api from '@/static/js/api.js'
  30. var that = ''
  31. export default {
  32. data() {
  33. return {
  34. pageList: [
  35. ],
  36. page: 1,
  37. limit: 10,
  38. total: 10
  39. }
  40. },
  41. onLoad() {
  42. that = this
  43. that.getList()
  44. },
  45. methods: {
  46. getList() {
  47. $api.req({
  48. url: '/data/api.ResCenter/index',
  49. data: {
  50. page: that.page,
  51. limit: that.limit
  52. }
  53. }, function(res) {
  54. if(res.code == 1) {
  55. if(that.page == 1) {
  56. that.pageList = res.data.data
  57. } else {
  58. that.pageList.concat(res.data.data)
  59. }
  60. }
  61. })
  62. },
  63. // 查看详情
  64. toDetail(id) {
  65. $api.jump('/page_index/pages/resources/resourDetail?id=' + id)
  66. },
  67. // 规则
  68. toRule(index) {
  69. $api.jump('/page_index/pages/resources/rule?index=' + index)
  70. }
  71. },
  72. }
  73. </script>
  74. <style lang="scss" scoped>
  75. .content {
  76. padding: 20rpx 30rpx;
  77. background: #F4F4F4;
  78. .top_bg {
  79. height: 64rpx;
  80. box-sizing: border-box;
  81. padding: 0 60rpx;
  82. background: #506DFF;
  83. border-radius: 12rpx;
  84. .top {
  85. font-size: 26rpx;
  86. font-weight: 400;
  87. color: #FFFFFF;
  88. line-height: 64rpx;
  89. position: relative;
  90. }
  91. .top::before {
  92. position: absolute;
  93. content: "";
  94. width: 8rpx;
  95. height: 8rpx;
  96. background: #FFB33A;
  97. border-radius: 50%;
  98. top: 32rpx;
  99. left: -16rpx;
  100. }
  101. }
  102. .box {
  103. width: 100%;
  104. margin-top: 20rpx;
  105. background: #FFFFFF;
  106. border-radius: 24rpx;
  107. box-sizing: border-box;
  108. padding: 24rpx 20rpx;
  109. .box_name {
  110. font-size: 30rpx;
  111. font-weight: 500;
  112. color: #222222;
  113. line-height: 42rpx;
  114. padding-bottom: 20rpx;
  115. }
  116. .text_style1 {
  117. font-size: 20rpx;
  118. font-weight: 400;
  119. color: #999999;
  120. line-height: 28rpx;
  121. padding-bottom: 20rpx;
  122. }
  123. .bottom {
  124. width: 100%;
  125. padding: 20rpx 0 0;
  126. border-top: 1rpx solid #F4F4F4;
  127. .btn {
  128. width: 148rpx;
  129. height: 52rpx;
  130. border-radius: 28rpx;
  131. border: 1px solid #506DFF;
  132. text-align: center;
  133. line-height: 52rpx;
  134. font-size: 26rpx;
  135. font-weight: 400;
  136. color: #506DFF;
  137. }
  138. }
  139. }
  140. }
  141. </style>