We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b231a26 commit f093408Copy full SHA for f093408
src/page/profile/children/children/setusername.vue
@@ -39,7 +39,7 @@
39
40
},
41
mounted(){
42
-
+
43
44
computed:{
45
...mapState([
@@ -56,23 +56,29 @@
56
this.earn=false;
57
this.bordercolor=true;
58
this.opacityall=false;
59
+ return false;
60
}else{
61
this.earn=true;
62
this.bordercolor=false;
63
this.opacityall=true;
64
+ return true;
65
}
66
67
resetName(){
68
+ let checkResult = this.inputThing();
69
+ if (!checkResult) {
70
+ return;
71
+ }
72
this.RETSET_NAME(this.inputValue);
73
this.$router.go(-1);
74
75
76
77
</script>
78
79
<style lang="scss" scoped>
80
@import 'src/style/mixin';
81
82
.rating_page{
83
position: absolute;
84
top: 0;
0 commit comments