fix bug
This commit is contained in:
		| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2022-01-12 10:52:50 |  * @Date         : 2022-01-12 10:52:50 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @LastEditTime : 2022-01-26 11:08:44 |  * @LastEditTime : 2022-02-10 10:40:17 | ||||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\insurance-management\\components\\list\\list.component.html |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\insurance-management\\components\\list\\list.component.html | ||||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
| --> | --> | ||||||
| @ -53,7 +53,7 @@ | |||||||
|     #st |     #st | ||||||
|     [bordered]="true" |     [bordered]="true" | ||||||
|     [scroll]="{ x: '2000px' }" |     [scroll]="{ x: '2000px' }" | ||||||
|     [data]="service.$api_get_listBulkPage" |     [data]="service.$api_premiumInfo_list" | ||||||
|     [columns]="columns" |     [columns]="columns" | ||||||
|     [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' } }" | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2021-12-03 15:31:52 |  * @Date         : 2021-12-03 15:31:52 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @LastEditTime : 2022-01-25 17:23:04 |  * @LastEditTime : 2022-02-10 10:40:56 | ||||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\insurance-management\\services\\insurance-management.service.ts |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\insurance-management\\services\\insurance-management.service.ts | ||||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
|  */ |  */ | ||||||
| @ -17,12 +17,14 @@ import { map } from 'rxjs/operators'; | |||||||
|   providedIn: 'root' |   providedIn: 'root' | ||||||
| }) | }) | ||||||
| export class InsuranceManagementService extends ShipperBaseService { | export class InsuranceManagementService extends ShipperBaseService { | ||||||
|  // 获取货主企业列表 |   // 获取货主企业列表 | ||||||
|  public $api_enterpriceList = '/api/mdc/cuc/enterpriseInfo/operate/enterpriceList'; |   public $api_enterpriceList = '/api/mdc/cuc/enterpriseInfo/operate/enterpriceList'; | ||||||
|  |  // 查询保险费信息表 | ||||||
|  |   public $api_premiumInfo_list = '/api/sdc/premiumInfo/list/page'; | ||||||
|  |  | ||||||
|   |   | ||||||
|   //  查询大宗订单列表 |   //  保险费公司认证 | ||||||
|   $api_get_listBulkPage = `/api/sdc/billOperate/listBulkPage`; |   $api_get_submitAuthInfo = `/api/sdc/premiumInfo/submitAuthInfo`; | ||||||
|  |  | ||||||
|   constructor(public injector: Injector, public eaCacheSrv: EACacheService) { |   constructor(public injector: Injector, public eaCacheSrv: EACacheService) { | ||||||
|     super(injector, eaCacheSrv); |     super(injector, eaCacheSrv); | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2022-01-12 10:52:50 |  * @Date         : 2022-01-12 10:52:50 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @LastEditTime : 2022-01-25 16:52:29 |  * @LastEditTime : 2022-02-10 13:35:33 | ||||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk\\bulk.component.html |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk\\bulk.component.html | ||||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
| --> | --> | ||||||
| @ -80,7 +80,7 @@ | |||||||
|       </div> |       </div> | ||||||
|       </ng-template> |       </ng-template> | ||||||
|     <ng-template st-row="billCode" let-item let-index="index"> |     <ng-template st-row="billCode" let-item let-index="index"> | ||||||
|       <a [routerLink]="'/order-management/bulk-detail/'+item.id">{{item.billCode}}</a> |       <a [routerLink]="'bulk-detail/'+item.id">{{item.billCode}}</a> | ||||||
|       <div> |       <div> | ||||||
|         <span>{{item?.billStatusLabel}}</span> |         <span>{{item?.billStatusLabel}}</span> | ||||||
|       </div> |       </div> | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2022-01-12 10:52:50 |  * @Date         : 2022-01-12 10:52:50 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @LastEditTime : 2022-01-25 16:34:30 |  * @LastEditTime : 2022-02-10 13:36:07 | ||||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\vehicle\\vehicle.component.html |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\vehicle\\vehicle.component.html | ||||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
| --> | --> | ||||||
| @ -64,7 +64,7 @@ | |||||||
|   |   | ||||||
|     > |     > | ||||||
|     <ng-template st-row="billCode" let-item let-index="index"> |     <ng-template st-row="billCode" let-item let-index="index"> | ||||||
|       <a [routerLink]="'/order-management/vehicle-detail/'+item.id">{{item.billCode}}</a> |       <a [routerLink]="'vehicle-detail/'+item.id">{{item.billCode}}</a> | ||||||
|       <div> |       <div> | ||||||
|         <span>{{item?.billStatusLabel}}</span> |         <span>{{item?.billStatusLabel}}</span> | ||||||
|       </div> |       </div> | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2022-01-06 09:24:00 |  * @Date         : 2022-01-06 09:24:00 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @LastEditTime : 2022-01-19 17:10:16 |  * @LastEditTime : 2022-02-10 11:34:03 | ||||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\order-management-routing.module.ts |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\order-management-routing.module.ts | ||||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
|  */ |  */ | ||||||
| @ -25,10 +25,10 @@ import { OrderManagementVehicleComponent } from './components/vehicle/vehicle.co | |||||||
|  |  | ||||||
| const routes: Routes = [ | const routes: Routes = [ | ||||||
|   { path: 'vehicle', component: OrderManagementVehicleComponent }, |   { path: 'vehicle', component: OrderManagementVehicleComponent }, | ||||||
|   { path: 'vehicle-detail/:id', component: OrderManagementVehicleDetailComponent }, |   { path: 'vehicle/vehicle-detail/:id', component: OrderManagementVehicleDetailComponent }, | ||||||
|   { path: 'vehicle-detailChange/:id', component: OrderManagementVehicleDetailChangeComponent }, |   { path: 'vehicle-detailChange/:id', component: OrderManagementVehicleDetailChangeComponent }, | ||||||
|   { path: 'bulk', component: OrderManagementBulkComponent }, |   { path: 'bulk', component: OrderManagementBulkComponent }, | ||||||
|   { path: 'bulk-detail/:id', component: OrderManagementBulkeDetailComponent }, |   { path: 'bulk/bulk-detail/:id', component: OrderManagementBulkeDetailComponent }, | ||||||
|   { path: 'bulk-detailChange/:id', component: OrderManagementBulkDetailChangeComponent }, |   { path: 'bulk-detailChange/:id', component: OrderManagementBulkDetailChangeComponent }, | ||||||
|   { path: 'risk', component: OrderManagementRiskComponent }, |   { path: 'risk', component: OrderManagementRiskComponent }, | ||||||
|   { path: 'risk-detail/:id', component: OrderManagementRiskDetailComponent }, |   { path: 'risk-detail/:id', component: OrderManagementRiskDetailComponent }, | ||||||
|  | |||||||
| @ -27,7 +27,7 @@ | |||||||
|    <div> |    <div> | ||||||
|       <div sv-container> |       <div sv-container> | ||||||
|         <sv label="网络货运人">{{ i?.enterpriseInfoName }} </sv> |         <sv label="网络货运人">{{ i?.enterpriseInfoName }} </sv> | ||||||
|         <sv label="货主">{{ i?.goodsResource?.shipperAppUserName }} </sv> |         <sv label="货主">{{ i?.shippername }} </sv> | ||||||
|         <sv label="所属项目">{{i?.enterpriseProject}}</sv> |         <sv label="所属项目">{{i?.enterpriseProject}}</sv> | ||||||
|         <sv label="服务类型">{{i?.serviceTypeLabel}}</sv> |         <sv label="服务类型">{{i?.serviceTypeLabel}}</sv> | ||||||
|         <sv label="调度员">{{i?.dispatch?.name}} /{{i?.dispatch?.phone}}</sv> |         <sv label="调度员">{{i?.dispatch?.name}} /{{i?.dispatch?.phone}}</sv> | ||||||
|  | |||||||
| @ -1,7 +1,7 @@ | |||||||
| <!-- | <!-- | ||||||
|  * @Author: your name |  * @Author: your name | ||||||
|  * @Date: 2021-12-03 15:31:52 |  * @Date: 2021-12-03 15:31:52 | ||||||
|  * @LastEditTime : 2022-01-19 20:28:13 |  * @LastEditTime : 2022-02-10 11:21:55 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @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\\components\\vehicle-detail\\vehicle-detail.component.html |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\vehicle-detail\\vehicle-detail.component.html | ||||||
| @ -27,7 +27,7 @@ | |||||||
|    <div> |    <div> | ||||||
|       <div sv-container> |       <div sv-container> | ||||||
|         <sv label="网络货运人">{{ i?.enterpriseInfoName }} </sv> |         <sv label="网络货运人">{{ i?.enterpriseInfoName }} </sv> | ||||||
|         <sv label="货主">{{ i?.goodsResource?.shipperAppUserName }} </sv> |         <sv label="货主">{{ i?.shippername }} </sv> | ||||||
|         <sv label="所属项目">{{i?.enterpriseProject}}</sv> |         <sv label="所属项目">{{i?.enterpriseProject}}</sv> | ||||||
|         <sv label="服务类型">{{i?.serviceTypeLabel}}</sv> |         <sv label="服务类型">{{i?.serviceTypeLabel}}</sv> | ||||||
|         <sv label="调度员">{{i?.dispatch?.name}} /{{i?.dispatch?.phone}}</sv> |         <sv label="调度员">{{i?.dispatch?.name}} /{{i?.dispatch?.phone}}</sv> | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user