初步联调货源

This commit is contained in:
wangshiming
2021-12-09 00:12:53 +08:00
parent e94c4486ea
commit 5dcc2d0b4b
6 changed files with 199 additions and 77 deletions

View File

@ -73,7 +73,7 @@
<h3 style="font-weight: 700;">承运信息</h3>
<p>网络货运人:{{dataList?.carrierInformationVO?.enterpriseInfoName}}</p>
<p>服务类型:{{dataList?.carrierInformationVO?.serviceType === 1 ? '抢单' : '指派'}}</p>
<p><a href="javascript:;">当前指派</a></p>
<p><a href="javascript:;" (click)="NowAssign()">当前指派</a></p>
</div>
</div>
<div nz-col nzSpan="5">
@ -119,4 +119,19 @@
</st>
</nz-card>
</div>
</nz-card>
</nz-card>
<nz-modal [(nzVisible)]="isVisibleView" [nzWidth]="600" [nzFooter]="nzModalFooterview" nzTitle="当前指派" (nzOnOk)="handleOK()" (nzOnCancel)="handleCancel()">
<ng-container *nzModalContent>
<st
#stFloatView
[data]="i?.auditRecordList"
[columns]="columnsFloatView"
[page]="{ show: false, showSize: false }"
>
</st>
</ng-container>
<ng-template #nzModalFooterview>
<button nz-button nzType="default" (click)="handleCancel()">取消</button>
</ng-template>
</nz-modal>