diff --git a/src/app/routes/datatable/reporting/components/fund-reporting/fund-reporting.component.ts b/src/app/routes/datatable/reporting/components/fund-reporting/fund-reporting.component.ts index 0ccfd57d..55fb8aa8 100644 --- a/src/app/routes/datatable/reporting/components/fund-reporting/fund-reporting.component.ts +++ b/src/app/routes/datatable/reporting/components/fund-reporting/fund-reporting.component.ts @@ -468,8 +468,10 @@ export class DatatableFundReportingComponent implements OnInit { routeToOrder(item: any) { if (item.orderType === '1') { window.open(location.origin + `/#/order-management/vehicle/vehicle-detail/${item.orderId}`); - } else { + } else if (item.orderType === '2') { window.open(location.origin + `/#/order-management/bulk/bulk-detail/${item.orderId}`); + } else if (item.orderType === '3'){ + this.router.navigate(['/order-management/vehicle/vehicle-detail/' + item.orderId]); } } @@ -477,9 +479,11 @@ export class DatatableFundReportingComponent implements OnInit { if (item.orderType === '1') { window.open(location.origin + `/#/waybill-management/vehicle/vehicle-detail/${item.wayBillId}`); - } else { + } else if (item.orderType === '2') { window.open(location.origin + `/#/waybill-management/bulk/bulk-detail/${item.wayBillId}`); + } else if (item.orderType === '3') { + window.open(location.origin + `/#/waybill-management/vehicle/vehicle-detail/${item.wayBillId}`); } } diff --git a/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts b/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts index 9e87d018..a01eefb1 100644 --- a/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts +++ b/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts @@ -599,8 +599,10 @@ export class DatatableOrderReportingComponent implements OnInit { routeToOrder(item: any) { if (item.billType === '1') { window.open(location.origin + `/#/order-management/vehicle/vehicle-detail/${item.orderId}`); - } else { + } else if (item.billType === '2') { window.open(location.origin + `/#/order-management/bulk/bulk-detail/${item.orderId}`); + } else if (item.billType === '3') { + window.open(location.origin + `/#/order-management/vehicle/vehicle-detail/${item.orderId}`); } } @@ -608,8 +610,10 @@ export class DatatableOrderReportingComponent implements OnInit { if (item.billType === '1') { window.open(location.origin + `/#/waybill-management/vehicle/vehicle-detail/${item.waybillId}`); - } else { + } else if (item.billType === '2') { window.open(location.origin + `/#/waybill-management/bulk/bulk-detail/${item.waybillId}`); + } else if (item.billType === '3') { + window.open(location.origin + `/#/waybill-management/vehicle/vehicle-detail/${item.waybillId}`); } } diff --git a/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html b/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html index 483095f1..427b94f6 100644 --- a/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html +++ b/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html @@ -174,15 +174,11 @@ - + [nzBorderless]="true" class="mb0">
运费信息 diff --git a/src/app/routes/partner/partner-list/components/index/partner-list.component.ts b/src/app/routes/partner/partner-list/components/index/partner-list.component.ts index 31081842..0bc0d204 100644 --- a/src/app/routes/partner/partner-list/components/index/partner-list.component.ts +++ b/src/app/routes/partner/partner-list/components/index/partner-list.component.ts @@ -281,10 +281,13 @@ export class PartnerListComponent { approvalStatus: { type: 'string', title: '认证审核状态', + enum: [ + { value: '', label: '全部' }, + { value: 1, label: '企业' }, + { value: 2, label: '个人' } + ], ui: { - widget: 'dict-select', - containsAllLabel: true, - params: { dictKey: 'pay:mode' }, + widget: 'select', placeholder: '请选择', visibleIf: { expand: (value: boolean) => value @@ -350,7 +353,7 @@ export class PartnerListComponent { title: '合伙人状态', enum: [ { value: '', label: '全部' }, - { value: 0, label: '启用' }, + { value: 0, label: '正常' }, { value: 1, label: '冻结' } ], ui: { diff --git a/src/app/routes/sys-setting/components/announcement-message/announcement-message.component.ts b/src/app/routes/sys-setting/components/announcement-message/announcement-message.component.ts index 1ed294e6..b1a8ca59 100644 --- a/src/app/routes/sys-setting/components/announcement-message/announcement-message.component.ts +++ b/src/app/routes/sys-setting/components/announcement-message/announcement-message.component.ts @@ -131,10 +131,10 @@ export class AnnouncementMessageComponent implements OnInit { // { label: '运营后台', value: this.envSrv.env.appId }, // { label: '货主后台', value: this.envSrv.env.HzappId }, // { label: '司机端', value: this.envSrv.env.sjappId } - { label: '全平台', value: 0}, - { label: '运营后台', value: 3}, - { label: '货主后台', value: 2 }, - { label: '司机端', value: 1 }, + { label: '全平台', value: '0'}, + { label: '运营后台', value: '3'}, + { label: '货主后台', value: '2' }, + { label: '司机端', value: '1' }, ], ui: { widget: 'select', diff --git a/src/app/routes/usercenter/components/freight/list/list.component.ts b/src/app/routes/usercenter/components/freight/list/list.component.ts index a1d88f29..2d8995c3 100644 --- a/src/app/routes/usercenter/components/freight/list/list.component.ts +++ b/src/app/routes/usercenter/components/freight/list/list.component.ts @@ -339,7 +339,8 @@ export class FreightComponentsListComponent extends BasicTableComponent implemen enum: [ { label: '全部', value: '' }, { label: '货主注册', value: 1 }, - { label: '平台添加', value: 2 } + { label: '平台添加', value: 2 }, + { label: '数据迁移', value: 4 }, ], default: '', ui: { @@ -411,7 +412,7 @@ export class FreightComponentsListComponent extends BasicTableComponent implemen className: 'text-center', index: 'source', type: 'enum', - enum: { 1: '货主注册', 2: '平台添加', 3: '运营添加' }, + enum: { 1: '货主注册', 2: '平台添加', 3: '运营添加', 4: '数据迁移' }, width: 130 }, { title: '申请时间', className: 'text-center', index: 'createTime', width: 180, type: 'date' }, diff --git a/src/app/routes/vehicle/components/list/detail/detail.component.html b/src/app/routes/vehicle/components/list/detail/detail.component.html index 187882d1..212d273e 100644 --- a/src/app/routes/vehicle/components/list/detail/detail.component.html +++ b/src/app/routes/vehicle/components/list/detail/detail.component.html @@ -190,7 +190,6 @@ {{detailData?.carOwner }} - <<<<<<< HEAD=======>>>>>>> 6d503f57e2434e5c0a0baa406ac42fe2b7a8a9b5