[] = [
orderManagementVoucherViewComponent,
OrderManagementComplianceAuditComponent,
OneCarOrderCancelConfirmComponent,
- OneCarOrderViewtrackComponent
+ OneCarOrderViewtrackComponent,
+ OneCarOrderAppealComponent
];
@NgModule({
diff --git a/src/app/routes/passport/components/order-agreement/order-agreement.component.html b/src/app/routes/passport/components/order-agreement/order-agreement.component.html
index 89e01a91..a9106098 100644
--- a/src/app/routes/passport/components/order-agreement/order-agreement.component.html
+++ b/src/app/routes/passport/components/order-agreement/order-agreement.component.html
@@ -4,7 +4,7 @@
* @Author : Shiming
* @Date : 2021-12-27 21:08:36
* @LastEditors : Shiming
- * @LastEditTime : 2022-02-24 10:50:46
+ * @LastEditTime : 2022-03-25 13:56:06
* @FilePath : \\tms-obc-web\\src\\app\\routes\\passport\\components\\order-agreement\\order-agreement.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved.
-->
@@ -13,7 +13,7 @@
{{ agreementContent?.agreementName }}
- 最新版本生效日期:{{ agreementContent?.modifyTime }}
-
+ 最新版本生效日期:{{ agreementContent?.modifyTime }}
+
\ No newline at end of file
diff --git a/src/app/routes/passport/components/order-agreement/order-agreement.component.ts b/src/app/routes/passport/components/order-agreement/order-agreement.component.ts
index 96ac222d..5fa44cad 100644
--- a/src/app/routes/passport/components/order-agreement/order-agreement.component.ts
+++ b/src/app/routes/passport/components/order-agreement/order-agreement.component.ts
@@ -4,7 +4,7 @@
* @Author : Shiming
* @Date : 2022-03-14 14:17:38
* @LastEditors : Shiming
- * @LastEditTime : 2022-03-24 19:19:17
+ * @LastEditTime : 2022-03-25 13:52:54
* @FilePath : \\tms-obc-web\\src\\app\\routes\\passport\\components\\order-agreement\\order-agreement.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved.
*/
diff --git a/src/app/routes/usercenter/components/freight/list/showService/showService.component.html b/src/app/routes/usercenter/components/freight/list/showService/showService.component.html
index 83ae084c..2c4deeca 100644
--- a/src/app/routes/usercenter/components/freight/list/showService/showService.component.html
+++ b/src/app/routes/usercenter/components/freight/list/showService/showService.component.html
@@ -1,16 +1,14 @@
-
客服人员
+
* 客服人员
-
-
-
-
+
+
\ No newline at end of file
diff --git a/src/app/routes/usercenter/components/freight/list/showService/showservice.component.ts b/src/app/routes/usercenter/components/freight/list/showService/showservice.component.ts
index f3e0ad5c..d0e4b01e 100644
--- a/src/app/routes/usercenter/components/freight/list/showService/showservice.component.ts
+++ b/src/app/routes/usercenter/components/freight/list/showService/showservice.component.ts
@@ -16,46 +16,38 @@ import { UsermanageService } from 'src/app/routes/usercenter/services/usercenter
})
export class ShowServiceComponent implements OnInit {
@ViewChild('sf', { static: false }) sf!: SFComponent;
+ appUserId = ''
record: any = {};
i: any;
-
+ serviceList: any = [];
constructor(
private modal: NzModalRef,
public service: UsermanageService,
- private envSrv: EAEnvironmentService,
- private eaCacheSrv: EACacheService,
) { }
ngOnInit(): void {
-
+ this.initData()
}
close(): void {
this.modal.close(true)
}
-
+initData(){
+ this.service.request(this.service.$api_getStaffList).subscribe(res => {
+ this.serviceList = res
+ })
+}
submitForm(){
- // const params:any = {
- // appUserId: this.i.appUserId,
- // ...this.sf.value,
- // bindType: this.i.bindType
- // };
- // params.carFrontPhoto = this.detailData.carFrontPhoto
- // params.carProtocal = this.detailData.carProtocal
- // params.certificatePhotoFront = this.detailData.certificatePhotoFront
- // params.certificatePhotoBack = this.detailData.certificatePhotoBack
- // params.roadTransportPhoto = this.detailData.roadTransportPhoto
- // delete params.titleA
- // delete params.titleB
- // this.checked = true
- // this.service.request(this.service.$api_updateAssistCertification, params).subscribe(res => {
- // this.checked = false
- // if(res){
- // this.service.msgSrv.success('添加成功')
- // this.modal.close(true)
- // }
- // })
+ const params:any = {
+ appUserId: this.appUserId,
+ };
+ this.service.request(this.service.$api_getStaffList, params).subscribe(res => {
+ if(res){
+ this.service.msgSrv.success('分配成功')
+ this.modal.close(true)
+ }
+ })
}
}
diff --git a/src/app/routes/usercenter/services/usercenter.service.ts b/src/app/routes/usercenter/services/usercenter.service.ts
index 07792f92..47557dbb 100644
--- a/src/app/routes/usercenter/services/usercenter.service.ts
+++ b/src/app/routes/usercenter/services/usercenter.service.ts
@@ -160,6 +160,8 @@ export class UsermanageService extends ShipperBaseService {
$api_findEnterpriceChannelRelLog = '/api/mdc/enterpriceRelLog/findEnterpriceChannelRelLog';
// 查询企业合伙人渠道关系信息
$api_getEnterpriceRel = '/api/mdc/enterpriceRelLog/getEnterpriceRel';
+ // 员工列表
+ $api_getStaffList = '/api/mdc/cuc/userApp/getStaffList';
constructor(public injector: Injector, public nzModalService: NzModalService, private nzImageService: NzImageService) {
super(injector);
diff --git a/src/app/routes/vehicle/components/audit/audit.component.ts b/src/app/routes/vehicle/components/audit/audit.component.ts
index cc18a6f5..047604d4 100644
--- a/src/app/routes/vehicle/components/audit/audit.component.ts
+++ b/src/app/routes/vehicle/components/audit/audit.component.ts
@@ -14,7 +14,7 @@ import { CarSettleCarauthComponent } from '../list/carauth/carauth.component';
})
export class VehicleComponentsAuditComponent implements OnInit {
_$expand = false;
- resourceStatus: any;
+ resourceStatus: any = 1;
defaultTabs = 1;
ui!: SFUISchema;
schema!: SFSchema;
diff --git a/src/app/routes/vehicle/components/list/list.component.ts b/src/app/routes/vehicle/components/list/list.component.ts
index ead9468e..7f81c557 100644
--- a/src/app/routes/vehicle/components/list/list.component.ts
+++ b/src/app/routes/vehicle/components/list/list.component.ts
@@ -127,6 +127,15 @@ export class VehicleComponentsListComponent implements OnInit {
}
}
},
+ carLoad: {
+ title: '载重',
+ type: 'string',
+ ui: {
+ visibleIf: {
+ expand: (value: boolean) => value
+ }
+ }
+ },
isSelf: {
type: 'string',
title: '是否挂靠',
@@ -174,7 +183,23 @@ export class VehicleComponentsListComponent implements OnInit {
expand: (value: boolean) => value
}
}
- }
+ },
+ isSelfs: {
+ type: 'string',
+ title: '是否入网',
+ enum: [
+ { label: '全部', value: '' },
+ { label: '是', value: 1 },
+ { label: '否', value: 0 }
+ ],
+ ui: {
+ widget: 'select',
+ allowClear: true,
+ visibleIf: {
+ expand: (value: boolean) => value
+ }
+ }
+ },
// putOnRecord: {
// type: 'string',
// title: '是否已备案',
@@ -211,8 +236,8 @@ export class VehicleComponentsListComponent implements OnInit {
false: { text: '空闲', color: 'default' }
}
},
- { title: '道运证', width: '150px', className: 'text-center', index: 'roadTransportNo' },
- { title: '审核人', width: '150px', className: 'text-center', index: 'approvalUserName' },
+ // { title: '道运证', width: '150px', className: 'text-center', index: 'roadTransportNo' },
+ // { title: '审核人', width: '150px', className: 'text-center', index: 'approvalUserName' },
{
title: '行驶证到期状态',
@@ -238,11 +263,11 @@ export class VehicleComponentsListComponent implements OnInit {
3: { text: '已到期', color: 'error' }
}
},
+ { title: '是否入网', width: '200px', className: 'text-center', index: 'carOwner' },
{ title: '所有人', width: '200px', className: 'text-center', index: 'carOwner' },
{ title: '是否挂靠', width: '150px', className: 'text-center', render: 'isSelf' },
{ title: '挂靠协议', width: '150px', className: 'text-center', render: 'approvalAuditStatus' },
// { title: '是否已备案', className: 'text-center', render: 'putOnRecord', },
-
{
title: '操作',
fixed: 'right',
diff --git a/src/app/routes/waybill-management/components/bulk/bulk.component.ts b/src/app/routes/waybill-management/components/bulk/bulk.component.ts
index 95320b9e..83dcd1f2 100644
--- a/src/app/routes/waybill-management/components/bulk/bulk.component.ts
+++ b/src/app/routes/waybill-management/components/bulk/bulk.component.ts
@@ -84,6 +84,13 @@ export class WaybillManagementBulkComponent implements OnInit {
placeholder: '最多100个运单,空号隔开'
}
},
+ billCode: {
+ type: 'string',
+ title: '订单号',
+ ui: {
+ placeholder: '最多100个单号,空号隔开'
+ }
+ },
resourceCode: {
type: 'string',
title: '货源编号'
diff --git a/src/app/routes/waybill-management/components/vehicle/vehicle.component.ts b/src/app/routes/waybill-management/components/vehicle/vehicle.component.ts
index 7e69667e..82410cf3 100644
--- a/src/app/routes/waybill-management/components/vehicle/vehicle.component.ts
+++ b/src/app/routes/waybill-management/components/vehicle/vehicle.component.ts
@@ -82,6 +82,13 @@ export class WaybillManagementVehicleComponent implements OnInit {
placeholder: '最多100个运单,空号隔开'
}
},
+ billCode: {
+ type: 'string',
+ title: '订单号',
+ ui: {
+ placeholder: '最多100个单号,空号隔开'
+ }
+ },
resourceCode: {
type: 'string',
title: '货源编号'