Newer
Older
import {Component, EventEmitter, OnInit, Output, ViewChild} from '@angular/core';
import {FormBuilder, FormControl, FormGroup, Validators} from '@angular/forms';
import {NzMessageService, UploadFile} from 'ng-zorro-antd';
import {opr_company_type, project_type} from '../../project.constants';
import {SystemService} from '../../../system/system.service';
import {ProjectService} from '../../project.service';
import {CompanyModalComponent} from '../company-modal/company-modal.component';
import {TeamPeopleComponent} from '../team-people/team-people.component';
import {TeamModalComponent} from '../team-modal/team-modal.component';
import {TrackInfoComponent} from '../track-info/track-info.component';
selector: 'smart-create-project',
templateUrl: './create-project.component.html',
`
:host ::ng-deep .ant-input-disabled {
color: rgba(0, 0, 0, .65);
@ViewChild('smartCompanyModal') smartCompanyModal: CompanyModalComponent;
@ViewChild('smartTrackInfo') smartTrackInfo: TrackInfoComponent;
@Output() done = new EventEmitter<any>();
tabNum = 0; //tabs面板的序列号
timeFormat = 'yyyy-MM-dd';
isVisible = false;
isOkLoading = false;
validateForm: FormGroup;
fileList: UploadFile[] = [];
constructor(private fb: FormBuilder, private systemSer: SystemService,
private message: NzMessageService, private projectSer: ProjectService) {
}
this.validateForm = this.fb.group({
name: [null, [Validators.required, Validators.minLength(2), Validators.maxLength(50)]],
officeName: [null],
officePrincipal: [null],
aPrincipal: [null],
showAddModal(title) {
this.isVisible = true;
this.title = title;
showLookModal(data) {
this.isVisible = true;
this.title = data.name;
this.type = 'look';
this.validateForm.patchValue(data);
}
this.fileList.push(file);
let file1 = <any>file;
const formData = new FormData();
formData.append('file', file1);
this.workSer.sysFileUpload(formData).subscribe(
(res) => {
if (res.errCode == 10000) {
this.fileId.push(res.data.id);
}
}
);
for (let i in this.validateForm.controls) {
this.validateForm.controls[i].markAsDirty();
this.validateForm.controls[i].updateValueAndValidity();
if (this.validateForm.invalid) {
return false;
}
this.isOkLoading = true;
this.validateForm.patchValue({
startDate: new Date(this.validateForm.value.startDate).getTime(),
endDate: new Date(this.validateForm.value.endDate).getTime(),
status: status
});
if (this.title == '新增运维项目') {
this.create();
}
if (this.title == '编辑运维项目') {
this.update();
}
}
this.validateForm.addControl('fileId', new FormControl(this.fileId.join(',')));
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
this.projectSer.addMaintainProject(this.validateForm.value).subscribe(
(res) => {
if (res.errCode == 10000) {
this.isVisible = false;
this.initForm();
this.done.emit();
this.message.success('新增运维项目成功');
}
this.isOkLoading = false;
}
);
}
update() {
this.validateForm.addControl('id', new FormControl(this.cID));
this.projectSer.updateMaintainProject(this.validateForm.value).subscribe(
(res) => {
if (res.errCode == 10000) {
this.isVisible = false;
this.initForm();
this.done.emit();
this.message.success('更新项目成功');
}
this.isOkLoading = false;
}
);
}
//tabs切换
tabsChange(num) {
this.tabNum = num;
}
showProjectmodal() {
this.smartCompanyModal.showModal();
}
companyId: e.id,
companyName: e.name
};
this.validateForm.patchValue(d);
}
// 获取人员
showSelectPeople() {
if (!this.validateForm.value.companyId) {
this.message.info('请选择乙方公司');
return;
}
this.smartTeamModal.showModal(this.validateForm.value.companyId, '乙方维护组长');
}
setPeople(e) {
const d = {
bprincipalName: e.userName,
bprincipal: e.id