166 lines
4.6 KiB
TypeScript
166 lines
4.6 KiB
TypeScript
import { Component, OnInit, ViewChild } from '@angular/core';
|
|
import { Router } from '@angular/router';
|
|
import { STComponent, STColumn, STChange, STRequestOptions } from '@delon/abc/st';
|
|
import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
|
|
import { ShipperBaseService } from '@shared';
|
|
import { FreightAccountService } from '../../services/freight-account.service';
|
|
|
|
@Component({
|
|
selector: 'app-driver-account',
|
|
templateUrl: './driver-account.component.html',
|
|
styleUrls: ['./driver-account.component.less']
|
|
})
|
|
export class DriverAccountComponent implements OnInit {
|
|
@ViewChild('st', { static: true })
|
|
st!: STComponent;
|
|
@ViewChild('sf', { static: false })
|
|
sf!: SFComponent;
|
|
|
|
searchSchema: SFSchema = this.initSF();
|
|
columns: STColumn[] = this.initST();
|
|
_$expand = false;
|
|
|
|
constructor(public service: FreightAccountService, private router: Router) {}
|
|
|
|
ngOnInit(): void {}
|
|
|
|
beforeReq = (requestOptions: STRequestOptions) => {
|
|
Object.assign(requestOptions.body, { accountType: 2 });
|
|
if (this.sf) {
|
|
Object.assign(requestOptions.body, { ...this.sf.value });
|
|
}
|
|
return requestOptions;
|
|
};
|
|
|
|
/**
|
|
* 重置表单
|
|
*/
|
|
resetSF() {
|
|
this.sf.reset();
|
|
this._$expand = false;
|
|
}
|
|
|
|
/**
|
|
* 伸缩查询条件
|
|
*/
|
|
expandToggle() {
|
|
this._$expand = !this._$expand;
|
|
this.sf?.setValue('/expand', this._$expand);
|
|
}
|
|
|
|
exportList() {
|
|
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageIndex: this.st.pi, pageSize: this.st.ps });
|
|
}
|
|
|
|
private initSF(): SFSchema {
|
|
return {
|
|
properties: {
|
|
expand: {
|
|
type: 'boolean',
|
|
ui: {
|
|
hidden: true
|
|
}
|
|
},
|
|
tenantName: {
|
|
type: 'string',
|
|
title: '司机姓名',
|
|
ui: { placeholder: '请输入' }
|
|
},
|
|
phone: {
|
|
type: 'string',
|
|
title: '证件号码',
|
|
ui: { placeholder: '请输入' }
|
|
},
|
|
page: {
|
|
type: 'string',
|
|
title: '手机号',
|
|
ui: {
|
|
placeholder: '请输入'
|
|
}
|
|
},
|
|
ltdid: {
|
|
type: 'string',
|
|
title: '网络货运人',
|
|
ui: {
|
|
widget: 'select',
|
|
placeholder: '请选择',
|
|
visibleIf: {
|
|
expand: (value: boolean) => value
|
|
},
|
|
allowClear: true,
|
|
asyncData: () => this.service.getNetworkFreightForwarder()
|
|
}
|
|
},
|
|
bankType: {
|
|
type: 'string',
|
|
title: '银行类型',
|
|
enum: [
|
|
{ label: '全部', value: null },
|
|
{ label: '平安银行', value: '1' },
|
|
{ label: '浦发银行', value: '2' }
|
|
],
|
|
ui: {
|
|
widget: 'select',
|
|
placeholder: '请选择',
|
|
change: (i: any) => {
|
|
this.sf.value.receiveName2 = i;
|
|
this.sf?.setValue('/receiveName2', i);
|
|
},
|
|
visibleIf: {
|
|
expand: (value: boolean) => value
|
|
}
|
|
},
|
|
default: null
|
|
},
|
|
virtualAccount: {
|
|
type: 'string',
|
|
title: '虚拟账户',
|
|
ui: {
|
|
placeholder: '请输入',
|
|
visibleIf: {
|
|
expand: (value: boolean) => value
|
|
}
|
|
}
|
|
},
|
|
createTime: {
|
|
title: '创建时间',
|
|
type: 'string',
|
|
ui: {
|
|
widget: 'date',
|
|
mode: 'range',
|
|
format: 'yyyy-MM-dd',
|
|
visibleIf: {
|
|
expand: (value: boolean) => value
|
|
}
|
|
} as SFDateWidgetSchema
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
private initST(): STColumn[] {
|
|
return [
|
|
{ title: '司机姓名', index: 'tenantName' },
|
|
{ title: '证件号码', index: 'description' },
|
|
{ title: '手机号', index: 'description' },
|
|
{ title: '网络货运人', index: 'ltdid' },
|
|
{ title: '银行类型', index: 'description', type: 'enum', enum: { 1: '平安银行', 2: '浦发银行' } },
|
|
{ title: '虚拟账户', index: 'virtualAccount' },
|
|
{ title: '可用余额', index: 'availableBalance' },
|
|
{ title: '冻结余额', index: 'freezeBalance' },
|
|
{ title: '本月累计提现金额', index: 'description', width: 150 },
|
|
{ title: '账户总余额', index: 'availableBalance' },
|
|
{ title: '创建时间', index: 'createTime', type: 'date', width: 150 },
|
|
{
|
|
title: '操作',
|
|
buttons: [
|
|
{
|
|
text: '查看明细',
|
|
click: item => this.router.navigate(['/financial-management/driver-account/detail/1'])
|
|
}
|
|
]
|
|
}
|
|
];
|
|
}
|
|
}
|