Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
潘晓云
2022-04-18 10:14:37 +08:00
4 changed files with 92 additions and 71 deletions

View File

@ -11,8 +11,12 @@
<!-- 页头 --> <!-- 页头 -->
<page-header-wrapper [title]="'数据报表'"></page-header-wrapper> <page-header-wrapper [title]="'数据报表'"></page-header-wrapper>
<nz-card> <nz-card>
<div style="display: flex;"> <div nz-row nzGutter="8">
<sf #sf mode="search" [schema]="searchSchema" button="none"></sf> <div nz-col [nzXl]="24" [nzLg]="24" [nzSm]="24" [nzXs]="24">
<sf #sf [schema]="searchSchema" button="none"
[ui]="{ '*': { spanLabelFixed: 0, grid: { xxl:5,xl:4, lg: 8, md: 12, sm: 12, xs: 24,gutter:20 } } }"
[compact]="true">
<ng-template sf-template="no4" let-me let-ui="ui" let-schema="schema">
<div class="chooseBox"> <div class="chooseBox">
<div class="timeBox"> <div class="timeBox">
<nz-radio-group [(ngModel)]="mode" nzButtonStyle="solid" (ngModelChange)="changeData()"> <nz-radio-group [(ngModel)]="mode" nzButtonStyle="solid" (ngModelChange)="changeData()">
@ -22,24 +26,21 @@
<label nz-radio-button nzValue="define">自定义</label> <label nz-radio-button nzValue="define">自定义</label>
</nz-radio-group> </nz-radio-group>
<div class="dateBox"> <div class="dateBox">
<nz-date-picker [(ngModel)]="date" [nzMode]="mode" [nzFormat]="dateFormat" *ngIf="mode !== 'define'" [nzDisabledDate]="disabledDate" (ngModelChange)="onChange($event)"></nz-date-picker> <nz-date-picker [(ngModel)]="date" [nzMode]="mode" [nzFormat]="dateFormat" *ngIf="mode !== 'define'"
<nz-range-picker [(ngModel)]="defineDate" [nzFormat]="dateFormat" *ngIf="mode === 'define'" [nzDisabledDate]="disabledDate" (ngModelChange)="onChange($event)"></nz-range-picker> [nzDisabledDate]="disabledDate" (ngModelChange)="onChange($event)"></nz-date-picker>
</div> <nz-range-picker [(ngModel)]="defineDate" [nzFormat]="dateFormat" *ngIf="mode === 'define'"
[nzDisabledDate]="disabledDate" (ngModelChange)="onChange($event)"></nz-range-picker>
</div> </div>
</div> </div>
</div> </div>
<st </ng-template>
#st </sf>
multiSort </div>
[scroll]="{ x: '2000px' }" </div>
[data]="service.$api_listCusComplianceReportPage" <st #st multiSort [scroll]="{ x: '2000px' }" [data]="service.$api_listCusComplianceReportPage" [columns]="columns"
[columns]="columns"
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }" [req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
[scroll]="{ x: '1200px' }" [res]="{ reName: { list: 'data.records', total: 'data.total' } }" [scroll]="{ x: '1200px' }" [res]="{ reName: { list: 'data.records', total: 'data.total' } }"
[page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }" [page]="{ show: true, showSize: true, pageSizes: [10, 20, 30, 50, 100, 200, 300, 500, 1000] }" [loading]="false">
[loading]="false"
>
<ng-template st-row="freightPrice" let-item let-index="index"> <ng-template st-row="freightPrice" let-item let-index="index">
{{ item.freightPrice | currency }} {{ item.freightPrice | currency }}
</ng-template> </ng-template>

View File

@ -1,11 +1,20 @@
.chooseBox { .chooseBox {
display: flex; display: flex;
float : right;
} }
.timeBox { .timeBox {
display: flex; display: flex;
margin : 0 0 0 10px; margin : 0 0 0 10px;
} }
.dateBox { .dateBox {
display: inline-block; display: inline-block;
margin : 0 0 0 10px; margin : 0 0 0 10px;
} }
:host::ng-deep {
.ant-form-item-control {
max-width: 100%;
}
}

View File

@ -22,19 +22,18 @@ import { Placeholder } from '@angular/compiler/src/i18n/i18n_ast';
templateUrl: './customer.component.html', templateUrl: './customer.component.html',
styleUrls: ['./customer.component.less'], styleUrls: ['./customer.component.less'],
providers: [DatePipe] providers: [DatePipe]
}) })
export class DatatableComplianceCustomerComponent implements OnInit { export class DatatableComplianceCustomerComponent implements OnInit {
@ViewChild('sf', {static: false}) sf!: SFComponent @ViewChild('sf', { static: false }) sf!: SFComponent;
mode = 'year'; mode = 'year';
type = 1; type = 1;
date: any = null; date: any = null;
defineDate = []; defineDate = [];
time: any = ['2022'] time: any = ['2022'];
dateFormat = 'yyyy'; dateFormat = 'yyyy';
dateNext: any = null; dateNext: any = null;
modeNext = 'year'; modeNext = 'year';
timeNext: any = ['2022-01-01 00:00:00'] timeNext: any = ['2022-01-01 00:00:00'];
today = new Date(); today = new Date();
searchSchema: SFSchema = { searchSchema: SFSchema = {
properties: { properties: {
@ -71,6 +70,15 @@ export class DatatableComplianceCustomerComponent implements OnInit {
} }
} }
}, },
no4: {
type: 'string',
title: '',
ui: {
class: 'custom',
widget: 'custom',
grid: { xxl: 9, xl: 12, lg: 24, md: 24, sm: 24, xs: 24 }
}
}
} }
}; };
@ViewChild('st') private readonly st!: STComponent; @ViewChild('st') private readonly st!: STComponent;
@ -100,40 +108,43 @@ export class DatatableComplianceCustomerComponent implements OnInit {
*/ */
get reqParams() { get reqParams() {
if (this.mode === 'year') { if (this.mode === 'year') {
this.type = 1 this.type = 1;
} else if (this.mode === 'month') { } else if (this.mode === 'month') {
this.type = 2 this.type = 2;
} else if (this.mode === 'date') { } else if (this.mode === 'date') {
this.type = 3 this.type = 3;
} else { } else {
this.type = 4 this.type = 4;
} }
const params: any = Object.assign({}, this.sf?.value || {}); const params: any = Object.assign({}, this.sf?.value || {});
params.type = this.type params.type = this.type;
params.queryTime = this.time params.queryTime = this.time;
delete params._$expand; delete params._$expand;
return { ...params }; return { ...params };
} }
ngOnInit(): void {} ngOnInit(): void {}
onChange(result: any) { onChange(result: any) {
if (this.mode === 'year') { if (this.mode === 'year') {
this.time = [this.datePipe.transform(this.date, 'yyyy') + '-01-01 00:00:00'] this.time = [this.datePipe.transform(this.date, 'yyyy') + '-01-01 00:00:00'];
} else if (this.mode === 'month') { } else if (this.mode === 'month') {
this.time = [this.datePipe.transform(this.date, 'yyyy-MM') + '-01 00:00:00'] this.time = [this.datePipe.transform(this.date, 'yyyy-MM') + '-01 00:00:00'];
} else if (this.mode === 'date') { } else if (this.mode === 'date') {
this.time = [this.datePipe.transform(this.date, 'yyyy-MM-dd') + ' 00:00:00'] this.time = [this.datePipe.transform(this.date, 'yyyy-MM-dd') + ' 00:00:00'];
} else { } else {
this.time = [this.datePipe.transform(this.defineDate[0], 'yyyy-MM-dd') + '00:00:00', this.datePipe.transform(this.defineDate[1], 'yyyy-MM-dd') + ' 00:00:00'] this.time = [
this.datePipe.transform(this.defineDate[0], 'yyyy-MM-dd') + '00:00:00',
this.datePipe.transform(this.defineDate[1], 'yyyy-MM-dd') + ' 00:00:00'
];
} }
this.st.reload({ ...this.reqParams }); this.st.reload({ ...this.reqParams });
} }
changeData() { changeData() {
if (this.mode === 'year') { if (this.mode === 'year') {
this.dateFormat = 'yyyy' this.dateFormat = 'yyyy';
} else if (this.mode === 'month') { } else if (this.mode === 'month') {
this.dateFormat = 'yyyy-MM' this.dateFormat = 'yyyy-MM';
} else { } else {
this.dateFormat = 'yyyy-MM-dd' this.dateFormat = 'yyyy-MM-dd';
} }
} }
disabledDate = (current: Date): boolean => disabledDate = (current: Date): boolean =>

View File

@ -90,7 +90,7 @@
</div> </div>
</ng-template> </ng-template>
<ng-template st-row="orderAmount" let-item let-index="index"> <ng-template st-row="orderAmount" let-item let-index="index">
<div class="text-right">{{item?.orderAmount | currency :' '}}</div> <div class="text-right">{{item?.orderAmount | currency }}</div>
</ng-template> </ng-template>
</st> </st>
</nz-card> </nz-card>