|
@@ -423,7 +423,7 @@ export default {
|
|
|
accountLists = LodashArray.drop(accountLists) // 删除第一个账户
|
|
accountLists = LodashArray.drop(accountLists) // 删除第一个账户
|
|
|
accountLists.forEach(async(item, index) => {
|
|
accountLists.forEach(async(item, index) => {
|
|
|
await this.rechargePlayer(
|
|
await this.rechargePlayer(
|
|
|
- { pid: this.dataForm.pid, cid: this.dataForm.cid, gfid: this.dataForm.gfid, paypwd: paypwd, username: item, money: this.dataForm.money, recharge: this.dataForm.recharge, type: this.dataForm.type },
|
|
|
|
|
|
|
+ { pid: this.dataForm.pid, cid: this.dataForm.cid, gfid: this.dataForm.gfid, paypwd: paypwd, username: item, money: this.dataForm.money, recharge: this.dataForm.recharge, payway: this.dataForm.payway, type: this.dataForm.type },
|
|
|
index, operationType, loadingNum
|
|
index, operationType, loadingNum
|
|
|
)
|
|
)
|
|
|
})
|
|
})
|
|
@@ -474,7 +474,7 @@ export default {
|
|
|
accountLists = LodashArray.drop(accountLists) // 删除第一个账户
|
|
accountLists = LodashArray.drop(accountLists) // 删除第一个账户
|
|
|
accountLists.forEach(async(item, index) => {
|
|
accountLists.forEach(async(item, index) => {
|
|
|
await this.rechargePlayer(
|
|
await this.rechargePlayer(
|
|
|
- { pid: this.dataForm.pid, cid: this.dataForm.cid, gfid: this.dataForm.gfid, paypwd: paypwd, username: item, money: this.dataForm.money, recharge: this.dataForm.recharge, type: this.dataForm.type },
|
|
|
|
|
|
|
+ { pid: this.dataForm.pid, cid: this.dataForm.cid, gfid: this.dataForm.gfid, paypwd: paypwd, username: item, money: this.dataForm.money, recharge: this.dataForm.recharge, payway: this.dataForm.payway, type: this.dataForm.type },
|
|
|
index, operationType, loadingNum
|
|
index, operationType, loadingNum
|
|
|
)
|
|
)
|
|
|
})
|
|
})
|
|
@@ -604,6 +604,7 @@ export default {
|
|
|
break
|
|
break
|
|
|
case 2: // 充值账户
|
|
case 2: // 充值账户
|
|
|
// 充值
|
|
// 充值
|
|
|
|
|
+ console.log('# 充值: ', _data)
|
|
|
this.$store.dispatch('common/rechargePlayer', _data).then((res) => {
|
|
this.$store.dispatch('common/rechargePlayer', _data).then((res) => {
|
|
|
const { code, status, message } = res
|
|
const { code, status, message } = res
|
|
|
if (code === 200 && status === true) {
|
|
if (code === 200 && status === true) {
|