You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
|
7 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
import { ElementRef} from '@angular/core';
|
||
|
|
import { NavController } from '@ionic/angular';
|
||
|
|
import { TranslatorService } from 'src/app/hmg-common/services/translator/translator.service';
|
||
|
|
import { CommonService } from 'src/app/hmg-common/services/common/common.service';
|
||
|
|
import { SharedDataService } from 'src/app/hmg-common/services/shared-data-service/shared-data.service';
|
||
|
|
@Component({
|
||
|
|
selector: 'app-sms-page',
|
||
|
|
templateUrl: './sms-page.page.html',
|
||
|
|
styleUrls: ['./sms-page.page.scss'],
|
||
|
|
})
|
||
|
|
export class SmsPagePage implements OnInit {
|
||
|
|
|
||
|
|
Channel: number=0;
|
||
|
|
activationCode: string;
|
||
|
|
P_SESSION_ID: number;
|
||
|
|
timeInSeconds: any;
|
||
|
|
time:any;
|
||
|
|
runTimer:any;
|
||
|
|
hasStarted: any;
|
||
|
|
hasFinished: any;
|
||
|
|
remainingTime:any;
|
||
|
|
displayTime:any;
|
||
|
|
loginTokenID:string;
|
||
|
|
public isForgetPwd:boolean=false;
|
||
|
|
public isExpiredPwd:boolean=false;
|
||
|
|
public count:number=0;
|
||
|
|
|
||
|
|
constructor(public navCtrl: NavController,
|
||
|
|
public translate: TranslatorService,
|
||
|
|
public common:CommonService,
|
||
|
|
private elementRef:ElementRef,
|
||
|
|
public sharedData:SharedDataService) { }
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|