初步联调货源

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>

View File

@ -17,6 +17,14 @@
margin-bottom: .5em;
}
}
.freight-info-box{
width: 95%;
}
.freigth-label{
display: inline-block;
width: 50px;
text-align: right;
}
::ng-deep{
.approval-status{

View File

@ -1,7 +1,7 @@
/*
* @Author: your name
* @Date: 2021-12-03 11:10:14
* @LastEditTime: 2021-12-08 16:20:45
* @LastEditTime: 2021-12-08 17:04:35
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \tms-obc-web\src\app\routes\supply-management\components\bulk-detail\bulk-detail.component.ts
@ -21,7 +21,7 @@ import { SupplyManagementService } from '../../services/supply-management.servic
styleUrls: ['./bulk-detail.component.less']
})
export class SupplyManagementBulkDetailComponent implements OnInit {
isVisibleView = false
id = this.route.snapshot.params.id;
i: any;
logColumns: STColumn[] = [
@ -29,6 +29,12 @@ export class SupplyManagementBulkDetailComponent implements OnInit {
{ title: '操作人', index: 'operationUserPhone' },
{ title: '操作时间', index: ' createTime' },
];
columnsFloatView: STColumn[] = [
{ title: '司机姓名', index: 'theme' },
{ title: '手机号', index: 'operationUserPhone' },
{ title: '车队长', index: ' createTime' },
{ title: '车牌号', index: ' createTime' },
];
driverColums: STColumn[] = [
{ title: '司机姓名', index: 'theme' },
{ title: '手机号', index: 'operationUserPhone' },
@ -123,4 +129,14 @@ export class SupplyManagementBulkDetailComponent implements OnInit {
relativeTo: this.ar
})
}
handleCancel() {
this.isVisibleView = false
}
handleOK() {
}
NowAssign() {
this.isVisibleView = true
}
}