退款记录

This commit is contained in:
潘晓云
2022-02-24 11:23:05 +08:00
parent c8e2c088ea
commit 0eb12cdf75
13 changed files with 799 additions and 573 deletions

View File

@ -9,37 +9,31 @@ import { ModalHelper, _HttpClient } from '@delon/theme';
})
export class PartnerBusinessStatisticsIndexComponent implements OnInit {
url = `/user`;
searchSchema: SFSchema = {
properties: {
no: {
type: 'string',
title: '编号'
}
}
};
schema!: SFSchema;
@ViewChild('st') private readonly st!: STComponent;
columns: STColumn[] = [
{ title: '编号', index: 'no' },
{ title: '调用次数', type: 'number', index: 'callNo' },
{ title: '头像', type: 'img', width: '50px', index: 'avatar' },
{ title: '时间', type: 'date', index: 'updatedAt' },
columns: STColumn[] = [];
selectedIndex = 0;
tabs = [
{
title: '',
buttons: [
// { text: '查看', click: (item: any) => `/form/${item.id}` },
// { text: '编辑', type: 'static', component: FormEditComponent, click: 'reload' },
]
name: '合伙人统计',
value: '0'
},
{
name: '渠道销售统计',
value: '1'
}
];
]
constructor(private http: _HttpClient, private modal: ModalHelper) { }
constructor() { }
change(e: any) {
console.log(this.selectedIndex);
}
ngOnInit(): void { }
add(): void {
// this.modal
// .createStatic(FormEditComponent, { i: { id: 0 } })
// .subscribe(() => this.st.reload());
}
}