Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
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
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
import {TabsService} from "../../tabs/tabs.service";
import {CommonService} from "../../../provide/common.service";
@IonicPage()
@Component({
selector: 'page-proposal',
templateUrl: 'proposal.html',
})
export class ProposalPage {
content = '';
constructor(public navCtrl: NavController, public navParams: NavParams,
public tabs:TabsService,public commonSer:CommonService) {
}
ionViewDidLoad() {
}
submit(){
const data = {
content:this.content
}
this.commonSer.alert('确定提交建议?',()=>{
this.tabs.proposal(data).subscribe(
(res)=>{
this.commonSer.toast('谢谢您的建议');
setTimeout(()=>{
this.navCtrl.pop()
},1000);
}
)
})
}
}