wangtengyu
2018-11-07 8ddfd9aee1406cc2cbe0b3962cc5b7301c7280f8
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
import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
declare function eval(s: string): any;
 
@IonicPage({
  name: 'home'
})
@Component({
  selector: 'page-home',
  templateUrl: 'home.html',
})
export class HomePage {
 
  constructor(public navCtrl: NavController, public navParams: NavParams) {
  }
 
  test() {
    let fun = "() => console.log('test');";
    eval(fun);
  }
 
  ionViewDidLoad() {
    console.log('ionViewDidLoad HomePage');
  }
 
  go() {
    this.navCtrl.push('access-login');
  }
 
  gotoInput() {
    this.navCtrl.push('access-input');
  }
 
}