Files
bbq/src/app/routes/partner/business-statistics/components/index/index.component.ts
2022-02-24 20:10:36 +08:00

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 {
}
}