Newer
Older
import {Component} from '@angular/core';
import {IonicPage, NavController, NavParams} from 'ionic-angular';
selector: 'page-change-apply-sure',
templateUrl: 'change-apply-sure.html',
constructor(public navCtrl: NavController, public navParams: NavParams,
public appService: AppService) {
}
ionViewDidLoad() {
this.item = this.navParams.get('item');
this.applyId = this.navParams.get('applyId');
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'; //替班
}
this.appService.ObserverHttpGetOption('/wisdomgroup/changeApply/app/apply',{'id': this.applyId})
.subscribe((res)=>{
this.applyDetail = res.json();
})
}
//替班
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());
})
}