Skip to content
duty-apply.ts 989 B
Newer Older
wangqinghua's avatar
wangqinghua committed
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
import {AppService} from "../../../../service/http.service";

@IonicPage()
@Component({
  selector: 'page-duty-apply',
  templateUrl: 'duty-apply.html',
})
export class DutyApplyPage {

    id;
    date;
    reason = '';
  constructor(public navCtrl: NavController, public navParams: NavParams,
              public appService: AppService) {
  }

  ionViewDidLoad() {
    this.id = this.navParams.get('id');
    this.date = this.navParams.get('date');
  }

  submit(){
    const data = {
        scheduleId:this.id,
        reason:this.reason
    };
    this.appService.alert('确定提交该申请?',res=>{
        this.appService.ObserverHttpPost('/wisdomgroup/changeApply/app/apply',data)
            .subscribe((res )=>{
                this.appService.popToastView('提交该申请成功!','middle',1000);
                this.navCtrl.pop();
            })
    });
  }

}