【fix】优化代码

This commit is contained in:
黄少君
2024-02-22 18:37:23 +08:00
parent 17c043348a
commit f8fac0a5bc
246 changed files with 973 additions and 406 deletions

View File

@ -170,7 +170,7 @@ onLoad(async (options) => {
<view class="ver-card">
<view class="title">支付方式</view>
<u-radio-group
<uv-radio-group
activeColor="#EE6D46"
v-model="rechargeForm.type"
placement="column"
@ -189,16 +189,26 @@ onLoad(async (options) => {
<text class="text">{{ item.label }}</text>
</view>
</view>
<u-radio
<uv-radio
:customStyle="{marginBottom: '8px'}"
label=" "
:name="item.value"
/>
</view>
</template>
</u-radio-group>
</uv-radio-group>
</view>
<view class="tips-content">
<view class="title">充值说明</view>
<view
class="content"
v-html="rechargeConfig.content"></view>
</view>
<view style="width: 100%;height: 140rpx"></view>
<view
class="btn-row row animation-button"
:class="{disabled:rechargeForm.amount<=0}"
@ -331,6 +341,20 @@ onLoad(async (options) => {
}
}
.tips-content {
width: 100%;
color: #999999;
.title {
font-size: 28rpx;
}
.content {
padding: 16rpx 0;
font-size: 24rpx;
}
}
.row {
margin-top: 24rpx;
}