Newer
Older
import {Component} from '@angular/core';
import {IonicPage, NavController, NavParams} from 'ionic-angular';
selector: 'page-change-apply-sure',
templateUrl: 'change-apply-sure.html',
14
15
16
17
18
19
20
21
22
23
24
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
changeId; // 换班Id
personId; //替班人id
nowId; //申请id
constructor(public navCtrl: NavController, public navParams: NavParams,
public appService: AppService) {
}
ionViewDidLoad() {
this.personId = this.navParams.get('personId');
this.nowId = this.navParams.get('nowId');
this.changeId = this.navParams.get('changeId');
console.log('personId:' + this.personId);
console.log('nowId:' + this.nowId);
console.log('changeId:' + this.changeId);
if (this.personId) {
this.applyType = 'replace'; //值班
} else {
this.applyType = 'change'; //替班
}
}
//替班
replace() {
const data = {
id: this.nowId, //值班记录id
personId: this.personId //替班人id
};
console.log(data);
this.appService.ObserverHttpGetOption('/wisdomgroup/schedule/replace', data)
.subscribe((res) => {
console.log(res.json());
})
}
//换班
change() {
const data = {
nowId: this.nowId, //值班记录id
changeId: this.changeId //互换的值班ID
};
console.log(data);
this.appService.ObserverHttpGetOption('/wisdomgroup/schedule/change',data)
.subscribe((res) => {
console.log(res.json());
})
}