This commit is contained in:
wangshiming
2022-03-25 16:22:44 +08:00
parent 54ba0288e1
commit a115d81fa7
3 changed files with 199 additions and 178 deletions

View File

@ -2,9 +2,9 @@
* @Description : * @Description :
* @Version : 1.0 * @Version : 1.0
* @Author : Shiming * @Author : Shiming
* @Date : 2022-02-16 10:09:23 * @Date : 2022-03-14 14:17:38
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-02-16 10:14:29 * @LastEditTime : 2022-03-25 16:22:32
* @FilePath : \\tms-obc-web\\src\\app\\routes\\vehicle\\components\\list\\carauth\\carauth.component.html * @FilePath : \\tms-obc-web\\src\\app\\routes\\vehicle\\components\\list\\carauth\\carauth.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
@ -32,12 +32,16 @@
<div class="pa"><img width="190" src="/assets/images/vehicle/driverback.png" /></div> <div class="pa"><img width="190" src="/assets/images/vehicle/driverback.png" /></div>
</div> </div>
</ng-template> </ng-template>
<ng-template sf-template="roadImg" let-me let-ui="ui" let-schema="schema">
<img height="104" src="/assets/images/vehicle/road.png" class="borderImg" />
</ng-template>
<ng-template sf-template="agreeImg" let-me let-ui="ui" let-schema="schema">
<img height="104" src="/assets/images/vehicle/agreement.png" class="borderImg" />
</ng-template>
</sf> </sf>
<img class="drivercard" height="104" src="/assets/images/vehicle/car.png" /> <img class="drivercard borderImg" height="104" src="/assets/images/vehicle/car.png" />
<img class="agreement" height="104" src="/assets/images/vehicle/agreement.png" />
<img class="jopcard" height="104" src="/assets/images/vehicle/road.png" />
</div>
<div class="modal-footer"> <div class="modal-footer">
<button nz-button type="button" (click)="close()">关闭</button> <button nz-button type="button" (click)="close()">关闭</button>
<button nz-button type="button" nzType="primary" (click)="submitForm()" [disabled]="!sf?.valid">确定</button> <button nz-button type="button" nzType="primary" (click)="submitForm()" [disabled]="!(sf?.valid && i.flag !== 'view')" [nzLoading]="service.http.loading">确定</button>
</div> </div>

View File

@ -75,7 +75,7 @@
.pa { .pa {
position: absolute; position: absolute;
top: 35px; top: 35px;
left: 150px; left: 140px;
} }
.tips { .tips {
@ -96,7 +96,7 @@
.drivercard{ .drivercard{
position: absolute; position: absolute;
top: 0; top: 0;
left: 330px; left: 325px;
border: solid 1px #ebf0fb; border: solid 1px #ebf0fb;
} }
.jopcard{ .jopcard{
@ -113,11 +113,17 @@
} }
:host{ :host{
::ng-deep { ::ng-deep {
.ant-input-borderless{ .ant-input-borderless{
padding: 0; padding: 0;
padding-top: 4px; padding-top: 4px;
color: black; color: black;
resize:none; resize:none;
} }
.setCustom .ant-form-item-control{
margin-left: -100px !important
}
.borderImg{
border: solid 1px #ebf0fb;
}
} }
} }

View File

@ -24,38 +24,37 @@ export class CarSettleCarauthComponent implements OnInit {
showJopFlag = false; showJopFlag = false;
companyData: any = {}; companyData: any = {};
detailData: any = {}; detailData: any = {};
carNo = ''; carNo = ''
constructor( constructor(
private modal: NzModalRef, private modal: NzModalRef,
public service: VehicleService, public service: VehicleService,
private envSrv: EAEnvironmentService, private envSrv: EAEnvironmentService,
private eaCacheSrv: EACacheService private eaCacheSrv: EACacheService,
) {} ) { }
ngOnInit(): void { ngOnInit(): void {
console.log(this.i) this.initData()
this.initData(); this.initSF()
this.initSF();
} }
initData() { initData() {
if (this.i?.id) { if (this.i.id) {
this.companyData = this.eaCacheSrv.get(cacheConf.env); this.companyData = this.eaCacheSrv.get(cacheConf.env)
const params = { const params = {
id: this.i?.id id: this.i.id,
}; }
this.service.request(this.service.$api_shipperCarGet, params).subscribe(res => { this.service.request(this.service.$api_shipperCarGet, params).subscribe(res => {
this.detailData = res; this.detailData = res
this.detailData.isSelf = res.isSelf ? 1 : 0; this.detailData.isSelf = res.isSelf ? 1 : 0
this.detailData.isTrailer = res.isTrailer ? 1 : 0; this.detailData.isTrailer = res.isTrailer ? 1 : 0
this.detailData.carFrontPhotoWatermark = [ this.detailData.carFrontPhotoWatermark = [
{ {
uid: -1, uid: -1,
name: 'LOGO', name: 'LOGO',
status: 'done', status: 'done',
url: this.detailData.carFrontPhotoWatermark, url: this.detailData.carFrontPhotoWatermark,
response: this.detailData.carFrontPhotoWatermark response: this.detailData.carFrontPhotoWatermark,
} },
]; ];
this.detailData.carProtocalWatermark = [ this.detailData.carProtocalWatermark = [
{ {
@ -63,8 +62,8 @@ export class CarSettleCarauthComponent implements OnInit {
name: 'LOGO', name: 'LOGO',
status: 'done', status: 'done',
url: this.detailData.carProtocalWatermark, url: this.detailData.carProtocalWatermark,
response: this.detailData.carProtocalWatermark response: this.detailData.carProtocalWatermark,
} },
]; ];
this.detailData.certificatePhotoFrontWatermark = [ this.detailData.certificatePhotoFrontWatermark = [
{ {
@ -72,8 +71,8 @@ export class CarSettleCarauthComponent implements OnInit {
name: 'LOGO', name: 'LOGO',
status: 'done', status: 'done',
url: this.detailData.certificatePhotoFrontWatermark, url: this.detailData.certificatePhotoFrontWatermark,
response: this.detailData.certificatePhotoFrontWatermark response: this.detailData.certificatePhotoFrontWatermark,
} },
]; ];
this.detailData.certificatePhotoBackWatermark = [ this.detailData.certificatePhotoBackWatermark = [
{ {
@ -81,8 +80,8 @@ export class CarSettleCarauthComponent implements OnInit {
name: 'LOGO', name: 'LOGO',
status: 'done', status: 'done',
url: this.detailData.certificatePhotoBackWatermark, url: this.detailData.certificatePhotoBackWatermark,
response: this.detailData.certificatePhotoBackWatermark response: this.detailData.certificatePhotoBackWatermark,
} },
]; ];
this.detailData.roadTransportPhotoWatermark = [ this.detailData.roadTransportPhotoWatermark = [
{ {
@ -90,10 +89,10 @@ export class CarSettleCarauthComponent implements OnInit {
name: 'LOGO', name: 'LOGO',
status: 'done', status: 'done',
url: this.detailData.roadTransportPhotoWatermark, url: this.detailData.roadTransportPhotoWatermark,
response: this.detailData.roadTransportPhotoWatermark response: this.detailData.roadTransportPhotoWatermark,
} },
]; ];
}); })
} }
} }
initSF() { initSF() {
@ -104,7 +103,7 @@ export class CarSettleCarauthComponent implements OnInit {
title: '车头照照片', title: '车头照照片',
ui: { ui: {
action: apiConf.fileUpload, action: apiConf.fileUpload,
fileType: 'image/png,image/jpeg,image/jpg,image/gif', accept: 'image/png,image/jpeg,image/jpg,image/gif',
limit: 1, limit: 1,
limitFileCount: 1, limitFileCount: 1,
resReName: 'data.fullFileWatermarkPath', resReName: 'data.fullFileWatermarkPath',
@ -112,21 +111,21 @@ export class CarSettleCarauthComponent implements OnInit {
widget: 'upload', widget: 'upload',
descriptionI18n: '请上传车头照照片支持JPG、PNG格式文件小于5M。', descriptionI18n: '请上传车头照照片支持JPG、PNG格式文件小于5M。',
data: { data: {
appId: this.envSrv.env.appId appId: this.envSrv.env.appId,
}, },
name: 'multipartFile', name: 'multipartFile',
multiple: false, multiple: false,
listType: 'picture-card', listType: 'picture-card',
change: (args: any) => { change: (args: any) => {
if (args.type === 'success') { if (args.type === 'success') {
this.detailData.carFrontPhoto = args.file.response.data.fullFilePath; this.detailData.carFrontPhoto = args.file.response.data.fullFilePath
} }
}, },
beforeUpload: (file: any, _fileList: any) => { beforeUpload: (file: any, _fileList: any) => {
return new Observable((observer: Observer<boolean>) => { return new Observable((observer: Observer<boolean>) => {
const isLt2M = file.size / 1024 / 1024 < 2; const isLt2M = file.size / 1024 / 1024 < 5;
if (!isLt2M) { if (!isLt2M) {
this.service.msgSrv.warning('图片大小超过2M!'); this.service.msgSrv.warning('图片大小超过5M!');
observer.complete(); observer.complete();
return; return;
} }
@ -134,7 +133,7 @@ export class CarSettleCarauthComponent implements OnInit {
observer.complete(); observer.complete();
}); });
}, },
// previewFile: (file: NzUploadFile) => of(file.url) previewFile: (file: NzUploadFile) => of(file.url),
} }
}, },
carNo: { carNo: {
@ -142,8 +141,8 @@ export class CarSettleCarauthComponent implements OnInit {
maxLength: 9, maxLength: 9,
type: 'string', type: 'string',
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
}, },
carNoColor: { carNoColor: {
title: '车牌颜色', title: '车牌颜色',
@ -151,9 +150,9 @@ export class CarSettleCarauthComponent implements OnInit {
ui: { ui: {
widget: 'dict-select', widget: 'dict-select',
params: { dictKey: 'car:color' }, params: { dictKey: 'car:color' },
placeholder: '请选择车', placeholder: '请选择车牌颜色',
containsAllLabel: false containsAllLabel:false,
} as SFSelectWidgetSchema } as SFSelectWidgetSchema,
}, },
carModel: { carModel: {
title: '车型', title: '车型',
@ -162,8 +161,8 @@ export class CarSettleCarauthComponent implements OnInit {
widget: 'dict-select', widget: 'dict-select',
params: { dictKey: 'car:model' }, params: { dictKey: 'car:model' },
placeholder: '请选择车型', placeholder: '请选择车型',
containsAllLabel: false containsAllLabel:false,
} as SFSelectWidgetSchema } as SFSelectWidgetSchema,
}, },
carLength: { carLength: {
title: '车长', title: '车长',
@ -172,8 +171,8 @@ export class CarSettleCarauthComponent implements OnInit {
widget: 'dict-select', widget: 'dict-select',
params: { dictKey: 'car:length' }, params: { dictKey: 'car:length' },
placeholder: '请选择车长', placeholder: '请选择车长',
containsAllLabel: false containsAllLabel:false,
} as SFSelectWidgetSchema } as SFSelectWidgetSchema,
}, },
carLoad: { carLoad: {
title: '载重', title: '载重',
@ -181,10 +180,11 @@ export class CarSettleCarauthComponent implements OnInit {
maxLength: 6, maxLength: 6,
ui: { ui: {
placeholder: '请输入', placeholder: '请输入',
change: (val: any) => { addOnAfter: '吨',
const value = val.replace(/\D/g, ''); change: (val: any) =>{
this.sf.setValue('/carLoad', value); const value = val.replace(/\D/g,'')
} this.sf.setValue('/carLoad', value)
},
} }
}, },
isSelf: { isSelf: {
@ -192,11 +192,11 @@ export class CarSettleCarauthComponent implements OnInit {
type: 'string', type: 'string',
enum: [ enum: [
{ label: '否', value: 0 }, { label: '否', value: 0 },
{ label: '是', value: 1 } { label: '是', value: 1 },
], ],
ui: { ui: {
widget: 'select', widget: 'select',
placeholder: '请选择' placeholder: '请选择',
} }
}, },
isTrailer: { isTrailer: {
@ -204,11 +204,11 @@ export class CarSettleCarauthComponent implements OnInit {
type: 'string', type: 'string',
enum: [ enum: [
{ label: '否', value: 0 }, { label: '否', value: 0 },
{ label: '是', value: 1 } { label: '是', value: 1 },
], ],
ui: { ui: {
widget: 'select', widget: 'select',
placeholder: '请选择' placeholder: '请选择',
} }
}, },
carProtocalWatermark: { carProtocalWatermark: {
@ -216,7 +216,7 @@ export class CarSettleCarauthComponent implements OnInit {
title: '挂靠协议', title: '挂靠协议',
ui: { ui: {
action: apiConf.fileUpload, action: apiConf.fileUpload,
fileType: 'image/png,image/jpeg,image/jpg,image/gif', accept: 'image/png,image/jpeg,image/jpg,image/gif',
limit: 1, limit: 1,
limitFileCount: 1, limitFileCount: 1,
resReName: 'data.fullFileWatermarkPath', resReName: 'data.fullFileWatermarkPath',
@ -224,14 +224,14 @@ export class CarSettleCarauthComponent implements OnInit {
widget: 'upload', widget: 'upload',
descriptionI18n: '请上传挂靠协议支持JPG、PNG格式文件小于5M。', descriptionI18n: '请上传挂靠协议支持JPG、PNG格式文件小于5M。',
data: { data: {
appId: this.envSrv.env.appId appId: this.envSrv.env.appId,
}, },
name: 'multipartFile', name: 'multipartFile',
multiple: false, multiple: false,
listType: 'picture-card', listType: 'picture-card',
change: (args: any) => { change: (args: any) => {
if (args.type === 'success') { if (args.type === 'success') {
this.detailData.certificatePhotoFront = args.file.response.data.fullFilePath; this.detailData.certificatePhotoFront = args.file.response.data.fullFilePath
} }
}, },
beforeUpload: (file: any, _fileList: any) => { beforeUpload: (file: any, _fileList: any) => {
@ -246,31 +246,39 @@ export class CarSettleCarauthComponent implements OnInit {
observer.complete(); observer.complete();
}); });
}, },
// previewFile: (file: NzUploadFile) => of(file.url) previewFile: (file: NzUploadFile) => of(file.url),
}
},
agreeImg: {
title: '',
type: 'boolean',
// enum: [{ label: '长期', value: true }],
ui: {
widget: 'custom',
} }
}, },
titleA: { titleA: {
title: '行驶证信息(必填)', title: '行驶证信息(必填)',
type: 'string', type: 'string',
ui: { ui: {
widget: 'text' widget: 'text',
}, },
default: '照片上传后会自动识别文字并填充下列内容栏' default: '照片上传后会自动识别文字并填充下列内容栏',
}, },
tipsA: { tipsA: {
title: '', title: '',
type: 'string', type: 'string',
ui: { ui: {
widget: 'custom', widget: 'custom',
offsetControl: 6 offsetControl: 6,
} },
}, },
certificatePhotoFrontWatermark: { certificatePhotoFrontWatermark: {
type: 'string', type: 'string',
title: '行驶证首页照片', title: '行驶证首页照片',
ui: { ui: {
action: apiConf.fileUpload, action: apiConf.fileUpload,
fileType: 'image/png,image/jpeg,image/jpg,image/gif', accept: 'image/png,image/jpeg,image/jpg,image/gif',
limit: 1, limit: 1,
limitFileCount: 1, limitFileCount: 1,
resReName: 'data.fullFileWatermarkPath', resReName: 'data.fullFileWatermarkPath',
@ -278,24 +286,24 @@ export class CarSettleCarauthComponent implements OnInit {
widget: 'upload', widget: 'upload',
descriptionI18n: '请上传行驶证首页照片支持JPG、PNG格式文件小于5M。照片信息缺失、拼凑、过度PS、模糊不清都不会通过审核。', descriptionI18n: '请上传行驶证首页照片支持JPG、PNG格式文件小于5M。照片信息缺失、拼凑、过度PS、模糊不清都不会通过审核。',
data: { data: {
appId: this.envSrv.env.appId appId: this.envSrv.env.appId,
}, },
name: 'multipartFile', name: 'multipartFile',
multiple: false, multiple: false,
listType: 'picture-card', listType: 'picture-card',
change: (args: any) => { change: (args: any) => {
if (args.type === 'success') { if (args.type === 'success') {
this.detailData.certificatePhotoFront = args.file.response.data.fullFilePath; this.detailData.certificatePhotoFront = args.file.response.data.fullFilePath
this.checkCarCard(args.file.response.data.fullFilePath, 'front'); this.checkCarCard(args.file.response.data.fullFilePath, 'front');
} else { } else {
this.detailData.certificatePhotoFront = ''; this.detailData.certificatePhotoFront = ''
} }
}, },
beforeUpload: (file: any, _fileList: any) => { beforeUpload: (file: any, _fileList: any) => {
return new Observable((observer: Observer<boolean>) => { return new Observable((observer: Observer<boolean>) => {
const isLt2M = file.size / 1024 / 1024 < 2; const isLt2M = file.size / 1024 / 1024 < 5;
if (!isLt2M) { if (!isLt2M) {
this.service.msgSrv.warning('图片大小超过2M!'); this.service.msgSrv.warning('图片大小超过5M!');
observer.complete(); observer.complete();
return; return;
} }
@ -303,7 +311,7 @@ export class CarSettleCarauthComponent implements OnInit {
observer.complete(); observer.complete();
}); });
}, },
// previewFile: (file: NzUploadFile) => of(file.url) previewFile: (file: NzUploadFile) => of(file.url),
} }
}, },
tipsB: { tipsB: {
@ -311,15 +319,15 @@ export class CarSettleCarauthComponent implements OnInit {
type: 'string', type: 'string',
ui: { ui: {
widget: 'custom', widget: 'custom',
offsetControl: 6 offsetControl: 6,
} },
}, },
certificatePhotoBackWatermark: { certificatePhotoBackWatermark: {
type: 'string', type: 'string',
title: '行驶证副页照片', title: '行驶证副页照片',
ui: { ui: {
action: apiConf.fileUpload, action: apiConf.fileUpload,
fileType: 'image/png,image/jpeg,image/jpg,image/gif', accept: 'image/png,image/jpeg,image/jpg,image/gif',
limit: 1, limit: 1,
limitFileCount: 1, limitFileCount: 1,
resReName: 'data.fullFileWatermarkPath', resReName: 'data.fullFileWatermarkPath',
@ -327,24 +335,24 @@ export class CarSettleCarauthComponent implements OnInit {
widget: 'upload', widget: 'upload',
descriptionI18n: '请上传行驶证副业照片支持JPG、PNG格式文件小于5M。', descriptionI18n: '请上传行驶证副业照片支持JPG、PNG格式文件小于5M。',
data: { data: {
appId: this.envSrv.env.appId appId: this.envSrv.env.appId,
}, },
name: 'multipartFile', name: 'multipartFile',
multiple: false, multiple: false,
listType: 'picture-card', listType: 'picture-card',
change: (args: any) => { change: (args: any) => {
if (args.type === 'success') { if (args.type === 'success') {
this.detailData.certificatePhotoBack = args.file.response.data.fullFilePath; this.detailData.certificatePhotoBack = args.file.response.data.fullFilePath
this.checkCarCard(args.file.response.data.fullFilePath, 'back'); this.checkCarCard(args.file.response.data.fullFilePath, 'back');
} else { } else {
this.detailData.certificatePhotoBack = ''; this.detailData.certificatePhotoBack = ''
} }
}, },
beforeUpload: (file: any, _fileList: any) => { beforeUpload: (file: any, _fileList: any) => {
return new Observable((observer: Observer<boolean>) => { return new Observable((observer: Observer<boolean>) => {
const isLt2M = file.size / 1024 / 1024 < 2; const isLt2M = file.size / 1024 / 1024 < 5;
if (!isLt2M) { if (!isLt2M) {
this.service.msgSrv.warning('图片大小超过2M!'); this.service.msgSrv.warning('图片大小超过5M!');
observer.complete(); observer.complete();
return; return;
} }
@ -352,7 +360,7 @@ export class CarSettleCarauthComponent implements OnInit {
observer.complete(); observer.complete();
}); });
}, },
// previewFile: (file: NzUploadFile) => of(file.url) previewFile: (file: NzUploadFile) => of(file.url),
} }
}, },
driverLicenseRegisterTime: { driverLicenseRegisterTime: {
@ -360,16 +368,16 @@ export class CarSettleCarauthComponent implements OnInit {
type: 'string', type: 'string',
format: 'date', format: 'date',
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
}, },
driverLicenseGetTime: { driverLicenseGetTime: {
title: '行驶证发证日期', title: '行驶证发证日期',
type: 'string', type: 'string',
format: 'date', format: 'date',
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
}, },
driverLicenseEndTime: { driverLicenseEndTime: {
title: '行驶证到期日期', title: '行驶证到期日期',
@ -377,24 +385,24 @@ export class CarSettleCarauthComponent implements OnInit {
format: 'date', format: 'date',
maxLength: 30, maxLength: 30,
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
}, },
driverLicenseSigningOrg: { driverLicenseSigningOrg: {
title: '行驶证签发机关', title: '行驶证签发机关',
type: 'string', type: 'string',
maxLength: 30, maxLength: 30,
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
}, },
carDistinguishCode: { carDistinguishCode: {
title: '车辆识别代码', title: '车辆识别代码',
type: 'string', type: 'string',
maxLength: 30, maxLength: 30,
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
}, },
useNature: { useNature: {
title: '使用性质', title: '使用性质',
@ -402,42 +410,42 @@ export class CarSettleCarauthComponent implements OnInit {
maxLength: 30, maxLength: 30,
enum: [ enum: [
{ label: '非营运', value: 0 }, { label: '非营运', value: 0 },
{ label: '营运', value: 1 } { label: '营运', value: 1 },
], ],
ui: { ui: {
widget: 'select', widget: 'select',
placeholder: '请选择' placeholder: '请选择',
} },
}, },
curbWeight: { curbWeight: {
title: '整备质量', title: '整备质量',
type: 'string', type: 'string',
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
}, },
carOwner: { carOwner: {
title: '所有人', title: '所有人',
type: 'string', type: 'string',
maxLength: 30, maxLength: 30,
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
}, },
titleB: { titleB: {
title: '道运证(选填)', title: '道运证(选填)',
type: 'string', type: 'string',
ui: { ui: {
widget: 'text' widget: 'text',
}, },
default: '照片上传后会自动识别文字并填充下列内容栏' default: '照片上传后会自动识别文字并填充下列内容栏',
}, },
roadTransportPhotoWatermark: { roadTransportPhotoWatermark: {
type: 'string', type: 'string',
title: '道运证照片', title: '道运证照片',
ui: { ui: {
action: apiConf.fileUpload, action: apiConf.fileUpload,
fileType: 'image/png,image/jpeg,image/jpg,image/gif', accept: 'image/png,image/jpeg,image/jpg,image/gif',
limit: 1, limit: 1,
limitFileCount: 1, limitFileCount: 1,
resReName: 'data.fullFileWatermarkPath', resReName: 'data.fullFileWatermarkPath',
@ -445,24 +453,24 @@ export class CarSettleCarauthComponent implements OnInit {
widget: 'upload', widget: 'upload',
descriptionI18n: '请上传道运证照片支持JPG、PNG格式文件小于5M。蓝牌绿牌车辆可不用传道运证', descriptionI18n: '请上传道运证照片支持JPG、PNG格式文件小于5M。蓝牌绿牌车辆可不用传道运证',
data: { data: {
appId: this.envSrv.env.appId appId: this.envSrv.env.appId,
}, },
name: 'multipartFile', name: 'multipartFile',
multiple: false, multiple: false,
listType: 'picture-card', listType: 'picture-card',
change: (args: any) => { change: (args: any) => {
if (args.type === 'success') { if (args.type === 'success') {
this.detailData.roadTransportPhoto = args.file.response.data.fullFilePath; this.detailData.roadTransportPhoto = args.file.response.data.fullFilePath
this.checkTransCard(args.file.response.data.fullFilePath); this.checkTransCard(args.file.response.data.fullFilePath);
} else { } else {
this.detailData.roadTransportPhoto = ''; this.detailData.roadTransportPhoto = ''
} }
}, },
beforeUpload: (file: any, _fileList: any) => { beforeUpload: (file: any, _fileList: any) => {
return new Observable((observer: Observer<boolean>) => { return new Observable((observer: Observer<boolean>) => {
const isLt2M = file.size / 1024 / 1024 < 2; const isLt2M = file.size / 1024 / 1024 < 5;
if (!isLt2M) { if (!isLt2M) {
this.service.msgSrv.warning('图片大小超过2M!'); this.service.msgSrv.warning('图片大小超过5M!');
observer.complete(); observer.complete();
return; return;
} }
@ -470,7 +478,15 @@ export class CarSettleCarauthComponent implements OnInit {
observer.complete(); observer.complete();
}); });
}, },
// previewFile: (file: NzUploadFile) => of(file.url) previewFile: (file: NzUploadFile) => of(file.url),
}
},
roadImg: {
title: '',
type: 'boolean',
// enum: [{ label: '长期', value: true }],
ui: {
widget: 'custom',
} }
}, },
roadTransportNo: { roadTransportNo: {
@ -479,8 +495,8 @@ export class CarSettleCarauthComponent implements OnInit {
maxLength: 30, maxLength: 30,
ui: { ui: {
// widget: this.detailData.commitFlag !== 0 ? 'text' : '', // widget: this.detailData.commitFlag !== 0 ? 'text' : '',
placeholder: '请输入' placeholder: '请输入',
} },
}, },
roadTransportLicenceNo: { roadTransportLicenceNo: {
title: '经营许可证号', title: '经营许可证号',
@ -488,25 +504,25 @@ export class CarSettleCarauthComponent implements OnInit {
maxLength: 30, maxLength: 30,
ui: { ui: {
// widget: this.detailData.commitFlag !== 0 ? 'text' : '', // widget: this.detailData.commitFlag !== 0 ? 'text' : '',
placeholder: '请输入' placeholder: '请输入',
} },
}, },
roadTransportStartTime: { roadTransportStartTime: {
title: '发证日期', title: '发证日期',
type: 'string', type: 'string',
format: 'date', format: 'date',
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
}, },
roadTransportEndTime: { roadTransportEndTime: {
title: '有效期至', title: '有效期至',
type: 'string', type: 'string',
format: 'date', format: 'date',
ui: { ui: {
placeholder: '请输入' placeholder: '请输入',
} },
} },
}, },
required: [ required: [
'carFrontPhotoWatermark', 'carFrontPhotoWatermark',
@ -526,62 +542,61 @@ export class CarSettleCarauthComponent implements OnInit {
'carDistinguishCode', 'carDistinguishCode',
'useNature', 'useNature',
'carOwner' 'carOwner'
] ],
}; };
this.ui = { this.ui = {
'*': { '*': {
spanLabelFixed: 180, spanLabelFixed: 180,
grid: { span: 18 }, grid: { span: 18 },
width: 600 width: 600,
}, },
$title1: { $title1: {
spanLabelFixed: 0 spanLabelFixed: 0,
}, },
$title2: { $title2: {
spanLabelFixed: 0 spanLabelFixed: 0,
}, },
$title3: { $title3: {
spanLabelFixed: 0 spanLabelFixed: 0,
}, },
$enterpriseRegistrationTime: { $isTrailer:{
width: 680 grid: { span: 24 },
}, },
$operatingEndTime: { $carProtocalWatermark: {
grid: { span: 9 } grid: { span:12 },
}, },
$dateType: { $agreeImg: {
grid: { span: 4 } grid: { span: 4 },
class: 'setCustom'
}, },
$validEndTime: { $titleB:{
grid: { span: 9 } grid: { span: 24 },
}, },
$dateType01: { $roadTransportPhotoWatermark: {
grid: { span: 4 } grid: { span: 12 },
}, },
$registrationCapital: { $roadImg: {
grid: { span: 12 } grid: { span: 4 },
class: 'setCustom'
}, },
$unit: {
spanLabelFixed: 20,
grid: { span: 3 }
}
}; };
} }
// 道路运输证识别 // 道路运输证识别
checkTransCard(imgurl: any) { checkTransCard(imgurl: any) {
const params = { const params = {
transportationLicenseUrl: imgurl transportationLicenseUrl: imgurl,
}; };
this.service.request(this.service.$api_recognizeTransportationLicense, params).subscribe(res => { this.service.request(this.service.$api_recognizeTransportationLicense, params).subscribe((res: any) => {
if (res) { if (res) {
this.sf.setValue('/roadTransportNo', res.number); this.sf.setValue('/roadTransportNo', res.number);
this.sf.setValue('/roadTransportLicenceNo', res.businessCertificate); this.sf.setValue('/roadTransportLicenceNo', res.businessCertificate);
this.sf.setValue('/roadTransportStartTime', res.issueDate); this.sf.setValue('/roadTransportStartTime', res.issueDate);
if (this.carNo === '') { if(this.carNo === '') {
this.carNo = res.number; this.carNo = res.number
} else if (this.carNo && res.vehicleNumber.indexOf(this.carNo) === -1) { } else if(this.carNo && res.vehicleNumber.indexOf(this.carNo) === -1) {
this.service.msgSrv.warning('请上传同一认证车辆的相关证件'); this.service.msgSrv.warning('请上传同一认证车辆的相关证件')
} }
} }
}); });
@ -590,12 +605,11 @@ export class CarSettleCarauthComponent implements OnInit {
checkCarCard(imgurl: any, side: any) { checkCarCard(imgurl: any, side: any) {
const params = { const params = {
vehicleLicenseUrl: imgurl, vehicleLicenseUrl: imgurl,
side side,
}; };
this.service.request(this.service.$api_recognizeVehicleLicense, params).subscribe(res => { this.service.request(this.service.$api_recognizeVehicleLicense, params).subscribe((res: any) => {
if (res) { if (res) {
if (side === 'front') { if (side === 'front') { // 正面
// 正面
this.sf.setValue('/driverLicenseRegisterTime', res.registerDate); this.sf.setValue('/driverLicenseRegisterTime', res.registerDate);
this.sf.setValue('/carNo', res.number); this.sf.setValue('/carNo', res.number);
this.sf.setValue('/driverLicenseGetTime', res.issueDate); this.sf.setValue('/driverLicenseGetTime', res.issueDate);
@ -603,49 +617,46 @@ export class CarSettleCarauthComponent implements OnInit {
this.sf.setValue('/carDistinguishCode', res.vin); this.sf.setValue('/carDistinguishCode', res.vin);
this.sf.setValue('/carOwner', res.name); this.sf.setValue('/carOwner', res.name);
this.sf.setValue('/useNature', res.useCharacter === '非营运' ? 0 : 1); this.sf.setValue('/useNature', res.useCharacter === '非营运' ? 0 : 1);
} else { } else {
this.sf.setValue('/curbWeight', res.unladenMass); this.sf.setValue('/curbWeight', res.unladenMass);
} }
if (this.carNo === '') { if(this.carNo === '') {
this.carNo = res.number; this.carNo = res.number
} else if (this.carNo && this.carNo !== res.number) { } else if(this.carNo && this.carNo !== res.number) {
this.service.msgSrv.warning('请上传同一认证车辆的相关证件'); this.service.msgSrv.warning('请上传同一认证车辆的相关证件')
} }
} }
}); });
} }
close(): void { close(): void {
this.modal.destroy(); this.modal.close(true);
} }
showExample() { showExample() {
this.showCardFlag = !this.showCardFlag; this.showCardFlag = !this.showCardFlag
} }
showJopExample() { showJopExample() {
this.showJopFlag = !this.showJopFlag; this.showJopFlag = !this.showJopFlag
} }
submitForm() { submitForm() {
const params: any = { const params: any = {
appUserId: this.i.appUserId, appUserId: this.i.appUserId,
...this.sf.value ...this.sf.value,
bindType: this.i.bindType
}; };
params.carFrontPhoto = this.detailData.carFrontPhoto; params.carFrontPhoto = this.detailData.carFrontPhoto
params.carProtocal = this.detailData.carProtocal; params.carProtocal = this.detailData.carProtocal
params.certificatePhotoFront = this.detailData.certificatePhotoFront; params.certificatePhotoFront = this.detailData.certificatePhotoFront
params.certificatePhotoBack = this.detailData.certificatePhotoBack; params.certificatePhotoBack = this.detailData.certificatePhotoBack
params.roadTransportPhoto = this.detailData.roadTransportPhoto; params.roadTransportPhoto = this.detailData.roadTransportPhoto
params.carFrontPhotoWatermark = this.sf.value.carFrontPhotoWatermark?.data?.fullFilePath || this.sf.value.carFrontPhotoWatermark delete params.titleA
params.carProtocalWatermark = this.sf.value.carProtocalWatermark?.data?.fullFilePath || this.sf.value.carProtocalWatermark delete params.titleB
params.certificatePhotoBackWatermark = this.sf.value.certificatePhotoBackWatermark?.data?.fullFilePath || this.sf.value.certificatePhotoBackWatermark this.service.request(this.service.$api_saveUpdateShipperCar, params).subscribe((res: any) => {
params.certificatePhotoFrontWatermark = this.sf.value.certificatePhotoFrontWatermark?.data?.fullFilePath || this.sf.value.certificatePhotoFrontWatermark
params.roadTransportPhotoWatermark = this.sf.value.roadTransportPhotoWatermark?.data?.fullFilePath || this.sf.value.roadTransportPhotoWatermark
delete params.titleA;
delete params.titleB;
this.service.request(this.service.$api_addOrUpdateCarLicenseInfo, params).subscribe(res => {
if (res) { if (res) {
this.service.msgSrv.success('添加成功'); this.service.msgSrv.success('添加成功')
this.modal.close(true); this.modal.close(true)
} }
}); })
} }
} }