|
@@ -305,31 +305,38 @@ export default defineComponent({
|
|
|
let type = proxyData.type;
|
|
|
// 第3部分
|
|
|
|
|
|
- // let timer = setTimeout(function () {
|
|
|
- // $(skSlogan).fadeOut();
|
|
|
- // $(aniThree).show();
|
|
|
- // $(logoLeft).addClass("logoLeftAni");
|
|
|
- // $(logoRight).addClass("logoRightAni");
|
|
|
- // $(line).addClass("lineAni");
|
|
|
- // $(text).addClass("lineAni");
|
|
|
- // clearTimeout(timer);
|
|
|
- // let time2 = setTimeout(() => {
|
|
|
- // clearTimeout(time2);
|
|
|
- // console.log("/weather" + "?type=" + type);
|
|
|
- // router.push({
|
|
|
- // path: "/weather",
|
|
|
- // query: { type: proxyData.type },
|
|
|
- // });
|
|
|
- // }, 30000);
|
|
|
- // }, 30000);
|
|
|
- let time2 = setTimeout(() => {
|
|
|
- clearTimeout(time2);
|
|
|
- console.log("/weather" + "?type=" + type);
|
|
|
- router.push({
|
|
|
- path: "/weather",
|
|
|
- query: { type: proxyData.type },
|
|
|
- });
|
|
|
+ /**
|
|
|
+ * 需要第三个画面的时候
|
|
|
+ */
|
|
|
+ let timer = setTimeout(function() {
|
|
|
+ $(skSlogan).fadeOut();
|
|
|
+ $(aniThree).show();
|
|
|
+ $(logoLeft).addClass("logoLeftAni");
|
|
|
+ $(logoRight).addClass("logoRightAni");
|
|
|
+ $(line).addClass("lineAni");
|
|
|
+ $(text).addClass("lineAni");
|
|
|
+ clearTimeout(timer);
|
|
|
+ let time2 = setTimeout(() => {
|
|
|
+ clearTimeout(time2);
|
|
|
+ console.log("/weather" + "?type=" + type);
|
|
|
+ router.push({
|
|
|
+ path: "/weather",
|
|
|
+ query: { type: proxyData.type },
|
|
|
+ });
|
|
|
+ }, 30000);
|
|
|
}, 30000);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除第三部分的时候用此代码
|
|
|
+ */
|
|
|
+ // let time2 = setTimeout(() => {
|
|
|
+ // clearTimeout(time2);
|
|
|
+ // console.log("/weather" + "?type=" + type);
|
|
|
+ // router.push({
|
|
|
+ // path: "/weather",
|
|
|
+ // query: { type: proxyData.type },
|
|
|
+ // });
|
|
|
+ // }, 30000);
|
|
|
});
|
|
|
},
|
|
|
// 动态修改样式
|