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