This commit is contained in:
zoujiandong
2023-12-15 09:22:34 +08:00
parent dd892964c9
commit 43fff7a15f
5 changed files with 34 additions and 9 deletions
+11 -3
View File
@@ -300,9 +300,11 @@ for (let i = 0; i < list2.length; i++) {
},
openMaritalPicker() {
wx.hideKeyboard();
this.setData({
showMarital: true
})
if(showBtn){
this.setData({
showMarital: true
})
}
},
closeMaritalPicker() {
this.setData({
@@ -379,9 +381,12 @@ for (let i = 0; i < list2.length; i++) {
},
showNation() {
wx.hideKeyboard();
if(showBtn){
this.setData({
showNation: true
})
}
},
onCancelNation() {
@@ -401,9 +406,12 @@ for (let i = 0; i < list2.length; i++) {
},
showJob() {
wx.hideKeyboard();
if(showBtn){
this.setData({
showJob: true
})
}
},
onCancelJob() {
this.setData({
+6
View File
@@ -10,6 +10,7 @@
}
.questionbox{
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
margin-top: 172rpx;
flex:1;
}
@@ -161,4 +162,9 @@ color: #FFFFFF;
background: #3CC7C0;
border-radius: 8rpx;
margin:40rpx 32rpx;
}
.van-radio__icon--disabled.van-radio__icon--checked{
color:#3cc7c0!important;
background-color: #fff;
border-color:#3cc7c0 ;
}