Files
2025-04-30 14:08:39 +08:00

194 lines
3.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="page" :style="themeColor">
<view class="flex benben-position-layout flex flex-wrap align-center application_flex_0"
:style="{height:(88+StatusBarRpx)+'rpx',paddingTop:StatusBarRpx+'rpx'}">
<view class='flex flex-wrap align-center justify-between flex-sub application_fd0_0'>
<view class='flex flex-wrap align-center' @tap.stop="handleJumpDiy" data-type="back" data-url="1">
<text class='fu-iconfont2 application_fd0_0_c0_c0' @tap.stop="handleJumpDiy" data-type="back"
data-url="1">&#xE794;</text>
</view>
<view class='flex flex-wrap align-stretch justify-center flex-sub'>
<text class='application_fd0_0_c1_c0'>提现成功</text>
</view>
<view class='flex flex-wrap align-center application_fd0_0_c2'>
</view>
</view>
</view>
<view :style="{height: (88+StatusBarRpx)+'rpx'}"></view>
<view class="flex flex-direction flex-wrap align-center benben-flex-layout application_flex_1">
<image class='application_fd1_0' mode="aspectFit" :src='STATIC_URL+"10.png"'></image>
<text class='application_fd1_1'>提交成功</text>
<view class='flex flex-wrap align-center application_fd1_2'>
<text>提现方式</text>
<text>商家账户</text>
</view>
<view class='flex flex-wrap align-center application_fd1_3'>
<text>提现金额</text>
<text>{{money}}</text>
<text></text>
</view>
<view class='flex flex-wrap align-center'>
<text class='application_fd1_4_c0'>预计</text>
<text class='application_fd1_4_c1'>24</text>
<text class='application_fd1_4_c2'>小时完成提现</text>
</view>
</view>
</view>
</template>
<script>
export default {
components: {},
data() {
return {
"type": "",
"money": ""
};
},
computed: {
themeColor() {
return this.$store.getters.themeColor
},
},
watch: {},
onLoad(options) {
let {
type,
money
} = options
if (type !== undefined) this.type = type
if (money !== undefined) this.money = money
},
onUnload() {
},
onReady() {
},
onShow() {
},
onHide() {
},
onResize() {
},
onPullDownRefresh() {
},
onReachBottom(e) {
},
onPageScroll(e) {
},
methods: {
}
};
</script>
<style lang="scss" scoped>
.page {
width: 100vw;
overflow-x: hidden;
min-height: calc(100vh - var(--window-bottom));
background: rgba(255, 255, 255, 1);
background-size: 100% auto !important;
}
.application_flex_0 {
border-bottom: 1px solid #eee;
background: #fff;
width: 750rpx;
height: 88rpx;
overflow: hidden;
z-index: 10;
top: 0rpx;
background-size: 100% auto !important;
}
.application_fd0_0_c2 {
width: 32rpx;
height: 32rpx;
}
.application_fd0_0_c1_c0 {
font-size: 36rpx;
font-weight: 500;
color: #333;
line-height: 88rpx;
}
.application_fd0_0_c0_c0 {
font-size: 32rpx;
font-weight: 500;
color: #333;
line-height: 88rpx;
}
.application_fd0_0 {
margin: 0rpx 32rpx 0rpx 32rpx;
}
.application_flex_1 {
padding: 185rpx 0rpx 0rpx 0rpx;
}
.application_fd1_4_c2 {
color: #333333;
font-size: 28rpx;
font-weight: 400;
line-height: 54rpx;
}
.application_fd1_4_c1 {
color: #333333;
font-size: 28rpx;
font-weight: 400;
line-height: 54rpx;
}
.application_fd1_4_c0 {
color: #333333;
font-size: 28rpx;
font-weight: 400;
line-height: 54rpx;
}
.application_fd1_3 {
font-size: 28rpx;
font-weight: 400;
color: rgba(102, 102, 102, 1);
margin: 12rpx 0rpx 24rpx 0rpx;
}
.application_fd1_2 {
font-size: 28rpx;
font-weight: 400;
color: rgba(102, 102, 102, 1);
}
.application_fd1_1 {
margin: 0rpx 0rpx 32rpx 0rpx;
font-size: 36rpx;
font-weight: 700;
color: #333;
}
.application_fd1_0 {
width: 250rpx;
height: 180rpx;
border-radius: 0rpx 0rpx 0rpx 0rpx;
margin: 0rpx 0rpx 40rpx 0rpx;
}
</style>