tab1.page.ts 689 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'app-tab1',
  4. templateUrl: 'tab1.page.html',
  5. styleUrls: ['tab1.page.scss']
  6. })
  7. export class Tab1Page {
  8. isSignedIn: boolean = false;
  9. signIn() {
  10. if (!this.isSignedIn) {
  11. this.isSignedIn = true;
  12. } else {
  13. alert('您今天已经签到过了!');
  14. }
  15. }
  16. //时钟
  17. currentTime: Date = new Date();
  18. constructor() { }
  19. ngOnInit(): void {
  20. setInterval(() => {
  21. this.currentTime = new Date();
  22. }, 1000);
  23. }
  24. customItems:Array<any> = [
  25. {title:"游戏"},
  26. {title:"历史"},
  27. {title:"仙侠"},
  28. {title:"武侠"},
  29. {title:"科幻"},
  30. {title:"悬疑"},
  31. ]
  32. }