注册成功弹窗按钮样式bug修复

master
blak-kong 2 years ago
parent 8c544a17df
commit e593596af7

@ -18,3 +18,20 @@
color: #666;
}
}
.alert-popup-btns {
display: flex;
margin-top: 76rpx;
justify-content: center;
.alert-popup-btn {
width: 480rpx;
height: 80rpx;
line-height: 80rpx;
font-size: 30rpx;
text-align: center;
border: 1rpx solid #000;
border-radius: 40rpx;
color: #fff;
background-color: #000;
}
}

@ -124,8 +124,8 @@ export default class PopupAlert extends Component<any, any> {
)}
{type !== "3" && (
<View className="common-popup-btns">
<Button className="common-popup-btn" onClick={this.onConfirm}>
<View className="alert-popup-btns">
<Button className="alert-popup-btn" onClick={this.onConfirm}>
{confirmButtonText}
</Button>
</View>

@ -239,7 +239,7 @@ class Register extends Component<any, any> {
src={require("../../img/welcome/unchecked.png")}
></Image>
)}
<View className="tips">
<View className="tips" onClick={this.onCheck}>
</View>
</View>

@ -9,7 +9,7 @@ const userInfoReducer = createSlice({
mobile: "",
nickname: "",
headimg: "",
birthday: "", // 生日
birthday: dayjs().format("YYYY-MM-DD"), // 生日
province: "", // 省
provinceId: "",
city: "", // 市

Loading…
Cancel
Save