Fix(店铺入驻):[#1309]苹果手机兼容性处理

This commit is contained in:
lifizer
2024-04-26 22:51:11 +08:00
parent f7302a3eeb
commit 320ba71ca3
+24 -14
View File
@@ -191,22 +191,25 @@
<text class="required">*</text> <text class="required">*</text>
</template> </template>
<template #value> <template #value>
<u-input v-model="form.captcha" border="none" placeholder="请填写验证码"> <view class="captcha-wrap">
<template slot="suffix"> <view class="captcha-wrap-input">
<u-input v-model="form.captcha" border="none" placeholder="请填写验证码" />
</view>
<view class="captcha-wrap-ft">
<u-code <u-code
ref="uCode" ref="uCode"
@change="codeChange" seconds="30"
seconds="30" changeText="X秒重新获取"
changeText="X秒重新获取" @change="codeChange"
></u-code> />
<u-button <u-button
@tap="getCode" :text="tips"
:text="tips" type="success"
type="success" size="normal"
size="normal" @tap="getCode"
></u-button> />
</template> </view>
</u-input> </view>
</template> </template>
</u-cell> </u-cell>
</u-form-item> </u-form-item>
@@ -736,4 +739,11 @@ export default {
width: 80px; width: 80px;
height: 80px; height: 80px;
} }
.captcha-wrap {
display: flex;
align-items: center;
.captcha-wrap-input {
flex: 1;
}
}
</style> </style>