图中标识的获取验证码点击无效问题修复
文件位置:admin/src/pages/account/login/index.vue ,找到 methods 中的code 函数,复制下面代码块中的代码替换以后重新打包
code() {
this.isSms = true;
// if (this.system_secure_type && this.secure_key) {
// } else {
if (!this.formInline.phone) return this.$Message.error("请填写手机号码");
if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(this.formInline.phone)) return this.$Message.error("请输入正确的手机号码");
this.$refs.verify.show();
// }
},