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

This commit is contained in:
wangshiming
2022-03-25 15:05:01 +08:00
3 changed files with 20 additions and 11 deletions

View File

@ -230,16 +230,16 @@ export class ReceivableOrderComponent implements OnInit {
} }
} }
}, },
orderS3: { // orderS3: {
type: 'string', // type: 'string',
title: '费用号', // title: '费用号',
ui: { // ui: {
placeholder: '请输入', // placeholder: '请输入',
visibleIf: { // visibleIf: {
expand: (value: boolean) => value // expand: (value: boolean) => value
} // }
} // }
}, // },
remarks: { remarks: {
type: 'string', type: 'string',
title: '核销备注', title: '核销备注',

View File

@ -39,6 +39,15 @@
<st #st [columns]="columns" [data]='service.$api_get_freight_list' [req]="{ process: beforeReq }" <st #st [columns]="columns" [data]='service.$api_get_freight_list' [req]="{ process: beforeReq }"
[res]="{ process: dataProcess }" [scroll]="{ x: '1200px' }" [page]=" {}" [loading]="loadingList"> [res]="{ process: dataProcess }" [scroll]="{ x: '1200px' }" [page]=" {}" [loading]="loadingList">
<ng-template st-row="enterpriseName" let-item let-index="index">
<label>{{ item.enterpriseName }}</label><br>
<ng-container *ngIf="item.score!==null; else billEvaluateelseTemplate">
<nz-rate [ngModel]="item.score" nzDisabled></nz-rate>
</ng-container>
<ng-template #billEvaluateelseTemplate>
<p>暂无评价</p>
</ng-template>
</ng-template>
<ng-template st-row="unifiedSocialCreditCode" let-item let-index="index"> <ng-template st-row="unifiedSocialCreditCode" let-item let-index="index">
<label [ngStyle]="{'color': item.isExpired?'#ff4d4f':''}">{{ item.unifiedSocialCreditCode }}</label><br> <label [ngStyle]="{'color': item.isExpired?'#ff4d4f':''}">{{ item.unifiedSocialCreditCode }}</label><br>
<ng-container *ngIf="item.isExpired"> <ng-container *ngIf="item.isExpired">

View File

@ -363,7 +363,7 @@ export class FreightComponentsListComponent implements OnInit {
initST() { initST() {
this.columns = [ this.columns = [
// { title: '', type: 'checkbox', className: 'text-center' }, // { title: '', type: 'checkbox', className: 'text-center' },
{ title: '企业名称', className: 'text-center', index: 'enterpriseName', width: 350 }, { title: '企业名称', render: 'enterpriseName', width: 350 },
{ title: '统一社会信用代码', className: 'text-center', render: 'unifiedSocialCreditCode', width: 200 }, { title: '统一社会信用代码', className: 'text-center', render: 'unifiedSocialCreditCode', width: 200 },
{ {
title: '公司所在地', title: '公司所在地',