球星卡微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
2.1 KiB

  1. <template>
  2. <view class="flex-col page">
  3. <view class="flex-col group_4">
  4. <view class="flex-col section_2">
  5. <view class="justify-between" v-for="(item, index) in list" :key="index">
  6. <text class="text_2">{{ item.title }}</text>
  7. <text class="text_3">{{ item.value }}</text>
  8. </view>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import { quickList } from '@/service/grading.js';
  15. export default {
  16. data() {
  17. return {
  18. list: []
  19. };
  20. },
  21. onLoad(){
  22. quickList().then(res => {
  23. this.list = res.data.datas;
  24. })
  25. }
  26. };
  27. </script>
  28. <style scoped lang="css">
  29. .page {
  30. background-color: #f6f6f6;
  31. width: 100%;
  32. overflow-y: auto;
  33. height: 100%;
  34. }
  35. .justify-between{
  36. padding: 20rpx 0;
  37. }
  38. .group_4 {
  39. padding: 2rpx 0 16rpx;
  40. flex: 1 1 auto;
  41. overflow-y: auto;
  42. }
  43. .section_2 {
  44. padding: 20rpx 30rpx 20rpx 32rpx;
  45. background-color: rgb(255, 255, 255);
  46. }
  47. .group_6 {
  48. margin-top: 50rpx;
  49. }
  50. .group_7 {
  51. margin-top: 50rpx;
  52. }
  53. .group_8 {
  54. margin-top: 50rpx;
  55. }
  56. .text_2 {
  57. color: rgb(51, 51, 51);
  58. font-size: 32rpx;
  59. font-weight: 500;
  60. line-height: 44rpx;
  61. white-space: nowrap;
  62. }
  63. .text_3 {
  64. color: rgb(119, 119, 119);
  65. font-size: 32rpx;
  66. font-weight: 500;
  67. line-height: 44rpx;
  68. white-space: nowrap;
  69. }
  70. .text_4 {
  71. color: rgb(51, 51, 51);
  72. font-size: 32rpx;
  73. font-weight: 500;
  74. line-height: 44rpx;
  75. white-space: nowrap;
  76. }
  77. .text_5 {
  78. color: rgb(119, 119, 119);
  79. font-size: 32rpx;
  80. font-weight: 500;
  81. line-height: 44rpx;
  82. white-space: nowrap;
  83. }
  84. .text_6 {
  85. color: rgb(51, 51, 51);
  86. font-size: 32rpx;
  87. font-weight: 500;
  88. line-height: 44rpx;
  89. white-space: nowrap;
  90. }
  91. .text_7 {
  92. color: rgb(119, 119, 119);
  93. font-size: 32rpx;
  94. font-weight: 500;
  95. line-height: 44rpx;
  96. white-space: nowrap;
  97. }
  98. .text_8 {
  99. color: rgb(51, 51, 51);
  100. font-size: 32rpx;
  101. font-weight: 500;
  102. line-height: 44rpx;
  103. white-space: nowrap;
  104. }
  105. .text_9 {
  106. color: rgb(119, 119, 119);
  107. font-size: 32rpx;
  108. font-weight: 500;
  109. line-height: 44rpx;
  110. white-space: nowrap;
  111. }
  112. </style>