info.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <view class="center">
  3. <view class="box">
  4. <view class="title">上级用户收款信息(上一级)</view>
  5. <view class="main flex" style="border-bottom: 1px solid #F0F0F0;">
  6. <view class="left flex">
  7. <view class="avtor"><image src="" mode=""></image></view>
  8. <view class="main-info">
  9. <view class="name">111</view>
  10. <view class="phone">111</view>
  11. </view>
  12. </view>
  13. <view class="right">打款金额:¥2000</view>
  14. </view>
  15. <view class="main flex">
  16. <view class="left flex">
  17. <view class="bank"><image src="../../static/img/bank.png" mode=""></image></view>
  18. <view class="main-info">
  19. <view class="name">111</view>
  20. <view class="name">111</view>
  21. </view>
  22. </view>
  23. <view class="right"><view class="right-box">上传凭证</view></view>
  24. </view>
  25. </view>
  26. <view class="tishi">
  27. *请线下打款并保存截图相关凭证并上传
  28. </view>
  29. </view>
  30. </template>
  31. <script></script>
  32. <style lang="scss">
  33. .box {
  34. padding-top: 10rpx;
  35. color: #fad6b0;
  36. .title {
  37. color: #fff;
  38. padding: 10rpx 0 10rpx 20rpx;
  39. border-bottom: 1px solid #f0f0f0;
  40. font-size: 28rpx;
  41. font-family: PingFang SC;
  42. font-weight: 500;
  43. color: #ffffff;
  44. }
  45. .main {
  46. width: 90%;
  47. margin: 0 auto;
  48. padding: 20rpx;
  49. align-items: center;
  50. .left {
  51. justify-content: flex-start;
  52. .bank {
  53. margin-left: 10rpx;
  54. width: 48rpx;
  55. height: 40rpx;
  56. image {
  57. width: 100%;
  58. height: 100%;
  59. }
  60. }
  61. .avtor {
  62. background: #fff;
  63. width: 80rpx;
  64. height: 80rpx;
  65. border-radius: 50%;
  66. image {
  67. width: 100%;
  68. height: 100%;
  69. }
  70. }
  71. .main-info {
  72. margin-left: 16rpx;
  73. .name {
  74. font-size: 30rpx;
  75. font-family: PingFang SC;
  76. font-weight: 500;
  77. color: #fad6b0;
  78. }
  79. .phone {
  80. font-size: 22rpx;
  81. font-family: PingFang SC;
  82. font-weight: 400;
  83. color: #fad6b0;
  84. opacity: 0.8;
  85. }
  86. }
  87. }
  88. .right {
  89. font-size: 30rpx;
  90. font-family: PingFang SC;
  91. font-weight: 500;
  92. color: #fad6b0;
  93. .right-box {
  94. width: 188rpx;
  95. height: 56rpx;
  96. background: linear-gradient(-74deg, #ce9c6d, #ffecd6);
  97. border-image: linear-gradient(115deg, #feebd5, #ffffff, #e1ad7d) 1 1;
  98. box-shadow: 3rpx 4rpx 5rpx 0px rgba(151, 118, 74, 0.5);
  99. border-radius: 28rpx;
  100. font-size: 30rpx;
  101. font-family: PingFang SC;
  102. font-weight: 500;
  103. color: #643912;
  104. text-align: center;
  105. line-height: 56rpx;
  106. }
  107. }
  108. }
  109. }
  110. .tishi {
  111. padding: 20rpx 0 0 24rpx;
  112. color: #fff;
  113. font-size: 26rpx;
  114. font-family: PingFang SC;
  115. font-weight: 500;
  116. color: #FFFFFF;
  117. }
  118. </style>