Newer
Older
import {Component} from '@angular/core';
import {IonicPage, NavController, NavParams} from 'ionic-angular';
import {ChangeApplyListPage} from "../change-apply-list/change-apply-list";
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');
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
};
this.appService.ObserverHttpGetOption('/wisdomgroup/schedule/replace', data)
.subscribe((res) => {
this.appService.popToastView('处理成功!','middle',1000);
this.navCtrl.push('ChangeApplyListPage');
})
}
//换班
change() {
const data = {
nowId: this.nowId, //值班记录id
changeId: this.changeId //互换的值班ID
};
this.appService.ObserverHttpGetOption('/wisdomgroup/schedule/change',data)
.subscribe((res) => {
this.appService.popToastView('处理成功!','middle',1000);
this.navCtrl.push('ChangeApplyListPage');