|
|
@ -1,7 +1,6 @@ |
|
|
|
import {Component, OnInit} from '@angular/core'; |
|
|
|
import {Component, OnInit} from '@angular/core'; |
|
|
|
import {ADMIN_INFO_OBJECT} from '../../../services/local-storage.namespace'; |
|
|
|
import {ADMIN_INFO_OBJECT} from '../../../services/local-storage.namespace'; |
|
|
|
import {LocalStorageService} from '../../../services/local-storage.service'; |
|
|
|
import {LocalStorageService} from '../../../services/local-storage.service'; |
|
|
|
import {CommonsService} from '../../../services/commons.service'; |
|
|
|
|
|
|
|
import {IndexService} from '../../../services/index.service'; |
|
|
|
import {IndexService} from '../../../services/index.service'; |
|
|
|
import {NzMessageService} from '_ng-zorro-antd@9.3.0@ng-zorro-antd'; |
|
|
|
import {NzMessageService} from '_ng-zorro-antd@9.3.0@ng-zorro-antd'; |
|
|
|
import {environment} from '../../../../environments/environment'; |
|
|
|
import {environment} from '../../../../environments/environment'; |
|
|
@ -27,17 +26,21 @@ export class IndexComponent implements OnInit { |
|
|
|
orderData = {}; |
|
|
|
orderData = {}; |
|
|
|
balanceData = {}; |
|
|
|
balanceData = {}; |
|
|
|
rechargeData = {}; |
|
|
|
rechargeData = {}; |
|
|
|
|
|
|
|
tyBalance; |
|
|
|
|
|
|
|
|
|
|
|
constructor( |
|
|
|
constructor( |
|
|
|
private store: LocalStorageService, // 数据缓存
|
|
|
|
private store: LocalStorageService, // 数据缓存
|
|
|
|
private message: NzMessageService, // 信息提示
|
|
|
|
private message: NzMessageService, // 信息提示
|
|
|
|
private index: IndexService |
|
|
|
private index: IndexService |
|
|
|
) { } |
|
|
|
) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
ngOnInit(): void { |
|
|
|
this.roleType = this.store.get(ADMIN_INFO_OBJECT)['secRole'].roleType; |
|
|
|
this.roleType = this.store.get(ADMIN_INFO_OBJECT)['secRole'].roleType; |
|
|
|
if (this.roleType === 1) { |
|
|
|
if (this.roleType === 1) { |
|
|
|
this.getIndexCount(); |
|
|
|
this.getIndexCount(); |
|
|
|
this.getLineCount(); |
|
|
|
this.getLineCount(); |
|
|
|
|
|
|
|
this.queryCompanyAccountInfo2JD(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (this.store.get(ADMIN_INFO_OBJECT)['highAgent'] != null) { |
|
|
|
if (this.store.get(ADMIN_INFO_OBJECT)['highAgent'] != null) { |
|
|
@ -80,6 +83,18 @@ export class IndexComponent implements OnInit { |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 查询团油余额
|
|
|
|
|
|
|
|
public queryCompanyAccountInfo2JD() { |
|
|
|
|
|
|
|
this.index.queryCompanyAccountInfo2JD(data => { |
|
|
|
|
|
|
|
if (data['return_code'] === '000000') { |
|
|
|
|
|
|
|
console.log(data); |
|
|
|
|
|
|
|
this.tyBalance = data['return_data']; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
this.message.error(data['return_msg']); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public HLTOrderByIndex(): void { |
|
|
|
public HLTOrderByIndex(): void { |
|
|
|
this.index.HLTOrderByIndex(this.code, data => { |
|
|
|
this.index.HLTOrderByIndex(this.code, data => { |
|
|
|
if (data['return_code'] === '000000') { |
|
|
|
if (data['return_code'] === '000000') { |
|
|
|