Commit c04ef2cc authored by 王悦's avatar 王悦

账户明细BUG修改,领队佣金体现在团报

parent 4087625a
...@@ -417,7 +417,7 @@ export default { ...@@ -417,7 +417,7 @@ export default {
TypeId:this.accType, TypeId:this.accType,
BranchId:-1, BranchId:-1,
Alias:'', Alias:'',
RB_Branch_Id:this.RB_Branch_Id, // RB_Branch_Id:this.RB_Branch_Id,
} }
this.apipost('BankAccount_post_GetPlatformList',msg, res => { this.apipost('BankAccount_post_GetPlatformList',msg, res => {
if(res.data.resultCode == 1) { if(res.data.resultCode == 1) {
......
...@@ -453,7 +453,7 @@ export default { ...@@ -453,7 +453,7 @@ export default {
BranchId:-1, BranchId:-1,
Alias:'', Alias:'',
} }
this.apipost('BankAccount_post_GetCashAccountList',msg, res => { this.apipost('BankAccount_post_GetCashPoolList',msg, res => {
if(res.data.resultCode == 1) { if(res.data.resultCode == 1) {
let data = res.data.data; let data = res.data.data;
this.accountList = data; this.accountList = data;
...@@ -651,7 +651,7 @@ export default { ...@@ -651,7 +651,7 @@ export default {
BranchId:-1, BranchId:-1,
Alias:'' Alias:''
}; };
this.apipost('BankAccount_post_GetCashAccountList',msg, res => { this.apipost('BankAccount_post_GetCashPoolList',msg, res => {
if(res.data.resultCode === 1) { if(res.data.resultCode === 1) {
let data = res.data.data; let data = res.data.data;
data.forEach(x=>{ data.forEach(x=>{
...@@ -674,7 +674,7 @@ export default { ...@@ -674,7 +674,7 @@ export default {
}, err => {}) }, err => {})
}, },
BankAccount_post_GetCashPoolList(query){ // 获取资金池账 BankAccount_post_GetCashPoolList(query){ // 获取资金池账
this.apipost('BankAccount_post_GetCashPoolList',{TypeId:2,BranchId:-1,Alias:''}, res => { this.apipost('BankAccount_post_GetCashPoolList',{TypeId:4,BranchId:-1,Alias:''}, res => {
if(res.data.resultCode === 1) { if(res.data.resultCode === 1) {
let data = res.data.data; let data = res.data.data;
data.forEach(x=>{ data.forEach(x=>{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment