| @@ -127,6 +127,7 @@ | |||||
| <script> | <script> | ||||
| import { addPayee,listDeposit } from "@/api/onlineHome/bankAgriculture/collectionAccount"; | import { addPayee,listDeposit } from "@/api/onlineHome/bankAgriculture/collectionAccount"; | ||||
| import { isBankCard} from "@/utils/utils"; | |||||
| export default { | export default { | ||||
| name: "collectionAdd", | name: "collectionAdd", | ||||
| data() { | data() { | ||||
| @@ -190,7 +191,7 @@ | |||||
| if (numArr) { | if (numArr) { | ||||
| numArr.map(rr=>{ | numArr.map(rr=>{ | ||||
| if (rr.length>16) { | if (rr.length>16) { | ||||
| const carId = this.isBankCard(rr); | |||||
| const carId = isBankCard(rr); | |||||
| if (carId) { | if (carId) { | ||||
| that.form.payee = nameArr; | that.form.payee = nameArr; | ||||
| that.form.payeeAccount = rr | that.form.payeeAccount = rr | ||||
| @@ -122,6 +122,7 @@ | |||||
| <script> | <script> | ||||
| import { addPayee,listDeposit } from "@/api/onlineHome/bankAgriculture/collectionAccount"; | import { addPayee,listDeposit } from "@/api/onlineHome/bankAgriculture/collectionAccount"; | ||||
| import { isBankCard} from "@/utils/utils"; | |||||
| export default { | export default { | ||||
| name: "collectionAdd", | name: "collectionAdd", | ||||
| data() { | data() { | ||||
| @@ -185,7 +186,7 @@ | |||||
| if (numArr) { | if (numArr) { | ||||
| numArr.map(rr=>{ | numArr.map(rr=>{ | ||||
| if (rr.length>16) { | if (rr.length>16) { | ||||
| const carId = this.isBankCard(rr); | |||||
| const carId = isBankCard(rr); | |||||
| if (carId) { | if (carId) { | ||||
| that.form.payee = nameArr; | that.form.payee = nameArr; | ||||
| that.form.payeeAccount = rr | that.form.payeeAccount = rr | ||||