Project: Mall App Client: Maiora
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

profile.page.ts 446 B

1234567891011121314151617181920212223
  1. import { Component, OnInit } from '@angular/core';
  2. import { Location } from '@angular/common';
  3. @Component({
  4. selector: 'app-profile',
  5. templateUrl: './profile.page.html',
  6. styleUrls: ['./profile.page.scss'],
  7. })
  8. export class ProfilePage implements OnInit {
  9. selected_tab: string = 'MY ORDERS';
  10. constructor(
  11. private location: Location
  12. ) { }
  13. ngOnInit() {
  14. }
  15. back() {
  16. this.location.back();
  17. }
  18. }