123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <template>
- <view class="withdraw">
- <view class="header-bg"></view>
- <view class="block">
- <view class="account">
- <image class="image" src="../../static/alipay.png" mode=""></image>
- <view class="text">
- <navigator url="/pages/user/bind-alipay" hover-class="none">
- <view style="margin-bottom: 20upx;">支付宝</view>
- <view>还没有添加支付宝账号,请点击添加</view>
- </navigator>
- </view>
- <uni-icons type="arrowright" size="24" color="#CCCCCC" style="margin-left: auto;"></uni-icons>
- </view>
- <view class="withdraw-input-wrapper">
- <input class="input" type="text" value="" placeholder="请输入提现金额,当前可提取余额为0.00元" />
- </view>
- <view class="withdraw-button-wrapper">
- <button class="btn" type="default">确认提取</button>
- </view>
- </view>
- <view class="block remind-wrapper">
- <view class="title">
- 重要提醒
- </view>
- <view class="li">
- 1.当天可提现的最高金额为100元。
- </view>
- <view class="li">
- 2.单笔提现金额最低30元起。
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .withdraw {
- position: relative;
- overflow: hidden;
- }
- .header-bg {
- background: $primary-color;
- height: 100upx;
- position: absolute;
- top: 0;
- width: 100%;
- }
- .block {
- background: white;
- border-radius: 20upx;
- margin: 20upx;
- padding: 20upx;
- position: relative;
- z-index: 1;
- }
- .account {
- display: flex;
- background: #eeeeee;
- padding: 20upx;
- align-items: center;
- border-radius: 10upx;
- margin: 10upx 0;
- .image {
- width: 100upx;
- height: 100upx;
- }
- .text {
- font-size: 24upx;
- color: #999;
- margin-left: 50upx;
- }
- }
- .withdraw-input-wrapper {
- margin-top: 40upx;
- }
- .input {
- background: #eeeeee;
- padding: 20upx;
- font-size: 24upx;
- border-radius: 10upx;
- }
- .withdraw-button-wrapper {
- margin-top: 40upx;
- .btn {
- font-size: 32upx;
- background: $primary-color;
- color: white;
- }
- }
- .remind-wrapper {
- .title {
- font-size: 30upx;
- border-bottom: #999999 solid 2upx;
- width: 60%;
- margin: auto;
- text-align: center;
- padding: 20upx;
- margin-bottom: 40upx;
- color: #999999;
- }
- .li {
- font-size: 24upx;
- color: #999999;
- margin-bottom: 20upx;
- margin-left: 50upx;
- }
- }
- </style>
|