申请提现0.8565

This commit is contained in:
WindowBird 2025-08-18 15:53:46 +08:00
parent 9692ddd8f5
commit 79d480cd7e

View File

@ -35,7 +35,7 @@
<view class="section-title">提现至</view> <view class="section-title">提现至</view>
<view class="bank-selector" @click="selectBank"> <view class="bank-selector" @click="selectBank">
<view class="bank-info"> <view class="bank-info">
<text class="bank-icon">{{ selectedBank.icon }}</text> <image class="bank-icon" :src="selectedBank.icon" mode="aspectFit"></image>
<text class="bank-name">{{ selectedBank.name }}</text> <text class="bank-name">{{ selectedBank.name }}</text>
</view> </view>
<text class="arrow-icon"></text> <text class="arrow-icon"></text>
@ -66,6 +66,8 @@
</template> </template>
<script> <script>
import { commonEnum } from '@/enum/commonEnum.js'
export default { export default {
data() { data() {
return { return {
@ -81,23 +83,23 @@ export default {
selectedBank: { selectedBank: {
id: '1', id: '1',
name: '建设银行', name: '建设银行',
icon: '🏦', icon: commonEnum.CHINA_CONSTRUCTION_BANK,
}, },
banks: [ banks: [
{ {
id: '1', id: '1',
name: '建设银行', name: '建设银行',
icon: '🏦', icon: commonEnum.CHINA_CONSTRUCTION_BANK,
}, },
{ {
id: '2', id: '2',
name: '工商银行', name: '工商银行',
icon: '🏦', icon: commonEnum.CHINA_CONSTRUCTION_BANK, // 使
}, },
{ {
id: '3', id: '3',
name: '农业银行', name: '农业银行',
icon: '🏦', icon: commonEnum.CHINA_CONSTRUCTION_BANK, // 使
}, },
], ],
} }
@ -291,13 +293,15 @@ export default {
gap: 20rpx; gap: 20rpx;
.bank-icon { .bank-icon {
font-size: 40rpx; width: 40rpx;
margin-right: 10rpx; height: 40rpx;
} }
.bank-name { .bank-name {
font-size: 28rpx; font-size: 28rpx;
color: #333; color: #333;
margin-right:10rpx;
} }
} }