江西小程序管理端
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.

129 lines
2.7 KiB

1 year ago
  1. <template>
  2. <!-- 考场 -->
  3. <view class="consultItem">
  4. <view class="top_row">
  5. <view class="flex">
  6. <view class="schoolName">张三三 18265468753</view>
  7. </view>
  8. <view class="status">
  9. <view class="text">待处理</view>
  10. <view class="icon">
  11. <u-icon name="arrow-right" size="14" color="#686B73" style="margin-left: 12rpx;" ></u-icon>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="target">
  16. <view class="row">
  17. <view class="iconImg">
  18. <image src="@/static/images/index/radio_nor.png" mode=""></image>
  19. </view>
  20. <view class="name">报名时间2023/08/08</view>
  21. </view>
  22. <view class="row">
  23. <view class="iconImg">
  24. <image src="@/static/images/index/radio_nor.png" mode=""></image>
  25. </view>
  26. <view class="name">学驾车型C1小型汽车手动挡</view>
  27. </view>
  28. <view class="row">
  29. <view class="iconImg">
  30. <image src="@/static/images/index/radio_nor.png" mode=""></image>
  31. </view>
  32. <view class="name">报名班型C1一对一VIP班</view>
  33. </view>
  34. </view>
  35. <view class="border_bottom">
  36. <view class="row">
  37. <view class="lab">申请退款金额</view>
  38. <view class="val">8880.13</view>
  39. </view>
  40. <view class="btn_row">
  41. <view class="btnBg">审核通过</view>
  42. <view class="btnBg">审核不通过</view>
  43. </view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. </script>
  49. <style lang="scss" scoped>
  50. .consultItem {
  51. width: 100%;
  52. .top_row {
  53. display: flex;
  54. width: 100%;
  55. height: 116rpx;
  56. border-bottom: 2rpx dashed #E8E9EC;
  57. justify-content: space-between;
  58. align-items: center;
  59. .tag {
  60. // width: 176rpx;
  61. height: 60rpx;
  62. background: rgba(250, 149, 25, 0.1);
  63. border-radius: 8rpx;
  64. text-align: center;
  65. font-size: 28rpx;
  66. color: #FA7919;
  67. margin-right: 24rpx;
  68. padding: 10rpx 18rpx;
  69. }
  70. .schoolName {
  71. font-size: 28rpx;
  72. font-weight: 550;
  73. color: #333;
  74. margin-left: 20rpx;
  75. }
  76. .status {
  77. display: flex;
  78. align-items: center;
  79. .text {
  80. font-size: 28rpx;
  81. color: $themC;
  82. }
  83. }
  84. }
  85. .target {
  86. padding: 20rpx 0;
  87. }
  88. .row {
  89. padding: 16rpx 0;
  90. display: flex;
  91. align-items: center;
  92. .iconImg {
  93. width: 25rpx;
  94. height: 25rpx;
  95. }
  96. .name {
  97. font-size: 28rpx;
  98. color: #333;
  99. padding-left: 20rpx;
  100. }
  101. }
  102. }
  103. .border_bottom {
  104. border-top: 2rpx dashed #E8E9EC;
  105. .row {
  106. padding: 28rpx 0;
  107. display: flex;
  108. align-items: center;
  109. justify-content: space-between;
  110. .val {
  111. color: $themC;
  112. }
  113. }
  114. .btn_row {
  115. display: flex;
  116. justify-content: center;
  117. padding: 30rpx 0;
  118. .btnBg {
  119. width: 188rpx;
  120. margin: 0 26rpx;
  121. &:first-child {
  122. width: 168rpx;
  123. }
  124. }
  125. }
  126. }
  127. </style>