车辆对接
This commit is contained in:
		| @ -16,8 +16,8 @@ | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     .ant-tabs-tab-btn { |     .ant-tabs-tab-btn { | ||||||
|         padding-left : 16px; |  | ||||||
|         padding-right: 16px; |         padding-right: 16px; | ||||||
|  |         padding-left : 16px; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     .text-truncate { |     .text-truncate { | ||||||
|  | |||||||
| @ -1,13 +1,13 @@ | |||||||
| .expend-options { | .expend-options { | ||||||
|     margin-top: 0px; |     margin-top: 0; | ||||||
| } | } | ||||||
|  |  | ||||||
|  |  | ||||||
| @media (min-width: 1200px) { | @media (min-width: 1200px) { | ||||||
|     .expend-options { |     .expend-options { | ||||||
|         max-width: 450px; |  | ||||||
|         position : absolute; |         position : absolute; | ||||||
|         right    : 0; |         right    : 0; | ||||||
|         bottom   : 25px; |         bottom   : 25px; | ||||||
|  |         max-width: 450px; | ||||||
|     } |     } | ||||||
| } | } | ||||||
| @ -199,16 +199,16 @@ tabs = { | |||||||
|                   .request(this.service.$api_get_getCarLicenseListByCarNo, { |                   .request(this.service.$api_get_getCarLicenseListByCarNo, { | ||||||
|                     carNo: q |                     carNo: q | ||||||
|                   }) |                   }) | ||||||
|                   .pipe(map((res: any[]) => (res as any[]).map((i) => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) |                   .pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) | ||||||
|                   .toPromise(); |                   .toPromise(); | ||||||
|               } else { |               } else { | ||||||
|                 return of([]); |                 return of([]); | ||||||
|               } |               } | ||||||
|             }, |             }, | ||||||
|             visibleIf: { |             visibleIf: { | ||||||
|               _$expand: (value: boolean) => value, |               _$expand: (value: boolean) => value | ||||||
|             }, |             } | ||||||
|           } as SFSelectWidgetSchema, |           } as SFSelectWidgetSchema | ||||||
|         }, |         }, | ||||||
|          payeeId: { |          payeeId: { | ||||||
|           title: '车队长', |           title: '车队长', | ||||||
|  | |||||||
| @ -213,16 +213,16 @@ resourceStatus: any; | |||||||
|                   .request(this.service.$api_get_getCarLicenseListByCarNo, { |                   .request(this.service.$api_get_getCarLicenseListByCarNo, { | ||||||
|                     carNo: q |                     carNo: q | ||||||
|                   }) |                   }) | ||||||
|                   .pipe(map((res: any[]) => (res as any[]).map((i) => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) |                   .pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) | ||||||
|                   .toPromise(); |                   .toPromise(); | ||||||
|               } else { |               } else { | ||||||
|                 return of([]); |                 return of([]); | ||||||
|               } |               } | ||||||
|             }, |             }, | ||||||
|             visibleIf: { |             visibleIf: { | ||||||
|               _$expand: (value: boolean) => value, |               _$expand: (value: boolean) => value | ||||||
|             }, |             } | ||||||
|           } as SFSelectWidgetSchema, |           } as SFSelectWidgetSchema | ||||||
|         }, |         }, | ||||||
|          payeeId: { |          payeeId: { | ||||||
|           title: '车队长', |           title: '车队长', | ||||||
|  | |||||||
| @ -37,7 +37,7 @@ export class OrderManagementService extends ShipperBaseService { | |||||||
|   //  整车详情 |   //  整车详情 | ||||||
|   $api_get_getWholeBillDetail = `/api/sdc/billOperate/getWholeBillDetail`; |   $api_get_getWholeBillDetail = `/api/sdc/billOperate/getWholeBillDetail`; | ||||||
|       // 根据车牌号查询车辆信息 |       // 根据车牌号查询车辆信息 | ||||||
|   $api_get_getCarLicenseListByCarNo= `/api/mdc/cuc/carLicenseAudit/operate/getCarLicenseListByCarNo`; |   $api_get_getCarLicenseListByCarNo= `/api/mdc/cuc/carLicense/findCarLicenseByCarNo`; | ||||||
|  |  | ||||||
|     //  查询大宗订单列表 |     //  查询大宗订单列表 | ||||||
|     $api_get_listBulkPage = `/api/sdc/billOperate/listBulkPage`; |     $api_get_listBulkPage = `/api/sdc/billOperate/listBulkPage`; | ||||||
|  | |||||||
| @ -81,26 +81,24 @@ export class VehicleComponentsAuditComponent implements OnInit { | |||||||
|           ui: { |           ui: { | ||||||
|             widget: 'select', |             widget: 'select', | ||||||
|             serverSearch: true, |             serverSearch: true, | ||||||
|             searchDebounceTime: 250, |             searchDebounceTime: 300, | ||||||
|             searchLoadingText: '搜索中...', |             searchLoadingText: '搜索中...', | ||||||
|             onSearch: (q: any) => { |             onSearch: (q: any) => { | ||||||
|               if (!!q) { |               if (!!q) { | ||||||
|                 return this.service |                 return this.service | ||||||
|                   .request(this.service.$api_get_getCarLicenseListByCarNo_audit, { |                   .request(this.service.$api_get_getCarLicenseListByCarNo, { | ||||||
|                     carNo: q |                     carNo: q | ||||||
|                   }) |                   }) | ||||||
|                   .pipe(map((res: any) => (res.records as any[]).map((i) => ( |                   .pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) | ||||||
|                     { label: i.carNo, value: i.carNo  |  | ||||||
|                     } as SFSchemaEnum) |  | ||||||
|                     ) |  | ||||||
|                     ) |  | ||||||
|                     ) |  | ||||||
|                   .toPromise(); |                   .toPromise(); | ||||||
|               } else { |               } else { | ||||||
|                 return of([]); |                 return of([]); | ||||||
|               } |               } | ||||||
|             }, |             }, | ||||||
|           } as SFSelectWidgetSchema, |             visibleIf: { | ||||||
|  |               _$expand: (value: boolean) => value | ||||||
|  |             } | ||||||
|  |           } as SFSelectWidgetSchema | ||||||
|         }, |         }, | ||||||
|         carNoColor: { |         carNoColor: { | ||||||
|           type: 'string', |           type: 'string', | ||||||
|  | |||||||
| @ -77,7 +77,7 @@ export class VehicleComponentsListComponent implements OnInit { | |||||||
|           ui: { |           ui: { | ||||||
|             widget: 'select', |             widget: 'select', | ||||||
|             serverSearch: true, |             serverSearch: true, | ||||||
|             searchDebounceTime: 250, |             searchDebounceTime: 300, | ||||||
|             searchLoadingText: '搜索中...', |             searchLoadingText: '搜索中...', | ||||||
|             onSearch: (q: any) => { |             onSearch: (q: any) => { | ||||||
|               if (!!q) { |               if (!!q) { | ||||||
| @ -85,18 +85,16 @@ export class VehicleComponentsListComponent implements OnInit { | |||||||
|                   .request(this.service.$api_get_getCarLicenseListByCarNo, { |                   .request(this.service.$api_get_getCarLicenseListByCarNo, { | ||||||
|                     carNo: q |                     carNo: q | ||||||
|                   }) |                   }) | ||||||
|                   .pipe(map((res: any) => (res.records as any[]).map((i) => ( |                   .pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) | ||||||
|                     { label: i.carNo, value: i.carNo  |  | ||||||
|                     } as SFSchemaEnum) |  | ||||||
|                     ) |  | ||||||
|                     ) |  | ||||||
|                     ) |  | ||||||
|                   .toPromise(); |                   .toPromise(); | ||||||
|               } else { |               } else { | ||||||
|                 return of([]); |                 return of([]); | ||||||
|               } |               } | ||||||
|             }, |             }, | ||||||
|           } as SFSelectWidgetSchema, |             visibleIf: { | ||||||
|  |               _$expand: (value: boolean) => value | ||||||
|  |             } | ||||||
|  |           } as SFSelectWidgetSchema | ||||||
|         }, |         }, | ||||||
|         carNoColor: { |         carNoColor: { | ||||||
|           type: 'string', |           type: 'string', | ||||||
|  | |||||||
| @ -166,7 +166,7 @@ export class WaybillManagementAbnormalAppearComponent implements OnInit { | |||||||
|           } |           } | ||||||
|         } as SFSelectWidgetSchema |         } as SFSelectWidgetSchema | ||||||
|       }, |       }, | ||||||
|       customerCode: { |       carNo: { | ||||||
|         title: '车牌号', |         title: '车牌号', | ||||||
|         type: 'string', |         type: 'string', | ||||||
|         ui: { |         ui: { | ||||||
| @ -180,16 +180,16 @@ export class WaybillManagementAbnormalAppearComponent implements OnInit { | |||||||
|                 .request(this.service.$api_get_getCarLicenseListByCarNo, { |                 .request(this.service.$api_get_getCarLicenseListByCarNo, { | ||||||
|                   carNo: q |                   carNo: q | ||||||
|                 }) |                 }) | ||||||
|                   .pipe(map((res: any[]) => (res as any[]).map((i) => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) |                 .pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) | ||||||
|                 .toPromise(); |                 .toPromise(); | ||||||
|             } else { |             } else { | ||||||
|               return of([]); |               return of([]); | ||||||
|             } |             } | ||||||
|           }, |           }, | ||||||
|           visibleIf: { |           visibleIf: { | ||||||
|               _$expand: (value: boolean) => value, |             _$expand: (value: boolean) => value | ||||||
|             }, |           } | ||||||
|           } as SFSelectWidgetSchema, |         } as SFSelectWidgetSchema | ||||||
|       }, |       }, | ||||||
|       reportingTime: { |       reportingTime: { | ||||||
|         title: '上报时间', |         title: '上报时间', | ||||||
|  | |||||||
| @ -1,7 +1,7 @@ | |||||||
| <!-- | <!-- | ||||||
|  * @Author: your name |  * @Author: your name | ||||||
|  * @Date: 2021-12-03 11:10:14 |  * @Date: 2021-12-03 11:10:14 | ||||||
|  * @LastEditTime: 2021-12-28 10:01:51 |  * @LastEditTime: 2022-01-12 14:53:26 | ||||||
|  * @LastEditors: Please set LastEditors |  * @LastEditors: Please set LastEditors | ||||||
|  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE |  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE | ||||||
|  * @FilePath: \tms-obc-web\src\app\routes\supply-management\components\vehicle\vehicle.component.html |  * @FilePath: \tms-obc-web\src\app\routes\supply-management\components\vehicle\vehicle.component.html | ||||||
| @ -69,8 +69,11 @@ | |||||||
|         </div> |         </div> | ||||||
|       </ng-template> |       </ng-template> | ||||||
|       <ng-template st-row="billExpenseDetailVOList" let-item let-index="index"> |       <ng-template st-row="billExpenseDetailVOList" let-item let-index="index"> | ||||||
|         <div *ngFor="let i of item?.billExpenseDetailVOList; let ii = index"> |         <div *ngIf="item.billExpenseDetailVOList.length > 0"> | ||||||
|           <span >{{i?.costName}}:{{i?.price}}</span> |           <p *ngFor="let data of item.billExpenseDetailVOList"> | ||||||
|  |             {{ data.costCodeLabel }}:{{ data.price }} | ||||||
|  |             <span style="color: #f59a63">{{ data.paymentStatusLabel }}</span> | ||||||
|  |           </p> | ||||||
|         </div> |         </div> | ||||||
|       </ng-template> |       </ng-template> | ||||||
|       <ng-template st-row="wayBill" let-item let-index="index"> |       <ng-template st-row="wayBill" let-item let-index="index"> | ||||||
|  | |||||||
| @ -1,3 +1,8 @@ | |||||||
|  |  | ||||||
|  |     :host ::ng-deep{ | ||||||
|  |      ::ng-deep nz-range-picker{ | ||||||
|  |          width: 100%; | ||||||
|  |      } | ||||||
|      .left_btn { |      .left_btn { | ||||||
|           width: 50px; |           width: 50px; | ||||||
|          height: 32px;  |          height: 32px;  | ||||||
| @ -5,3 +10,4 @@ | |||||||
|           line-height:32px;  |           line-height:32px;  | ||||||
|           background-color: #d7d7d7; |           background-color: #d7d7d7; | ||||||
|      } |      } | ||||||
|  |  } | ||||||
| @ -161,16 +161,16 @@ tabs = { | |||||||
|                   .request(this.service.$api_get_getCarLicenseListByCarNo, { |                   .request(this.service.$api_get_getCarLicenseListByCarNo, { | ||||||
|                     carNo: q |                     carNo: q | ||||||
|                   }) |                   }) | ||||||
|                   .pipe(map((res: any[]) => (res as any[]).map((i) => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) |                   .pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) | ||||||
|                   .toPromise(); |                   .toPromise(); | ||||||
|               } else { |               } else { | ||||||
|                 return of([]); |                 return of([]); | ||||||
|               } |               } | ||||||
|             }, |             }, | ||||||
|             visibleIf: { |             visibleIf: { | ||||||
|               _$expand: (value: boolean) => value, |               _$expand: (value: boolean) => value | ||||||
|             }, |             } | ||||||
|           } as SFSelectWidgetSchema, |           } as SFSelectWidgetSchema | ||||||
|         }, |         }, | ||||||
|          payeeId: { |          payeeId: { | ||||||
|           title: '车队长', |           title: '车队长', | ||||||
| @ -350,25 +350,25 @@ tabs = { | |||||||
|       { title: '', type: 'checkbox', width: '50px', className: 'text-center' }, |       { title: '', type: 'checkbox', width: '50px', className: 'text-center' }, | ||||||
|       { |       { | ||||||
|         title: '运单号', |         title: '运单号', | ||||||
|         width: '100px', |         width: '180px', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         render: 'wayBillCode' |         render: 'wayBillCode' | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         title: '运费明细', |         title: '运费明细', | ||||||
|         width: '100px', |         width: '150px', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         render: 'billExpenseDetailVOList' |         render: 'billExpenseDetailVOList' | ||||||
|       }, |       }, | ||||||
|       { title: '网络货运人', index: 'enterpriseInfoName', width: '120px', className: 'text-center' }, |       { title: '网络货运人', index: 'enterpriseInfoName', width: '180px', className: 'text-center' }, | ||||||
|       { title: '货主', index: 'shipperAppUserName', width: '120px', className: 'text-center' }, |       { title: '货主', index: 'shipperAppUserName', width: '180px', className: 'text-center' }, | ||||||
|       { title: '关联订单号', render: 'wayBill', width: '120px', className: 'text-center' }, |       { title: '关联订单号', render: 'wayBill', width: '180px', className: 'text-center' }, | ||||||
|       { title: '货源编号', index: 'resourceCode', width: '120px', className: 'text-center' }, |       { title: '货源编号', index: 'resourceCode', width: '180px', className: 'text-center' }, | ||||||
|       { title: '装货地', index: 'loadingPlace', width: '120px', className: 'text-center' }, |       { title: '装货地', index: 'loadingPlace', width: '180px', className: 'text-center' }, | ||||||
|       { |       { | ||||||
|         title: '卸货地', |         title: '卸货地', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         width: '120px', |         width: '180px', | ||||||
|         index: 'dischargePlace' |         index: 'dischargePlace' | ||||||
|       }, |       }, | ||||||
|      { |      { | ||||||
| @ -416,7 +416,7 @@ tabs = { | |||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         title: '创建时间', |         title: '创建时间', | ||||||
|         width: '130px', |         width: '180px', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         index: 'createTime', |         index: 'createTime', | ||||||
|       }, |       }, | ||||||
|  | |||||||
| @ -1,7 +1,7 @@ | |||||||
| <!-- | <!-- | ||||||
|  * @Author: your name |  * @Author: your name | ||||||
|  * @Date: 2021-12-03 11:10:14 |  * @Date: 2021-12-03 11:10:14 | ||||||
|  * @LastEditTime: 2021-12-22 11:31:50 |  * @LastEditTime: 2022-01-12 14:51:05 | ||||||
|  * @LastEditors: Please set LastEditors |  * @LastEditors: Please set LastEditors | ||||||
|  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE |  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE | ||||||
|  * @FilePath: \tms-obc-web\src\app\routes\supply-management\components\vehicle\vehicle.component.html |  * @FilePath: \tms-obc-web\src\app\routes\supply-management\components\vehicle\vehicle.component.html | ||||||
| @ -52,10 +52,25 @@ | |||||||
|       [res]="{ reName: { list: 'data.records', total: 'data.total' } }" |       [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]="service.http.loading"> |       [loading]="service.http.loading"> | ||||||
|       <ng-template st-row="billExpenseDetailVOList" let-item let-index="index"> |       <!-- <ng-template st-row="billExpenseDetailVOList" let-item let-index="index"> | ||||||
|         <div *ngFor="let i of item?.billExpenseDetailVOList; let ii = index"> |         <div *ngFor="let i of item?.billExpenseDetailVOList; let ii = index"> | ||||||
|           <span>{{i?.costName}}:{{i?.price}}</span> |           <span>{{i?.costName}}:{{i?.price}}</span> | ||||||
|         </div> |         </div> | ||||||
|  |       </ng-template> --> | ||||||
|  |       <ng-template st-row="billExpenseDetailVOList2" let-item let-index="index"> | ||||||
|  |         <div *ngIf="item.billExpenseDetailVOList.length > 0"> | ||||||
|  |           <p *ngFor="let data of item.billExpenseDetailVOList"> | ||||||
|  |             {{ data.costCodeLabel }}:{{ data.price }} | ||||||
|  |           </p> | ||||||
|  |         </div> | ||||||
|  |       </ng-template> | ||||||
|  |       <ng-template st-row="billExpenseDetailVOList" let-item let-index="index"> | ||||||
|  |         <div *ngIf="item.billExpenseDetailVOList.length > 0"> | ||||||
|  |           <p *ngFor="let data of item.billExpenseDetailVOList"> | ||||||
|  |             {{ data.costCodeLabel }}:{{ data.price }} | ||||||
|  |             <span style="color: #f59a63">{{ data.paymentStatusLabel }}</span> | ||||||
|  |           </p> | ||||||
|  |         </div> | ||||||
|       </ng-template> |       </ng-template> | ||||||
|       <ng-template st-row="wayBillCode" let-item let-index="index"> |       <ng-template st-row="wayBillCode" let-item let-index="index"> | ||||||
|         <a [routerLink]="'/waybill-management/vehicle-detail/'+item.id">{{item.wayBillCode}}</a> |         <a [routerLink]="'/waybill-management/vehicle-detail/'+item.id">{{item.wayBillCode}}</a> | ||||||
|  | |||||||
| @ -1,2 +1,5 @@ | |||||||
| :host { | :host ::ng-deep{ | ||||||
|  |     ::ng-deep nz-range-picker{ | ||||||
|  |         width: 100%; | ||||||
|  |     } | ||||||
| } | } | ||||||
| @ -170,7 +170,7 @@ export class WaybillManagementVehicleComponent implements OnInit { | |||||||
|                   .request(this.service.$api_get_getCarLicenseListByCarNo, { |                   .request(this.service.$api_get_getCarLicenseListByCarNo, { | ||||||
|                     carNo: q |                     carNo: q | ||||||
|                   }) |                   }) | ||||||
|                   .pipe(map((res: any[]) => (res as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) |                   .pipe(map((res: any) => (res?.records as any[]).map(i => ({ label: i.carNo, value: i.carNo } as SFSchemaEnum)))) | ||||||
|                   .toPromise(); |                   .toPromise(); | ||||||
|               } else { |               } else { | ||||||
|                 return of([]); |                 return of([]); | ||||||
| @ -307,31 +307,31 @@ export class WaybillManagementVehicleComponent implements OnInit { | |||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         title: '货主出价', |         title: '货主出价', | ||||||
|         width: '100px', |         width: '250px', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         index: 'resourceCode' |         render: 'billExpenseDetailVOList2' | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         title: '货源编号', |         title: '货源编号', | ||||||
|         width: '100px', |         width: '150px', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         index: 'resourceCode' |         index: 'resourceCode' | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         title: '运费明细', |         title: '费用明细', | ||||||
|         width: '100px', |         width: '250px', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         render: 'billExpenseDetailVOList' |         render: 'billExpenseDetailVOList' | ||||||
|       }, |       }, | ||||||
|       { title: '网络货运人', index: 'enterpriseInfoName', width: '120px', className: 'text-center' }, |       { title: '网络货运人', index: 'enterpriseInfoName', width: '180px', className: 'text-center' }, | ||||||
|       { title: '货主', index: 'shipperAppUserName', width: '120px', className: 'text-center' }, |       { title: '货主', index: 'shipperAppUserName', width: '150px', className: 'text-center' }, | ||||||
|       { title: '关联订单号', render: 'wayBill', width: '120px', className: 'text-center' }, |       { title: '关联订单号', render: 'wayBill', width: '180px', className: 'text-center' }, | ||||||
|       { title: '装货地', index: 'loadingAddressArr', width: '120px', className: 'text-center' }, |       { title: '装货地', index: 'loadingPlace', width: '180px', className: 'text-center' }, | ||||||
|       { |       { | ||||||
|         title: '卸货地', |         title: '卸货地', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         width: '120px', |         width: '180px', | ||||||
|         index: 'unloadingAddressArr' |         index: 'dischargePlace' | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         title: '货物信息', |         title: '货物信息', | ||||||
| @ -359,7 +359,7 @@ export class WaybillManagementVehicleComponent implements OnInit { | |||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         title: '创建时间', |         title: '创建时间', | ||||||
|         width: '130px', |         width: '180px', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         index: 'createTime' |         index: 'createTime' | ||||||
|       }, |       }, | ||||||
|  | |||||||
| @ -2,7 +2,7 @@ import { WaybillManagementBulkComponent } from './../components/bulk/bulk.compon | |||||||
| /* | /* | ||||||
|  * @Author: your name |  * @Author: your name | ||||||
|  * @Date: 2021-12-07 14:52:29 |  * @Date: 2021-12-07 14:52:29 | ||||||
|  * @LastEditTime: 2022-01-11 19:07:29 |  * @LastEditTime: 2022-01-12 14:34:04 | ||||||
|  * @LastEditors: Please set LastEditors |  * @LastEditors: Please set LastEditors | ||||||
|  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE |  * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE | ||||||
|  * @FilePath: \tms-obc-web\src\app\routes\waybill-management\services\waybill-management.service.ts |  * @FilePath: \tms-obc-web\src\app\routes\waybill-management\services\waybill-management.service.ts | ||||||
| @ -35,7 +35,7 @@ export class WaybillManagementServe extends BaseService { | |||||||
|     $api_get_getBulkStatistics = `/api/sdc/wayBillOperate/getBulkStatistics`; |     $api_get_getBulkStatistics = `/api/sdc/wayBillOperate/getBulkStatistics`; | ||||||
|  |  | ||||||
|       // 根据车牌号查询车辆信息 |       // 根据车牌号查询车辆信息 | ||||||
|   $api_get_getCarLicenseListByCarNo= `/api/mdc/cuc/carLicenseAudit/operate/getCarLicenseListByCarNo`; |   $api_get_getCarLicenseListByCarNo= `/api/mdc/cuc/carLicense/findCarLicenseByCarNo`; | ||||||
|    |    | ||||||
|       // 大宗确认发车 |       // 大宗确认发车 | ||||||
|   $api_get_insertBulkStartCarInfo= `/api/sdc/wayBillOperate/insertBulkStartCarInfo`; |   $api_get_insertBulkStartCarInfo= `/api/sdc/wayBillOperate/insertBulkStartCarInfo`; | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user