|
|
|
@ -223,27 +223,7 @@ export class OilStationInfoComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
isLoadingSave: boolean = false |
|
|
|
|
submitForm() { |
|
|
|
|
// let valid = true
|
|
|
|
|
// console.log(this.httpBody.licenses)
|
|
|
|
|
// this.httpBody.licenses.forEach(element => {
|
|
|
|
|
// if (!element.startTime || !element.endTime || !element.firstWarnTime || !element.secondWarnTime || !element.code) {
|
|
|
|
|
// valid = false
|
|
|
|
|
// console.log('普通拦截')
|
|
|
|
|
// return
|
|
|
|
|
// }
|
|
|
|
|
// if (element.hasAnnualInspection) {
|
|
|
|
|
// if (!element.annualInspectionWarnTime || !element.annualInspectionOrganizationName || !element.annualInspectionTime) {
|
|
|
|
|
// valid = false
|
|
|
|
|
// console.log('年检拦截')
|
|
|
|
|
// return
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
// if (!valid) {
|
|
|
|
|
// this.message.create('error', '请将证照信息填写完整!');
|
|
|
|
|
// return
|
|
|
|
|
// }
|
|
|
|
|
async submitForm() { |
|
|
|
|
if (this.validateForm.valid) { |
|
|
|
|
this.isLoadingSave = true |
|
|
|
|
this.httpBody.openTime = moment(this.httpBody.openTime).format('YYYY-MM-MM')//开业时间格式化
|
|
|
|
@ -260,13 +240,16 @@ export class OilStationInfoComponent implements OnInit {
|
|
|
|
|
delete item.isPerpetual |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
await new Promise<void>((resolve, reject) => { |
|
|
|
|
this.http.put('/api/services/app/GasStation/Update', body).subscribe((data: any) => { |
|
|
|
|
resolve(data) |
|
|
|
|
this.isLoadingSave = false |
|
|
|
|
this.message.create('success', '保存成功!'); |
|
|
|
|
}, err => { |
|
|
|
|
this.isLoadingSave = false |
|
|
|
|
this.message.create('error', '保存失败!'); |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
this.message.create('warning', '请填写完整!'); |
|
|
|
|
return false |
|
|
|
@ -274,62 +257,12 @@ export class OilStationInfoComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// uploadIndex: string
|
|
|
|
|
// filechange(e, index) {
|
|
|
|
|
// let file = e.target.files[0] || null //获取上传的文件
|
|
|
|
|
// this.uploadIndex = index
|
|
|
|
|
// this.openFileSelect(file, `stationPhotos/${this.userdata.organization.id}/`)
|
|
|
|
|
// }
|
|
|
|
|
// //设置文件路径并上传
|
|
|
|
|
// postFilePath
|
|
|
|
|
// async openFileSelect(file: File, extensionPath: string) {
|
|
|
|
|
// this.postFilePath = extensionPath;
|
|
|
|
|
// let fileSize = file.size || null //上传文件的总大小
|
|
|
|
|
// let shardSize = 5 * 1024 * 1024 //5MB 超过5MB要分块上传
|
|
|
|
|
// if (fileSize >= shardSize) // 超过5MB要分块上传
|
|
|
|
|
// {
|
|
|
|
|
// await this.postFileByMul(file);
|
|
|
|
|
// setTimeout(() => {
|
|
|
|
|
// this.gallery.destroy()
|
|
|
|
|
// this.gallery = new Viewer(document.getElementById('images'));
|
|
|
|
|
// }, 0);
|
|
|
|
|
// }
|
|
|
|
|
// else //普通上传
|
|
|
|
|
// {
|
|
|
|
|
// await this.postFile(file);
|
|
|
|
|
// setTimeout(() => {
|
|
|
|
|
// this.gallery.destroy()
|
|
|
|
|
// this.gallery = new Viewer(document.getElementById('images'));
|
|
|
|
|
// }, 0);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// //上传文件
|
|
|
|
|
// async postFile(file: File) {
|
|
|
|
|
// await new Promise((resolve, reject) => {
|
|
|
|
|
// this.objectsSrv.postFile(this.postFilePath, file).subscribe(data => {
|
|
|
|
|
// let dataObj = data as any;
|
|
|
|
|
// let filePath: string = ObjectsSimpleService.baseUrl + dataObj.objectName;
|
|
|
|
|
// this.httpBody.licenses[this.uploadIndex].imageUrl = filePath
|
|
|
|
|
// resolve('success')
|
|
|
|
|
// });
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// /**
|
|
|
|
|
// * 分块上传
|
|
|
|
|
// * @param file
|
|
|
|
|
// */
|
|
|
|
|
// postFileByMul(file: File) {
|
|
|
|
|
// this.objectsSrv.postFile_MultipartUpload(this.postFilePath, file).then((value) => {
|
|
|
|
|
// let dataObj = value as any;
|
|
|
|
|
// this.httpBody.licenses[this.uploadIndex].imageUrl = dataObj.filePath
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
isSubmitAuditLoading: boolean = false |
|
|
|
|
async submitAudit() { |
|
|
|
|
|
|
|
|
|
await this.submitForm() |
|
|
|
|
|
|
|
|
|
isSubmitAuditLoading: boolean = false |
|
|
|
|
submitAudit() { |
|
|
|
|
let params = { |
|
|
|
|
id: this.httpBody.id |
|
|
|
|
} |
|
|
|
|