From 2f8bca744d68856fd8831c74cba94006aabf6d05 Mon Sep 17 00:00:00 2001 From: chenjingyu Date: Sun, 18 Oct 2020 10:40:38 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E6=94=B9]=E4=B8=8B=E4=B8=80=E6=AD=A5?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/ui/first-step/first-step.component.html | 4 ++-- src/app/ui/first-step/first-step.component.ts | 5 ++++- src/app/ui/luck-draw/luck-draw.component.ts | 7 +++++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/app/ui/first-step/first-step.component.html b/src/app/ui/first-step/first-step.component.html index 96a1e89..05147f7 100644 --- a/src/app/ui/first-step/first-step.component.html +++ b/src/app/ui/first-step/first-step.component.html @@ -4,7 +4,7 @@ * @Author: sueRimn * @Date: 2020-09-25 08:48:50 * @LastEditors: sueRimn - * @LastEditTime: 2020-10-18 10:19:02 + * @LastEditTime: 2020-10-18 10:38:08 -->
@@ -64,7 +64,7 @@
-
+
diff --git a/src/app/ui/first-step/first-step.component.ts b/src/app/ui/first-step/first-step.component.ts index 37c1e9f..0669409 100644 --- a/src/app/ui/first-step/first-step.component.ts +++ b/src/app/ui/first-step/first-step.component.ts @@ -70,5 +70,8 @@ export class FirstStepComponent implements OnInit { startAngle:0, //开始角度 bRotate:false //false:停止;ture:旋转 }; - + //跳转第二个页面 + nextStep(){ + window.location.href="/twoStep"; + } } diff --git a/src/app/ui/luck-draw/luck-draw.component.ts b/src/app/ui/luck-draw/luck-draw.component.ts index 798dccf..9533f12 100644 --- a/src/app/ui/luck-draw/luck-draw.component.ts +++ b/src/app/ui/luck-draw/luck-draw.component.ts @@ -4,7 +4,7 @@ * @Author: sueRimn * @Date: 2020-09-25 08:48:50 * @LastEditors: sueRimn - * @LastEditTime: 2020-10-18 10:02:26 + * @LastEditTime: 2020-10-18 10:39:53 */ import { Component, OnInit } from '@angular/core'; import { from } from 'rxjs'; @@ -64,7 +64,10 @@ export class LuckDrawComponent implements OnInit { bRotate:false //false:停止;ture:旋转 }; - + //跳转第三个页面 + nextStep(){ + window.location.href="/twoStep"; + }