38 lines
750 B
TypeScript
38 lines
750 B
TypeScript
import { Component, OnInit, ViewChild } from '@angular/core';
|
|
import { STColumn, STComponent } from '@delon/abc/st';
|
|
import { SFSchema } from '@delon/form';
|
|
import { ModalHelper, _HttpClient } from '@delon/theme';
|
|
|
|
@Component({
|
|
selector: 'app-partner-business-statistics-index',
|
|
templateUrl: './index.component.html',
|
|
})
|
|
export class PartnerBusinessStatisticsIndexComponent implements OnInit {
|
|
url = `/user`;
|
|
schema!: SFSchema;
|
|
@ViewChild('st') private readonly st!: STComponent;
|
|
columns: STColumn[] = [];
|
|
selectedIndex = 0;
|
|
tabs = [
|
|
{
|
|
name: '合伙人统计',
|
|
value: '0'
|
|
},
|
|
{
|
|
name: '渠道销售统计',
|
|
value: '1'
|
|
}
|
|
]
|
|
|
|
constructor() { }
|
|
|
|
|
|
ngOnInit(): void { }
|
|
|
|
|
|
|
|
add(): void {
|
|
}
|
|
|
|
}
|