| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <template>
- <view class="page-wrap">
- <image class="success" src="../../../static/svg/success.svg"></image>
- <text class="text">提现申请已提交\n我们会尽快处理,请注意查收</text>
- <view class="money">2000.00</view>
- <button class="btn" @click="handleBack">返回企业钱包</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- handleBack(){
- uni.navigateBack({
- delta: 2
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .page-wrap{
- min-height: 100%;
- padding-top: 130.49rpx;
- box-sizing: border-box;
- text-align: center;
- background: #fff;
- .success{
- width: 137.36rpx;
- height: 137.36rpx;
- }
- .text{
- display: block;
- font-size: 32.97rpx;
- color: #333;
- margin: 41.21rpx 0 27.47rpx;
- }
- .money{
- font-size: 43.96rpx;
- color: #333;
- &:before{
- content: '¥';
- font-size: 32.97rpx;
- }
- }
- .btn{
- width: 576.92rpx;
- height: 75.55rpx;
- line-height: 75.55rpx;
- background: #00d2c3;
- border-radius: 8.24rpx;
- font-size: 30.22rpx;
- color: #fff;
- margin-top: 217.03rpx;
- }
- }
- </style>
|