Newer
Older
import {opr_company_type, project_status} from '../project.constants';
import {pageSize} from '../../app.constants';
import {WorkService} from '../../work/work.service';
import {NzMessageService} from 'ng-zorro-antd';
import {ProjectService} from '../project.service';
import {Router} from '@angular/router';
import {CommonService} from '../../shared/common/common.service';
import {DatePipe} from '@angular/common';
import {CreateCompanyComponent} from '../modal/create-company/create-company.component';
import {LocalStorageService} from 'ngx-webstorage';
import {LookCompanyComponent} from '../modal/look-company/look-company.component';
selector: 'app-opr-company',
templateUrl: './opr-company.component.html',
styleUrls: ['./opr-company.component.css']
@ViewChild('smartCreateCompany') smartCreateCompany: CreateCompanyComponent;
@ViewChild('smartLookCompany') smartLookCompany: LookCompanyComponent;
page = {
list: [],
isLoading: false,
pageCount: pageSize,
pageNum: 1,
totalNum: null
};
obj = {
name: '',
type: null
};
constructor(private workSer: WorkService, private message: NzMessageService, private projectSer: ProjectService,
private router: Router, private commonSer: CommonService, private datePipe: DatePipe) {
}
ngOnInit() {
this.getList();
}
//获取列表
getList() {
this.page.isLoading = true;
const obj = {
obj: this.obj,
pageNum: this.page.pageNum,
pageCount: this.page.pageCount
};
this.projectSer.selectMaintainCompany(obj).subscribe(
(res) => {
if (res.errCode == 10000) {
this.page.list = res.data.data;
this.page.totalNum = res.data.totalNum;
this.page.isLoading = false;
}
}
);
}
//翻页
change(e) {
}
//搜索
search() {
this.page.pageNum = 1;
this.getList();
}
//新增运维公司
handleAddModal() {
this.smartCreateCompany.showAddModal('新增运维公司');
}
handleEditModa(item) {
this.smartCreateCompany.showEditModal(item, '编辑运维公司');
}
//查看
handleLook(item){
this.smartLookCompany.showModal(item);
}
handleDelete(item) {
this.commonSer.confirmThing('删除', '确定删除该公司?', () => {