|
@@ -153,6 +153,10 @@
|
|
|
this.getScreenDict()
|
|
|
},
|
|
|
methods: {
|
|
|
+ setPopupClosed(){
|
|
|
+ this.$refs.pickerObj.clear();
|
|
|
+ this.showPicker = false;
|
|
|
+ },
|
|
|
setFilter(){
|
|
|
this.fromData.ageMin=this.fromData.age[0]+''
|
|
|
this.fromData.ageMax=this.fromData.age[1]+''
|
|
@@ -170,10 +174,13 @@
|
|
|
setPicker(pickerType){
|
|
|
this.pickerType=pickerType
|
|
|
if(pickerType===1){
|
|
|
+ this.label='用户类型'
|
|
|
this.localData =this.purposeArr
|
|
|
}else if(pickerType===2){
|
|
|
+ this.label='速配星座'
|
|
|
this.localData =this.constellationArr
|
|
|
}else {
|
|
|
+ this.label='兴趣爱好'
|
|
|
this.localData =this.hobbyArr
|
|
|
}
|
|
|
this.$refs.pickerObj.show();
|