圖中標(biāo)識(shí)的獲取驗(yàn)證碼點(diǎn)擊無效問題修復(fù)
文件位置:admin/src/pages/account/login/index.vue ,找到 methods 中的code 函數(shù),復(fù)制下面代碼塊中的代碼替換以后重新打包
code() {
this.isSms = true;
// if (this.system_secure_type && this.secure_key) {
// } else {
if (!this.formInline.phone) return this.$Message.error("請(qǐng)?zhí)顚懯謾C(jī)號(hào)碼");
if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(this.formInline.phone)) return this.$Message.error("請(qǐng)輸入正確的手機(jī)號(hào)碼");
this.$refs.verify.show();
// }
},