Newer
Older
import {Component, EventEmitter, OnInit, Output} from '@angular/core';
import {ProjectService} from '../../project.service';
@Component({
selector: 'smart-project-modal',
templateUrl: './project-modal.component.html',
styles: []
})
export class ProjectModalComponent implements OnInit {
@Output() done = new EventEmitter<any>();
isVisiable = false;
obj = {
keyword: ''
};
page = {
list: [],
isLoading: false,
totalNum: 0,
pageNum: 1,
pageCount: 5,
};
inSelect;
constructor(private projectSer: ProjectService) {
}
ngOnInit() {
this.getList();
}
getList() {
this.page.isLoading = true;
const obj = {
obj: this.obj,
pageNum: this.page.pageNum,
pageCount: this.page.pageCount
};
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
(res) => {
if (res.errCode == 10000) {
this.page.list = res.data.data;
this.page.totalNum = res.data.totalNum;
this.page.isLoading = false;
}
}
);
}
PageDataChange(e) {
}
changePage(e) {
this.page.pageNum = e;
this.getList();
}
selectItem(item, e) {
if (e) {
const arr = this.page.list.map(data => {
return data.itemId;
});
const old = this.inSelect;
if (old) {
const index = arr.indexOf(old.itemId);
this.page.list[index].checked = false;
}
this.inSelect = item;
} else {
this.inSelect = null;
}
}
handleOk(){
this.isVisiable = false;
this.done.emit(this.inSelect);
}
handleCancel(){
this.isVisiable = false;
}
}