圖中標識的獲取驗證碼點擊無效問題修復
文件位置: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();
// }
},