File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 7272<script >
7373import SignInput from " @/components/Sign/input/index.vue" ;
7474import SignRadio from " @/components/Sign/radio/index.vue" ;
75+ import { _debounce } from " @/plugins/utils" ;
7576// @ is an alias to /src
7677
7778export default {
@@ -120,7 +121,6 @@ export default {
120121 } else if (! this .boundFormat ) {
121122 this .checkText = " 邮箱格式错误" ;
122123 } else this .checkText = " " ;
123- console .log (this .usernameFormat , this .isNameRepeat );
124124 },
125125 },
126126 },
@@ -147,7 +147,7 @@ export default {
147147 },
148148 mounted () {},
149149 methods: {
150- handleIAccount : function (s ) {
150+ handleIAccount: _debounce ( function (s ) {
151151 this .$conf .getHost ().then ((h ) => {
152152 this .$conf
153153 .checkUsername ({
@@ -165,7 +165,7 @@ export default {
165165 });
166166 });
167167 });
168- },
168+ }, 400 ),
169169 handleIPassword : function (s ) {
170170 this .signUp .password = s;
171171 },
Original file line number Diff line number Diff line change @@ -219,6 +219,8 @@ module.exports = {
219219 60 : '60deg' ,
220220 90 : '90deg' ,
221221 180 : '180deg' ,
222+
223+ 45 : '45deg' ,
222224 } ,
223225 invert : {
224226 0 : '0' ,
You can’t perform that action at this time.
0 commit comments