猫妈狗爸伴宠师小程序前端代码
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.

152 lines
2.9 KiB

1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
  1. <template>
  2. <!-- <div>保证金</div> -->
  3. <view class="box">
  4. <view class="top" :style="{ borderRadius: '16rpx' }">
  5. <view class="level account">
  6. <view class="text1">
  7. 账户总览
  8. </view>
  9. <view class="level text4">
  10. <view>
  11. 资金明细
  12. </view>
  13. <view class="line">
  14. 申请退还
  15. </view>
  16. </view>
  17. </view>
  18. <view class="level Recharge">
  19. <view class="money level">
  20. <text>¥</text>
  21. <input type="text" />
  22. </view>
  23. <view class="text2" :style="{ borderRadius: '23.5rpx' }">
  24. 去充值
  25. </view>
  26. </view>
  27. </view>
  28. <view class="center size-28">
  29. <view class="text3">
  30. 保证金说明
  31. </view>
  32. <view>
  33. 履约保证金用于处理轻度违约行为以及交易纠纷;具体规则可在<text
  34. :style="{color:'#FFBF60'}">履约保证金协议</text>中查看如平台有任何私自克扣/乱扣费的情况可向市场监督局投诉平台会对违约做出公正的判罚同时接受公正的处理
  35. </view>
  36. <view class="">
  37. 若在服务过程中由于伴宠师自身原因发生用户的隐私或财产被侵犯等涉及法律相关问题并不是保证金可以解决的;如若发生恶性事件平台会坚决走法律程序判定责任并追责请各位伴宠师严于律己
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. </script>
  44. <style scoped lang="scss">
  45. .box {
  46. width: 750rpx;
  47. height: 180rpx;
  48. background-image: linear-gradient(to bottom, #FFBF60, #F2F2F2);
  49. padding: 60rpx 24rpx 0 24rpx;
  50. box-sizing: border-box;
  51. }
  52. .top {
  53. width: 702rpx;
  54. height: 227rpx;
  55. background-color: #FFFFFF;
  56. padding: 24rpx 34rpx 0 34rpx;
  57. box-sizing: border-box;
  58. }
  59. .account {
  60. justify-content: space-between;
  61. color: #BDBDBD;
  62. font-size: 22rpx;
  63. }
  64. .text1 {
  65. font-size: 30rpx;
  66. color: #000000;
  67. }
  68. .text4 {
  69. color: #BDBDBD;
  70. font-size: 22rpx;
  71. }
  72. .line {
  73. position: relative;
  74. padding: 0 0 0 20rpx;
  75. &::before {
  76. position: absolute;
  77. top: 7rpx;
  78. left: 10rpx;
  79. content: "";
  80. width: 3rpx;
  81. height: 26rpx;
  82. border-radius: 9rpx;
  83. background-color: #BDBDBD;
  84. }
  85. }
  86. .Recharge {
  87. width: auto;
  88. height: 71rpx;
  89. justify-content: space-between;
  90. margin: 30rpx 0 0 30rpx;
  91. color: #FFFFFF;
  92. font-size: 22rpx;
  93. align-items: center;
  94. }
  95. .money {
  96. width: 450rpx;
  97. height: 71rpx;
  98. /* background-color: #FFBF60; */
  99. color: #FFBF60 !important;
  100. font-size: 54rpx !important;
  101. }
  102. .money input {
  103. margin-left: 5%;
  104. font-size: 61rpx;
  105. height: 71rpx;
  106. }
  107. .text2 {
  108. width: 131rpx;
  109. height: 47rpx;
  110. background-color: #FFBF60;
  111. line-height: 47rpx;
  112. display: flex;
  113. justify-content: center;
  114. }
  115. .center {
  116. width: 100%;
  117. height: 1265rpx;
  118. font-size: 30rpx;
  119. color: #707070;
  120. padding: 44rpx 8rpx 0 34rpx;
  121. box-sizing: border-box;
  122. line-height: 45rpx;
  123. }
  124. .text3 {
  125. color: #000000;
  126. font-weight: 700;
  127. margin-bottom: 30rpx;
  128. }
  129. .level {
  130. display: flex;
  131. }
  132. .text4 {
  133. /* color: ; */
  134. }
  135. </style>