edit
This commit is contained in:
@ -49,7 +49,7 @@ export class AdvanceCollectionComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageIndex: this.st.pi, pageSize: this.st.ps });
|
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
private initSF(): SFSchema {
|
private initSF(): SFSchema {
|
||||||
|
|||||||
@ -90,7 +90,7 @@ export class CostManagementComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageIndex: this.st.pi, pageSize: this.st.ps });
|
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
routeTo(url: string, params?: any, status?: any) {
|
routeTo(url: string, params?: any, status?: any) {
|
||||||
@ -188,7 +188,7 @@ export class CostManagementComponent implements OnInit {
|
|||||||
searchLoadingText: '搜索中...',
|
searchLoadingText: '搜索中...',
|
||||||
allowClear: true,
|
allowClear: true,
|
||||||
onSearch: (q: any) => {
|
onSearch: (q: any) => {
|
||||||
let str =q.replace(/^\s+|\s+$/g,"");
|
let str = q.replace(/^\s+|\s+$/g, '');
|
||||||
if (str) {
|
if (str) {
|
||||||
return this.service
|
return this.service
|
||||||
.request(this.service.$api_enterpriceList, { enterpriseName: str })
|
.request(this.service.$api_enterpriceList, { enterpriseName: str })
|
||||||
@ -213,10 +213,10 @@ export class CostManagementComponent implements OnInit {
|
|||||||
searchLoadingText: '搜索中...',
|
searchLoadingText: '搜索中...',
|
||||||
allowClear: true,
|
allowClear: true,
|
||||||
onSearch: (q: any) => {
|
onSearch: (q: any) => {
|
||||||
let str =q.replace(/^\s+|\s+$/g,"");
|
let str = q.replace(/^\s+|\s+$/g, '');
|
||||||
if (str) {
|
if (str) {
|
||||||
return this.service
|
return this.service
|
||||||
.request(this.service.$api_enterpriceList, { enterpriseName: str})
|
.request(this.service.$api_enterpriceList, { enterpriseName: str })
|
||||||
.pipe(map((res: any) => (res as any[]).map(i => ({ label: i.enterpriseName, value: i.id } as SFSchemaEnum))))
|
.pipe(map((res: any) => (res as any[]).map(i => ({ label: i.enterpriseName, value: i.id } as SFSchemaEnum))))
|
||||||
.toPromise();
|
.toPromise();
|
||||||
} else {
|
} else {
|
||||||
@ -302,13 +302,13 @@ export class CostManagementComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
text: '浏览',
|
text: '浏览',
|
||||||
click: item => this.routeTo('/financial-management/cost-management/detail/' + item.id, { status: item?.feetypeLabel }),
|
click: item => this.routeTo('/financial-management/cost-management/detail/' + item.id, { status: item?.feetypeLabel }),
|
||||||
acl: { ability: ['FINANCIAL-COST-view'] },
|
acl: { ability: ['FINANCIAL-COST-view'] }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '审核',
|
text: '审核',
|
||||||
click: item => this.auditAction(item),
|
click: item => this.auditAction(item),
|
||||||
iif: item => item.sts === 2,
|
iif: item => item.sts === 2,
|
||||||
acl: { ability: ['FINANCIAL-COST-audit'] },
|
acl: { ability: ['FINANCIAL-COST-audit'] }
|
||||||
}
|
}
|
||||||
// {
|
// {
|
||||||
// text: '修改',
|
// text: '修改',
|
||||||
|
|||||||
@ -74,7 +74,7 @@ export class DriverAccountDetailComponent implements OnInit {
|
|||||||
stChange(e: STChange): void {}
|
stChange(e: STChange): void {}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageIndex: this.st.pi, pageSize: this.st.ps });
|
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
goBack() {
|
goBack() {
|
||||||
|
|||||||
@ -74,7 +74,7 @@ export class DriverAccountComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageIndex: this.st.pi, pageSize: this.st.ps });
|
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
private initSF(): SFSchema {
|
private initSF(): SFSchema {
|
||||||
|
|||||||
@ -74,7 +74,7 @@ export class FreightAccountDetailComponent implements OnInit {
|
|||||||
stChange(e: STChange): void {}
|
stChange(e: STChange): void {}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageIndex: this.st.pi, pageSize: this.st.ps });
|
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
goBack() {
|
goBack() {
|
||||||
|
|||||||
@ -80,7 +80,7 @@ export class FreightAccountComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageIndex: this.st.pi, pageSize: this.st.ps });
|
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
private initSF(): SFSchema {
|
private initSF(): SFSchema {
|
||||||
@ -171,7 +171,7 @@ export class FreightAccountComponent implements OnInit {
|
|||||||
{ title: '联系人', width: 120, index: 'name' },
|
{ title: '联系人', width: 120, index: 'name' },
|
||||||
{ title: '联系人电话', width: 140, index: 'phone' },
|
{ title: '联系人电话', width: 140, index: 'phone' },
|
||||||
{ title: '网络货运人', width: 140, index: 'ltdName' },
|
{ title: '网络货运人', width: 140, index: 'ltdName' },
|
||||||
{ title: '银行类型',width: 120, index: 'bankTypeLabel' },
|
{ title: '银行类型', width: 120, index: 'bankTypeLabel' },
|
||||||
{ title: '虚拟账户', width: 140, index: 'virtualAccount' },
|
{ title: '虚拟账户', width: 140, index: 'virtualAccount' },
|
||||||
{
|
{
|
||||||
title: '可用余额',
|
title: '可用余额',
|
||||||
@ -199,7 +199,7 @@ export class FreightAccountComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
title: '状态',
|
title: '状态',
|
||||||
index: 'stateDeletedLabel',
|
index: 'stateDeletedLabel',
|
||||||
width: 80,
|
width: 80
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
|
|||||||
@ -65,7 +65,7 @@ export class PlatformAccountDetailComponent implements OnInit {
|
|||||||
stChange(e: STChange): void {}
|
stChange(e: STChange): void {}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageIndex: this.st.pi, pageSize: this.st.ps });
|
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
goBack() {
|
goBack() {
|
||||||
|
|||||||
@ -49,7 +49,7 @@ export class RechargeRecordComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageIndex: this.st.pi, pageSize: this.st.ps });
|
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
private initSF(): SFSchema {
|
private initSF(): SFSchema {
|
||||||
|
|||||||
@ -113,7 +113,7 @@ export class UserCenterComponentsDriverCaptainComponent implements OnInit {
|
|||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
const params = this.reqParams;
|
const params = this.reqParams;
|
||||||
this.service.downloadFile(this.service.$api_export_driver_cap, params);
|
this.service.downloadFile(this.service.$api_export_driver_cap, {...params, pageSize: -1});
|
||||||
}
|
}
|
||||||
|
|
||||||
private initSF(): SFSchema {
|
private initSF(): SFSchema {
|
||||||
|
|||||||
@ -61,7 +61,7 @@ export class UserCenterComponentsDriverConfigComponent implements OnInit {
|
|||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
const params = this.reqParams;
|
const params = this.reqParams;
|
||||||
this.service.downloadFile(this.service.$api_export_driver_cap, params);
|
this.service.downloadFile(this.service.$api_export_driver_cap, { ...params, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
private initSF(): SFSchema {
|
private initSF(): SFSchema {
|
||||||
|
|||||||
@ -26,7 +26,13 @@ export class UserCenterComponentsDriverComponent implements OnInit {
|
|||||||
promotersTelephone = '';
|
promotersTelephone = '';
|
||||||
|
|
||||||
resourceStatus: any = 10;
|
resourceStatus: any = 10;
|
||||||
constructor(public service: UsermanageService, private modal: NzModalService, private router: Router, private ar: ActivatedRoute,private modalHelper: ModalHelper) {}
|
constructor(
|
||||||
|
public service: UsermanageService,
|
||||||
|
private modal: NzModalService,
|
||||||
|
private router: Router,
|
||||||
|
private ar: ActivatedRoute,
|
||||||
|
private modalHelper: ModalHelper
|
||||||
|
) {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询参数
|
* 查询参数
|
||||||
@ -134,7 +140,7 @@ export class UserCenterComponentsDriverComponent implements OnInit {
|
|||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
const params = this.reqParams;
|
const params = this.reqParams;
|
||||||
this.service.downloadFile(this.service.$api_export_driver, params);
|
this.service.downloadFile(this.service.$api_export_driver, { ...params, pageSize: -1 });
|
||||||
}
|
}
|
||||||
|
|
||||||
private initSF(): SFSchema {
|
private initSF(): SFSchema {
|
||||||
@ -223,7 +229,7 @@ export class UserCenterComponentsDriverComponent implements OnInit {
|
|||||||
{ label: '全部', value: '' },
|
{ label: '全部', value: '' },
|
||||||
{ label: '用户注册', value: 1 },
|
{ label: '用户注册', value: 1 },
|
||||||
{ label: '货主添加', value: 2 },
|
{ label: '货主添加', value: 2 },
|
||||||
{ label: '运营添加', value: 3 },
|
{ label: '运营添加', value: 3 }
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
ui: {
|
ui: {
|
||||||
@ -249,18 +255,18 @@ export class UserCenterComponentsDriverComponent implements OnInit {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
add() {
|
add() {
|
||||||
this.modalHelper.create(CarSettleAddDriverComponent, { size: 900 }).subscribe((res) => {
|
this.modalHelper.create(CarSettleAddDriverComponent, { size: 900 }).subscribe(res => {
|
||||||
this.st.load();
|
this.st.load();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
private initST(): STColumn[] {
|
private initST(): STColumn[] {
|
||||||
return [
|
return [
|
||||||
{ title: '司机姓名', className: 'text-center', index: 'name' , width: 150},
|
{ title: '司机姓名', className: 'text-center', index: 'name', width: 150 },
|
||||||
{ title: '手机号', className: 'text-center', index: 'mobile',width: 150 },
|
{ title: '手机号', className: 'text-center', index: 'mobile', width: 150 },
|
||||||
{ title: '身份证号码', className: 'text-center', index: 'identityNo', width: 200 },
|
{ title: '身份证号码', className: 'text-center', index: 'identityNo', width: 200 },
|
||||||
{ title: '当前车辆', className: 'text-center', render: 'carNo' , width: 200},
|
{ title: '当前车辆', className: 'text-center', render: 'carNo', width: 200 },
|
||||||
{ title: '驾驶证审核人', className: 'text-center', index: 'approvalUserName' , width: 200},
|
{ title: '驾驶证审核人', className: 'text-center', index: 'approvalUserName', width: 200 },
|
||||||
{ title: '审核时间', className: 'text-center', index: 'approvalTime' , width: 200},
|
{ title: '审核时间', className: 'text-center', index: 'approvalTime', width: 200 },
|
||||||
{
|
{
|
||||||
title: '实名认证状态',
|
title: '实名认证状态',
|
||||||
className: 'text-center',
|
className: 'text-center',
|
||||||
@ -271,9 +277,8 @@ export class UserCenterComponentsDriverComponent implements OnInit {
|
|||||||
0: { text: '待审核', color: 'default' },
|
0: { text: '待审核', color: 'default' },
|
||||||
1: { text: '通过', color: 'success' },
|
1: { text: '通过', color: 'success' },
|
||||||
2: { text: '驳回', color: 'warning' }
|
2: { text: '驳回', color: 'warning' }
|
||||||
}
|
},
|
||||||
, width: 180
|
width: 180
|
||||||
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '驾驶证状态',
|
title: '驾驶证状态',
|
||||||
@ -286,8 +291,8 @@ export class UserCenterComponentsDriverComponent implements OnInit {
|
|||||||
20: { text: '审核通过', color: 'success' },
|
20: { text: '审核通过', color: 'success' },
|
||||||
30: { text: '驳回', color: 'warning' },
|
30: { text: '驳回', color: 'warning' },
|
||||||
40: { text: '证件过期', color: 'error' }
|
40: { text: '证件过期', color: 'error' }
|
||||||
}
|
},
|
||||||
, width: 180
|
width: 180
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '从业资格证状态',
|
title: '从业资格证状态',
|
||||||
@ -300,24 +305,31 @@ export class UserCenterComponentsDriverComponent implements OnInit {
|
|||||||
20: { text: '审核通过', color: 'success' },
|
20: { text: '审核通过', color: 'success' },
|
||||||
30: { text: '驳回', color: 'warning' },
|
30: { text: '驳回', color: 'warning' },
|
||||||
40: { text: '证件过期', color: 'error' }
|
40: { text: '证件过期', color: 'error' }
|
||||||
}
|
},
|
||||||
, width: 180
|
width: 180
|
||||||
|
},
|
||||||
|
{ title: '推广业务员', className: 'text-center', render: 'promotersTelephone', width: 180 },
|
||||||
|
{
|
||||||
|
title: '注册渠道',
|
||||||
|
className: 'text-center',
|
||||||
|
index: 'source',
|
||||||
|
type: 'enum',
|
||||||
|
enum: { 1: '用户注册', 2: '货主添加', 3: '运营添加' },
|
||||||
|
width: 150
|
||||||
},
|
},
|
||||||
{ title: '推广业务员', className: 'text-center', render: 'promotersTelephone' , width: 180},
|
|
||||||
{ title: '注册渠道', className: 'text-center', index: 'source', type: 'enum', enum: { 1: '用户注册', 2: '货主添加', 3: '运营添加' }, width: 150 },
|
|
||||||
{ title: '注册时间', className: 'text-center', index: 'createTime', width: 200 },
|
{ title: '注册时间', className: 'text-center', index: 'createTime', width: 200 },
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
width: '110px',
|
width: '110px',
|
||||||
className: 'text-center',
|
className: 'text-center',
|
||||||
fixed:'right',
|
fixed: 'right',
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: '查看<br/>',
|
text: '查看<br/>',
|
||||||
click: item => {
|
click: item => {
|
||||||
this.router.navigate(['./detail', item.appUserId], { relativeTo: this.ar });
|
this.router.navigate(['./detail', item.appUserId], { relativeTo: this.ar });
|
||||||
},
|
},
|
||||||
acl: { ability: ['USERCENTER-DRIVER-LIST-view'] },
|
acl: { ability: ['USERCENTER-DRIVER-LIST-view'] }
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// text: '基础设置',
|
// text: '基础设置',
|
||||||
@ -327,13 +339,13 @@ export class UserCenterComponentsDriverComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
text: '资金账户',
|
text: '资金账户',
|
||||||
click: item => this.showAccountDetail(item),
|
click: item => this.showAccountDetail(item),
|
||||||
acl: { ability: ['USERCENTER-DRIVER-LIST-account'] },
|
acl: { ability: ['USERCENTER-DRIVER-LIST-account'] }
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
viewCar(item: any) {
|
viewCar(item: any) {
|
||||||
this.router.navigate(['/vehicle/list/detail/' + item.carId] );
|
this.router.navigate(['/vehicle/list/detail/' + item.carId]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -228,7 +228,7 @@ export class FreightComponentsEnterpriseAuditComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
const params = { ...this.sf.value, flag: this.tabType, listSource: 2 };
|
const params = { ...this.sf.value, flag: this.tabType, listSource: 2, pageSize: -1 };
|
||||||
this.service.downloadFile(this.service.$api_export_enterprise, params);
|
this.service.downloadFile(this.service.$api_export_enterprise, params);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -166,7 +166,7 @@ export class FreightConfigComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
const params = { listSource: 1, pageIndex: this.st.pi, pageSize: this.st.ps };
|
const params = { listSource: 1, pageSize: -1 };
|
||||||
if (this.sf) {
|
if (this.sf) {
|
||||||
Object.assign(params, {
|
Object.assign(params, {
|
||||||
...this.sf.value
|
...this.sf.value
|
||||||
|
|||||||
@ -280,7 +280,7 @@ export class FreightComponentsListComponent implements OnInit {
|
|||||||
enum: [
|
enum: [
|
||||||
{ label: '全部', value: '' },
|
{ label: '全部', value: '' },
|
||||||
{ label: '是', value: true },
|
{ label: '是', value: true },
|
||||||
{ label: '否', value: false },
|
{ label: '否', value: false }
|
||||||
],
|
],
|
||||||
default: '',
|
default: '',
|
||||||
ui: {
|
ui: {
|
||||||
@ -439,7 +439,7 @@ export class FreightComponentsListComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
exportList() {
|
exportList() {
|
||||||
const params = { listSource: 1 };
|
const params = { listSource: 1, pageSize: -1 };
|
||||||
if (this.sf) {
|
if (this.sf) {
|
||||||
Object.assign(params, {
|
Object.assign(params, {
|
||||||
...this.sf.value
|
...this.sf.value
|
||||||
|
|||||||
Reference in New Issue
Block a user