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

122 lines
2.3 KiB

2 months ago
2 months ago
  1. <template>
  2. <!-- <div>提现</div> -->
  3. <view class="box">
  4. <view class="top" :style="{ borderRadius: '16rpx' }">
  5. <view class="">
  6. 提现金额
  7. </view>
  8. <view class="level">
  9. <view class="money level">
  10. <text>¥</text>
  11. <input type="text" />
  12. </view>
  13. <!-- <DForm :list="state. " @submit="handleSubmit" /> -->
  14. </view>
  15. </view>
  16. </view>
  17. <view class="center">
  18. <view class="text">
  19. 提现说明
  20. </view>
  21. <view>
  22. 1单日提现次数上限为5次;·单笔提现上限200元;
  23. </view>
  24. <view>
  25. 2直接提现至微信账户无法提现至支付宝;
  26. </view>
  27. <view class="buttom level" :style="{ borderRadius: '41rpx' }">
  28. 提现
  29. </view>
  30. </view>
  31. <view class="">
  32. <!-- <u-popup :show="show" mode="center" @close="close" @open="open"> -->
  33. </view>
  34. </template>
  35. <script>
  36. import {
  37. reactive
  38. } from "vue";
  39. import DForm from "@/components/dForm/index.vue"
  40. const state = reactive({
  41. list: [{
  42. type: "input",
  43. key: "提现金额",
  44. placeholder: "请输入提现金额",
  45. }, ]
  46. })
  47. const handleSubmit = (val) => {
  48. console.log("获取参数", val)
  49. }
  50. </script>
  51. <style scoped lang="scss">
  52. .box {
  53. width: 750rpx;
  54. height: 180rpx;
  55. background-image: linear-gradient(to bottom, #FFBF60, #FFFFFF);
  56. padding: 60rpx 24rpx 0 24rpx;
  57. box-sizing: border-box;
  58. }
  59. .top {
  60. width: 702rpx;
  61. height: 227rpx;
  62. background-color: #FFFFFF;
  63. padding: 24rpx 34rpx 0 34rpx;
  64. box-sizing: border-box;
  65. }
  66. .money {
  67. width: 550rpx;
  68. height: 71rpx;
  69. /* background-color: #FFBF60; */
  70. color: #FFBF60 !important;
  71. font-size: 54rpx !important;
  72. ;
  73. height: 71rpx;
  74. /* background-color: #FFBF60; */
  75. color: #FFBF60 !important;
  76. font-size: 54rpx !important;
  77. margin: 3% 0 0 5%;
  78. }
  79. .money input {
  80. margin-left: 5%;
  81. font-size: 61rpx;
  82. height: 71rpx;
  83. }
  84. .center {
  85. width: 100%;
  86. height: 1265rpx;
  87. background-color: #FFFFFF;
  88. font-size: 30rpx;
  89. color: #707070;
  90. padding: 84rpx 0 0 54rpx;
  91. box-sizing: border-box;
  92. line-height: 45rpx;
  93. }
  94. .text {
  95. color: #000000;
  96. font-weight: 700;
  97. margin-bottom: 30rpx;
  98. }
  99. .buttom {
  100. width: 544rpx;
  101. height: 89rpx;
  102. background-color: #FFBF60;
  103. color: #FFFFFF;
  104. font-size: 28rpx;
  105. line-height: 89rpx;
  106. margin: 800rpx 0 0 50rpx;
  107. justify-content: center;
  108. }
  109. .level {
  110. display: flex;
  111. }
  112. </style>