fix: 修复云闪付11按钮不能点击

This commit is contained in:
zhangds 2024-06-18 11:38:24 +08:00
parent f5e4233ed6
commit 2727350e64
4 changed files with 4 additions and 4 deletions

View File

@ -180,7 +180,7 @@
methods: {
/* 立即领取 */
submit () {
if (this.ysf.available != 1) return;
if (this.ysf.available != 1 || this.ysf.available != 11) return;
if (phoneReg.test(this.account) && this.confirmAccount) {
if (this.account === this.confirmAccount) {
this.finalSubmit();

View File

@ -142,7 +142,7 @@
methods: {
/* 立即领取 */
submit () {
if (this.ysf.available != 1) return;
if (this.ysf.available != 1 || this.ysf.available != 11) return;
if (phoneReg.test(this.account) && this.confirmAccount) {
if (this.account === this.confirmAccount) {
this.finalSubmit();

View File

@ -176,7 +176,7 @@
methods: {
/* 立即领取 */
submit () {
if (this.ysf.available != 1) return;
if (this.ysf.available != 1 || this.ysf.available != 11) return;
if (phoneReg.test(this.account) && this.confirmAccount) {
if (this.account === this.confirmAccount) {
this.finalSubmit();

View File

@ -135,7 +135,7 @@
methods: {
/* 立即领取 */
submit () {
if (this.ysf.available != 1) return;
if (this.ysf.available != 1 || this.ysf.available != 11) return;
if (phoneReg.test(this.account) && this.confirmAccount) {
if (this.account === this.confirmAccount) {
this.finalSubmit();