Compare commits

..

No commits in common. 'aa4466c66687ae74969fbab26fd82175256523e5' and '6a0745c6651c5b2864a6f05cc241a24c3c00e0ab' have entirely different histories.

  1. 5
      src/layout/studyPage.vue

@ -22,9 +22,7 @@
<div <div
class="box" class="box"
:style="{ :style="{
backgroundImage: complete backgroundImage: isBox2Clicked ? `url(${btn1})` : `url(${btn2})`,
? `url(${btn1})`
: `url(${btn2})`,
}" }"
@click="handleBoxClick(2)" @click="handleBoxClick(2)"
> >
@ -101,7 +99,6 @@ import { ElMessage, ElMessageBox } from "element-plus";
const isShowExperiment = const isShowExperiment =
Number(localStorage.getItem("activeStepIndex")) == 12 ? true : false; Number(localStorage.getItem("activeStepIndex")) == 12 ? true : false;
const router = useRouter(); const router = useRouter();
const complete = localStorage.getItem('complete')
const user = userStore(); const user = userStore();
const loginFn = () => { const loginFn = () => {
// user.token ? router.push("/spacePage") : ""; // user.token ? router.push("/spacePage") : "";

Loading…
Cancel
Save