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";
+ }