You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
242 lines
7.7 KiB
242 lines
7.7 KiB
import { HttpClient } from '@angular/common/http'; |
|
import { Component, OnInit } from '@angular/core'; |
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
import { ObjectsSimpleService } from 'src/app/service/objectsSimple.service'; |
|
import { NzMessageService } from 'ng-zorro-antd/message'; |
|
import * as moment from 'moment'; |
|
@Component({ |
|
selector: 'app-oil-station-info', |
|
templateUrl: './oil-station-info.component.html', |
|
styleUrls: ['./oil-station-info.component.scss'] |
|
}) |
|
export class OilStationInfoComponent implements OnInit { |
|
validateForm!: FormGroup; |
|
constructor(private fb: FormBuilder, private objectsSrv: ObjectsSimpleService, private http: HttpClient, private message: NzMessageService) { } |
|
|
|
|
|
userdata: any |
|
dateFormat = 'yyyy-MM-dd'; |
|
ngOnInit(): void { |
|
this.userdata = JSON.parse(sessionStorage.getItem('userdata')) |
|
this.validateForm = this.fb.group({ |
|
oilStation: this.fb.group({ |
|
organization: [this.userdata.organization.displayName], |
|
startBusinessTime: [null, [Validators.required]], |
|
oilStationType: [null], |
|
laneNumber: [null], |
|
address: [null], |
|
validityTime: [null, [Validators.required]]//营业执照有效期 |
|
}), |
|
policeStation: this.fb.group({ |
|
name: [null], |
|
address: [null], |
|
distance: [null], |
|
contactInformation: [null] |
|
}), |
|
hospital: this.fb.group({ |
|
name: [null], |
|
address: [null], |
|
distance: [null], |
|
contactInformation: [null] |
|
}), |
|
fireBrigade: this.fb.group({ |
|
name: [null], |
|
address: [null], |
|
distance: [null], |
|
contactInformation: [null] |
|
}) |
|
}); |
|
|
|
this.getInfo() |
|
|
|
} |
|
|
|
|
|
validityTime: any = []//营业执照有效期 |
|
|
|
//获取油站信息 |
|
getInfo() { |
|
this.http.get('/api/services/app/GasStation/Get', { |
|
params: { |
|
organizationId: this.userdata.organization.id |
|
} |
|
}).subscribe((data: any) => { |
|
console.log('油站信息', data) |
|
this.httpBody = data.result |
|
this.httpBody.govUnitDetail = JSON.parse(data.result.govUnitDetail) |
|
this.policeStation = data.result.govUnitDetail.policeStation |
|
this.hospital = data.result.govUnitDetail.hospital |
|
this.fireBrigade = data.result.govUnitDetail.fireBrigade |
|
this.httpBody.stationType = String(this.httpBody.stationType) |
|
this.validityTime[0] = data.result.validityStartTime |
|
this.validityTime[1] = data.result.validityEndTime |
|
this.validityTime = [...this.validityTime] |
|
console.log(this.validityTime) |
|
}, err => { |
|
console.log('油站错误信息', err.error.error.message) |
|
}) |
|
} |
|
|
|
|
|
|
|
policeStation = { |
|
name: '', |
|
address: '', |
|
distance: '', |
|
contactInformation: '' |
|
} |
|
hospital = { |
|
name: '', |
|
address: '', |
|
distance: '', |
|
contactInformation: '' |
|
} |
|
fireBrigade = { |
|
name: '', |
|
address: '', |
|
distance: '', |
|
contactInformation: '' |
|
} |
|
httpBody = { |
|
id: null, |
|
stationName: JSON.parse(sessionStorage.getItem('userdata')).organization.displayName, |
|
organizationId: JSON.parse(sessionStorage.getItem('userdata')).organization.id, |
|
validityStartTime: '', |
|
validityEndTime: '', |
|
openTime: '', |
|
stationType: '', |
|
laneCount: '', |
|
address: '', |
|
govUnitDetail: { |
|
policeStation: {}, |
|
hospital: {}, |
|
fireBrigade: {} |
|
}, |
|
businessLicenseImage: '', |
|
dangerousChemicalLicenseImage: '', |
|
gasSellLicenseImage: '' |
|
} |
|
|
|
|
|
submitForm() { |
|
|
|
console.log(this.validateForm) |
|
console.log(this.httpBody) |
|
if (this.validateForm.valid) { |
|
this.isLoadingSave = true |
|
this.httpBody.openTime = moment(this.httpBody.openTime).format('YYYY-MM-MM')//开业时间格式化 |
|
this.httpBody.validityStartTime = moment(this.validityTime[0]).format('YYYY-MM-MM')//开业时间格式化 |
|
this.httpBody.validityEndTime = moment(this.validityTime[1]).format('YYYY-MM-MM')//开业时间格式化 |
|
this.httpBody.govUnitDetail.policeStation = this.validateForm.value.policeStation |
|
this.httpBody.govUnitDetail.hospital = this.validateForm.value.hospital |
|
this.httpBody.govUnitDetail.fireBrigade = this.validateForm.value.fireBrigade |
|
|
|
let body = JSON.parse(JSON.stringify(this.httpBody)) |
|
body.stationType |
|
body.govUnitDetail = JSON.stringify(this.httpBody.govUnitDetail) |
|
|
|
if (this.httpBody.id) { |
|
this.http.put('/api/services/app/GasStation/Update', body).subscribe((data: any) => { |
|
this.isLoadingSave = false |
|
this.message.create('success', '保存成功!'); |
|
}, err => { |
|
this.isLoadingSave = false |
|
this.message.create('error', '保存失败!'); |
|
}) |
|
} else { |
|
this.http.post('/api/services/app/GasStation/Create', body).subscribe((data: any) => { |
|
this.httpBody.id = data.result.id |
|
this.isLoadingSave = false |
|
this.message.create('success', '保存成功!'); |
|
}, err => { |
|
this.isLoadingSave = false |
|
this.message.create('error', '保存失败!'); |
|
}) |
|
} |
|
} else { |
|
this.message.create('warning', '请填写完整!'); |
|
return false |
|
} |
|
|
|
} |
|
|
|
isLoadingOne: boolean = false |
|
isLoadingTwo: boolean = false |
|
isLoadingThree: boolean = false |
|
isLoadingSave: boolean = false |
|
uploadType: string |
|
filechange(e, type) { |
|
let file = e.target.files[0] || null //获取上传的文件 |
|
this.uploadType = type |
|
if (this.uploadType == 'businessLicense') {//营业执照 |
|
this.isLoadingOne = true |
|
} |
|
if (this.uploadType == 'dangerousChemical') {//危化品销售 |
|
this.isLoadingTwo = true |
|
} |
|
if (this.uploadType == 'retailOfRefinedOil') {//成品油零售 |
|
this.isLoadingThree = true |
|
} |
|
this.openFileSelect(file, `stationPhotos/${this.userdata.organization.id}/`) |
|
} |
|
//设置文件路径并上传 |
|
postFilePath |
|
openFileSelect(file: File, extensionPath: string) { |
|
this.postFilePath = extensionPath; |
|
let fileSize = file.size || null //上传文件的总大小 |
|
let shardSize = 5 * 1024 * 1024 //5MB 超过5MB要分块上传 |
|
if (fileSize >= shardSize) // 超过5MB要分块上传 |
|
{ |
|
this.postFileByMul(file); |
|
} |
|
else //普通上传 |
|
{ |
|
this.postFile(file); |
|
} |
|
} |
|
//上传文件 |
|
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; |
|
if (this.uploadType == 'businessLicense') {//营业执照 |
|
this.httpBody.businessLicenseImage = filePath |
|
this.isLoadingOne = false |
|
} |
|
if (this.uploadType == 'dangerousChemical') {//危化品 |
|
this.httpBody.dangerousChemicalLicenseImage = filePath |
|
this.isLoadingTwo = false |
|
} |
|
if (this.uploadType == 'retailOfRefinedOil') {//成品油 |
|
this.httpBody.gasSellLicenseImage = filePath |
|
this.isLoadingThree = false |
|
} |
|
resolve('success') |
|
}); |
|
}) |
|
} |
|
|
|
/** |
|
* 分块上传 |
|
* @param file |
|
*/ |
|
postFileByMul(file: File) { |
|
this.objectsSrv.postFile_MultipartUpload(this.postFilePath, file).then((value) => { |
|
let dataObj = value as any; |
|
if (this.uploadType == 'businessLicense') {//营业执照 |
|
this.httpBody.businessLicenseImage = dataObj.filePath |
|
this.isLoadingOne = false |
|
} |
|
if (this.uploadType == 'dangerousChemical') {//危化品 |
|
this.httpBody.dangerousChemicalLicenseImage = dataObj.filePath |
|
this.isLoadingTwo = false |
|
} |
|
if (this.uploadType == 'retailOfRefinedOil') {//成品油 |
|
this.httpBody.gasSellLicenseImage = dataObj.filePath |
|
this.isLoadingThree = false |
|
} |
|
}); |
|
|
|
} |
|
}
|
|
|