fix bug
This commit is contained in:
@ -190,7 +190,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<span>(运费{{ i?.totalFreight | currency }}含附加运费 {{ i?.totalSurcharge | currency }})</span>
|
<span>(运费{{ i?.totalFreight | currency }}含附加运费 {{ i?.totalSurcharge | currency }})</span>
|
||||||
</h3>
|
</h3>
|
||||||
<div>车队长:{{ i?.payeeName }}/{{ i?.payeePhone }}/{{ i?.payeeCardNo }}</div>
|
<div *ngIf='i?.resourceStatus !== "1"' >车队长:{{ i?.payeeName }}/{{ i?.payeePhone }}/{{ i?.payeeCardNo }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nz-card>
|
</nz-card>
|
||||||
@ -220,6 +220,11 @@
|
|||||||
[page]="{}"
|
[page]="{}"
|
||||||
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
[req]="{ method: 'POST', allInBody: true, reName: { pi: 'pageIndex', ps: 'pageSize' }, params: reqParams }"
|
||||||
[res]="{ reName: { list: 'data.records', total: 'data.total' } }">
|
[res]="{ reName: { list: 'data.records', total: 'data.total' } }">
|
||||||
|
<ng-template st-row="operator" let-item>
|
||||||
|
<div>
|
||||||
|
{{ item?.operator }} {{ item?.telephone ? '/' + item?.telephone : '' }}
|
||||||
|
</div>
|
||||||
|
</ng-template>
|
||||||
</st>
|
</st>
|
||||||
</nz-card>
|
</nz-card>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -23,7 +23,7 @@ export class SupplyManagementVehicleDetailComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
logColumns: STColumn[] = [
|
logColumns: STColumn[] = [
|
||||||
{ title: '内容', index: 'operationContent' },
|
{ title: '内容', index: 'operationContent' },
|
||||||
{ title: '操作人', index: 'operator' },
|
{ title: '操作人', render: 'operator' },
|
||||||
{ title: '操作时间', index: 'operatorTimestamp' },
|
{ title: '操作时间', index: 'operatorTimestamp' },
|
||||||
];
|
];
|
||||||
totalObj: any;
|
totalObj: any;
|
||||||
|
|||||||
Reference in New Issue
Block a user