| | |
| | | <div class="logins_content"> |
| | | <div class="login_forms"> |
| | | <div class="top_forms"> |
| | | <el-input :placeholder="placeholder" size="medium" v-model="phone" maxlength="10" clearable |
| | | <el-input :placeholder="placeholder" size="medium" v-model="phone" maxlength="13" clearable |
| | | @input="handleInput()"> |
| | | <!-- <template slot="prepend">+91</template> --> |
| | | </el-input> |
| | |
| | | async gook() { |
| | | if (this.phone.length == 0) { |
| | | Notify({ type: "warning", message: this.$t("hj28") }); |
| | | } else if (this.phone.length < 8) { |
| | | Notify({ type: "warning", message: this.$t("不能小于8位数") }); |
| | | } else if (isNull(this.userPassword)) { |
| | | Notify({ type: "warning", message: this.$t("hj30") }); |
| | | } else if (isNull(this.rePassword)) { |