Newer
Older
import {Component, EventEmitter, OnInit, Output, ViewChild} from '@angular/core';
import {ProjectModalComponent} from '../../../project-manager/modal/project-modal/project-modal.component';
import {CompanyModalComponent} from '../../../project-manager/modal/company-modal/company-modal.component';
import {FormBuilder, FormControl, FormGroup, Validators} from '@angular/forms';
import {NzMessageService, UploadFile} from 'ng-zorro-antd';
import {SystemService} from '../../../system/system.service';
import {SystemChangeService} from '../../system-change.service';
import {SelectPersonComponent} from '../../../modal/select-person/select-person.component';
import {change_level} from '../../system-change.constants';
import {TrackInfoComponent} from '../../../project-manager/modal/track-info/track-info.component';
@Component({
selector: 'smart-change-create',
templateUrl: './change-create.component.html',
styles: []
})
export class ChangeCreateComponent implements OnInit {
@ViewChild('smartProjectModal') smartProjectModal: ProjectModalComponent;
@ViewChild('smartCompanyModal') smartCompanyModal: CompanyModalComponent;
@ViewChild('smartSelectPerson') smartSelectPerson: SelectPersonComponent;
@Output() done = new EventEmitter<any>();
tabNum = 0; //tabs面板的序列号
title;
isVisible = false;
isOkLoading = false;
validateForm: FormGroup;
fileList: UploadFile[] = [];
change_level = change_level;
typeList = [];
cID;
constructor(private fb: FormBuilder, private systemSer: SystemService,
private sysChangeSer: SystemChangeService,
private localStorage: LocalStorageService,
private message: NzMessageService, private systemChangeSer: SystemChangeService) {
}
ngOnInit(): void {
this.userInfo = this.localStorage.retrieve('userInfo');
console.log(this.userInfo);
this.initForm();
this.getType();
}
//初始化
initForm() {
this.validateForm = this.fb.group({
manageUserId: [this.userInfo.userId],
manageUserName: [this.userInfo.userName],
organizationId: [this.userInfo.organizationId],
organizationName: [this.userInfo.organizationName],
type: ['1', [Validators.required]],
classifyId: [null, [Validators.required]],
status: ['1'],
projectId: [null],
projectName: [null],
verifyUserId: [null],
verifyUserName: [null],
description: [null],
});
}
//变更分类
getType() {
this.systemChangeSer.findByType('sys_change_type').subscribe(
(res) => {
if (res.data) {
this.typeList = res.data;
} else {
this.message.warning('暂无变更类型');
}
}
);
}
showAddModal(title) {
this.isVisible = true;
this.title = title;
}
showEditModal(data, title) {
this.isVisible = true;
this.title = title;
this.cID = data.id;
this.getDetail();
}
//查询变更详情
getDetail() {
this.sysChangeSer.find(this.cID).subscribe(
(res) => {
res.data.type += '';
res.data.status += '';
this.validateForm.patchValue(res.data);
}
);
}
handleCancel() {
this.isVisible = false;
this.initForm();
}
beforeUpload = (file: UploadFile): boolean => {
const isExcel = file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' || 'application/octet-stream';
if (!isExcel) {
this.message.error('请上传正确的文件!');
} else {
this.fileList[0] = file;
}
return false;
};
for (let i in this.validateForm.controls) {
this.validateForm.controls[i].markAsDirty();
this.validateForm.controls[i].updateValueAndValidity();
}
if (this.validateForm.invalid) {
return false;
}
this.validateForm.patchValue({
changeTime: new Date(this.validateForm.value.changeTime).getTime()
});
139
140
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
}
create() {
this.systemChangeSer.sysChangeSave(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.systemChangeSer.sysChangeUpdate(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.smartProjectModal.showModal();
}
//获取选择的项目
getProject(e) {
const d = {
projectId: e.id,
projectName: e.name
};
this.validateForm.patchValue(d);
}
//选择公司
showCompany() {
this.smartCompanyModal.showModal();
}
getCompany(e) {
const d = {
companyId: e.id,
companyName: e.name
};
this.validateForm.patchValue(d);
}
//选择团队负责人
showPeoplemodal() {
this.smartSelectPerson.showModal('选择审批人', null);
}
setPeolpe(e) {
console.log(e);
const d = {
verifyUserName: e[0].name,
verifyUserId: e[0].id
};
this.validateForm.patchValue(d);
}
}