Newer
Older
import {Component} from '@angular/core';
import {IonicPage, NavController, NavParams, AlertController, ToastController} from 'ionic-angular';
import {Http, Response} from '@angular/http';
import {Storage} from '@ionic/storage';
import {AppService} from '../../../service/appHttpService';
import {ReportSearchPage} from "../report-search/report-search";
items: object[] = [];
itemsOfNotReport: object[] = [];
itemsOfLeave: object[] = [];
itemsOfNotLeave: object[] = [];
title: string;
type: number;
id;
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
92
93
94
95
96
97
constructor(public navCtrl: NavController,
public navParams: NavParams,
public alertCtrl: AlertController,
public http: Http, public storage: Storage,
public appService: AppService, public toast: ToastController) {
}
ionViewDidLoad() {
this.premanager = this.navParams.get('item');
this.title = this.navParams.get("title");
this.id = this.navParams.get("id");
}
ionViewDidEnter() {
this.getUserAboutLeave(this.id);
this.getUserAboutNotLeave(this.id);
this.getUserAboutNotReport(this.id);
}
//获取处室下所有未报备人员
getUserAboutNotReport(id) {
this.appService.ObserverHttpPost("/wisdomgroup/modules/premanager/getUserAboutNotReport", {id: id})
.subscribe((res: Response) => {
let data = res.json();
this.itemsOfNotReport = data;
this.items = data;
this.type = 1;
}, error => {
this.appService.alert('网络异常!');
}
);
}
//获取处室下所有离沪报备人员
getUserAboutLeave(id) {
this.appService.ObserverHttpPost("/wisdomgroup/modules/premanager/getUserAboutLeave", {id: id})
.subscribe((res: Response) => {
let data = res.json();
console.log(data);
this.itemsOfLeave = data;
}, error => {
this.appService.alert('网络异常!');
}
);
}
//获取处室下所有不离沪报备人员
getUserAboutNotLeave(id) {
this.appService.ObserverHttpPost("/wisdomgroup/modules/premanager/getUserAboutNotLeave", {id: id})
.subscribe((res: Response) => {
let data = res.json();
console.log(data);
this.itemsOfNotLeave = data;
}, error => {
this.appService.alert('网络异常!');
}
);
}
//切换
change(type) {
if (type == 1) {
this.type = type;
this.items = this.itemsOfNotReport;
} else if (type == 2) {
this.type = type;
this.items = this.itemsOfLeave;
} else if (type == 3) {
this.type = type;
this.items = this.itemsOfNotLeave;
}
//协助报备
goReport(item) {
this.storage.remove("temp_userpre");
this.storage.remove("managerId");
this.storage.remove("city");
this.storage.remove("cityList");
this.storage.remove("person");
this.storage.set('premanager', this.premanager);
this.storage.set('person', item);
this.navCtrl.push('OutGoingReportEditPage', {premanager: this.premanager});
search(){
this.navCtrl.push('ReportSearchPage',{id:this.id,'premanager':this.premanager});