This commit is contained in:
Taric Xin
2021-12-07 19:39:28 +08:00
parent 647b288042
commit b5262f5a26
32 changed files with 1752 additions and 18 deletions

View File

@ -0,0 +1,26 @@
<page-header-wrapper title="账户主体">
</page-header-wrapper>
<nz-card class="search-box">
<div nz-row nzGutter="8">
<div nz-col [nzXl]="18" [nzLg]="24" [nzSm]="24" [nzXs]="24">
<sf #sf [schema]="searchSchema"
[ui]="{ '*': { spanLabelFixed: 110,grid: { lg: 8, md: 12, sm: 12, xs: 24 } }}" [compact]="true"
[button]="'none'"></sf>
</div>
<div nz-col [nzXl]="6" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="text-right">
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="st?.load(1)">查询</button>
<button nz-button (click)="resetSF()">重置</button>
<button nz-button> 导出</button>
</div>
</div>
</nz-card>
<nz-card class="content-box">
<st #st [data]="url" [columns]="columns"
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
[res]="{ reName: { list: 'data.records', total: 'data.total' } }"
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }"
[loading]="service.http.loading" [scroll]="{ y: '370px' }" (change)="stChange($event)">
</st>
</nz-card>

View File

@ -0,0 +1,13 @@
:host::ng-deep {
.search-box {
.ant-card-body {
padding-bottom: 18px;
}
}
.content-box {
.ant-card-body {
padding-top: 14px;
}
}
}

View File

@ -0,0 +1,89 @@
import { Component, OnInit, ViewChild } from '@angular/core';
import { Router } from '@angular/router';
import { STComponent, STColumn, STChange } from '@delon/abc/st';
import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
import { SystemService } from 'src/app/routes/sys-setting/services/system.service';
@Component({
selector: 'app-main-account',
templateUrl: './main-account.component.html',
styleUrls: ['./main-account.component.less']
})
export class MainAccountComponent implements OnInit {
@ViewChild('st', { static: true })
st!: STComponent;
@ViewChild('sf', { static: false })
sf!: SFComponent;
url = `/rule?_allow_anonymous=true`;
searchSchema: SFSchema = {
properties: {
expand: {
type: 'boolean',
ui: {
hidden: true
}
},
receiveName: {
type: 'string',
title: '公司名称',
ui: { placeholder: '请输入' }
},
phone: {
type: 'string',
title: '纳税人识别号',
ui: { placeholder: '请输入' }
}
}
};
columns: STColumn[] = [
{ title: '公司名称', index: 'description' },
{ title: '纳税人识别号', index: 'description' },
{ title: '发票税率', index: 'description' },
{ title: '电子发票账号', index: 'description' },
{ title: 'ETC账号', index: 'description' },
{ title: '电子合同账号', index: 'description' },
{ title: '开户行', index: 'description' },
{ title: '虚拟账户', index: 'description' },
{ title: '附加费比例', index: 'description' },
{
title: '操作',
buttons: [
{
text: '财务设置',
click: item => this.routeTo(item)
},
{
text: '合同设置',
click: item => this.routeTo(item)
}
]
}
];
reqParams = { pageIndex: 1, pageSize: 10 };
constructor(public service: SystemService, private router: Router) {}
ngOnInit(): void {}
stChange(e: STChange): void {
switch (e.type) {
case 'filter':
this.st.load();
break;
}
}
routeTo(item?: any) {
this.router.navigate(['/financial-management/driver-account-detail/1']);
}
/**
* 重置表单
*/
resetSF() {
this.sf.reset();
}
}