Commit 41bb7ebe authored by 刘用法's avatar 刘用法

提现

parent 4e594912
...@@ -159,7 +159,7 @@ ...@@ -159,7 +159,7 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: flex-end; align-items: flex-end;
margin-top: 10rpx;
.survey-top-left { .survey-top-left {
font-size: 28rpx; font-size: 28rpx;
...@@ -177,7 +177,7 @@ ...@@ -177,7 +177,7 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
font-size: 24rpx; font-size: 24rpx;
margin-top: 60rpx; margin-top: 50rpx;
.survey-bottom-account { .survey-bottom-account {
margin-top: 6rpx; margin-top: 6rpx;
......
<template> <template>
<view class="withdraw-view"> <view class="withdraw-view">
<u-navbar back-icon-color="#333333" background="#F4F5F7" title="提现" titleColor="#333333" <u-navbar back-icon-color="#333333" background="#F4F5F7" title="提现" titleColor="#333333" :border-bottom="false">
:border-bottom="false"></u-navbar> </u-navbar>
<view class="withdraw-content"> <view class="withdraw-content">
<view></view> <view class="withdraw-content-main">
<view></view> <view class="amount-title">可提现金额</view>
<u-button type="primary" shape="circle" :custom-style="buttonStyle" @click="handleClick">提现</u-button> <view class="amount-text"><text class="amount-symbol"></text>{{amount}}</view>
<view class="line-view"></view> <u-button type="primary" shape="circle" :custom-style="buttonStyle" @click="handleClick">提现</u-button>
<view class="rule-title">提现规则说明</view> </view>
<view class="rule-content">1.提现金额:提现金额是指已完工订单通过平台审核后且达到合同账期的订单费用之总和。</view> <view class="line-view"></view>
<view class="rule-content">2.提现到账时间为1-3个工作日,最终以银行结果为准</view> <view class="rule-title">提现规则说明</view>
<view class="rule-content">1.提现金额:提现金额是指已完工订单通过平台审核后且达到合同账期的订单费用之总和。</view>
<view class="rule-content">2.提现到账时间为1-3个工作日,最终以银行结果为准</view>
</view> </view>
</view> </view>
</template> </template>
...@@ -22,43 +24,77 @@ ...@@ -22,43 +24,77 @@
amount: 0 amount: 0
} }
}, },
computed: { computed: {
buttonStyle() { buttonStyle() {
return { return {
width: "400rpx", width: "400rpx",
height: "104rpx", height: "104rpx",
"font-size": "32rpx", "font-size": "32rpx",
"font-weight": "bold", "font-weight": "bold",
}; };
}, },
}, },
methods: { methods: {
handleClick() { handleClick() {
} }
} }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.withdraw-view { .withdraw-view {
height: 100vh; height: 100vh;
background-color: #F4F5F7; background-color: #F4F5F7;
.withdraw-content {
border-radius: 12rpx; .withdraw-content {
background-color: #FFFFFF; border-radius: 12rpx;
background-color: #FFFFFF;
padding: 100rpx 30rpx; padding: 100rpx 30rpx;
.line-view { margin: 10rpx 30rpx 30rpx 30rpx;
} .withdraw-content-main {
.rule-title { text-align: center;
margin-bottom: 200rpx;
} .amount-title {
.rule-content { font-size: 40rpx;
font-weight: bold;
color: #333333;
}
.amount-text {
font-size: 72rpx;
font-weight: bold;
color: #2272FF;
margin-top: 60rpx;
margin-bottom: 60rpx;
.amount-symbol {
font-size: 36rpx;
}
}
} }
} .line-view {
padding: 0 30rpx;
} background-color: #F4F5F7;
height: 2rpx;
}
.rule-title {
font-size: 32rpx;
font-weight: bold;
color: #333333;
margin-top: 60rpx;
margin-bottom: 30rpx;
}
.rule-content {
font-size: 24rpx;
color: #666666;
margin-bottom: 20rpx;
line-height: 40rpx;
}
}
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment