提交 ac977010 编写于 作者: huangwensu's avatar huangwensu

web端头部不显示

上级 f8828386
...@@ -81,7 +81,7 @@ export default { ...@@ -81,7 +81,7 @@ export default {
data() { data() {
return { return {
step1: false, step1: false,
step2: true, step2: false,
step3: false, step3: false,
step4: false, step4: false,
progressText: "", progressText: "",
...@@ -90,41 +90,41 @@ export default { ...@@ -90,41 +90,41 @@ export default {
}; };
}, },
watch: { watch: {
// currentProgress(n,o) { currentProgress(n,o) {
// let _this = this; let _this = this;
// if(n == 1) { // 项目学习 if(n == 1) { // 项目学习
// _this.step1 = true; _this.step1 = true;
// _this.step2 = false; _this.step2 = false;
// _this.step3 = false; _this.step3 = false;
// _this.step4 = false; _this.step4 = false;
// }else if(n == 2) { // 申请学分 }else if(n == 2) { // 申请学分
// _this.step1 = false; _this.step1 = false;
// _this.step2 = true; _this.step2 = true;
// _this.step3 = false; _this.step3 = false;
// _this.step4 = false; _this.step4 = false;
// _this.showTip = true; _this.showTip = true;
// setInterval(() => { setInterval(() => {
// _this.showTip = false; _this.showTip = false;
// },5000) },5000)
// }else if(n == 3) { // 学分审核 }else if(n == 3) { // 学分审核
// _this.step1 = false; _this.step1 = false;
// _this.step2 = false; _this.step2 = false;
// _this.step3 = true; _this.step3 = true;
// _this.step4 = false; _this.step4 = false;
// _this.progressText = "审核中"; _this.progressText = "审核中";
// }else if(n == 4) { // 审核失败 }else if(n == 4) { // 审核失败
// _this.step1 = false; _this.step1 = false;
// _this.step2 = false; _this.step2 = false;
// _this.step3 = true; _this.step3 = true;
// _this.step4 = false; _this.step4 = false;
// _this.progressText = "审核失败"; _this.progressText = "审核失败";
// }else if(n == 5) { // 申请成功 }else if(n == 5) { // 申请成功
// _this.step1 = false; _this.step1 = false;
// _this.step2 = false; _this.step2 = false;
// _this.step3 = false; _this.step3 = false;
// _this.step4 = true; _this.step4 = true;
// } }
// } }
}, },
created() {}, created() {},
methods: { methods: {
......
<template> <template>
<section :class="isFixNavbar ? 'nav-top fixed' : 'nav-top'" :style="'height:' + navHeight"> <section v-if="!isWeb" :class="isFixNavbar ? 'nav-top fixed' : 'nav-top'" :style="'height:' + navHeight">
<!-- <section v-if="isWeb" :class="isFixNavbar ? 'nav-top fixed' : 'nav-top'"> --> <!-- <section v-if="isWeb" :class="isFixNavbar ? 'nav-top fixed' : 'nav-top'"> -->
<div <div
class="nav-part" class="nav-part"
......
...@@ -96,9 +96,7 @@ ...@@ -96,9 +96,7 @@
import CommonNavbar from "@/components/common/common-navbar"; import CommonNavbar from "@/components/common/common-navbar";
import CommonDescription from "@/components/common/common-description"; import CommonDescription from "@/components/common/common-description";
import CommonSpliteLine from "@/components/common/common-splite-line"; import CommonSpliteLine from "@/components/common/common-splite-line";
// import CommonTitle from "@/components/common/common-title";
// import CertShow from "@/components/business/cert-show";
// import CellListItem from "@/components/business/cell-list-item";
import CellListDetail from "@/components/business/cell-list-detail"; import CellListDetail from "@/components/business/cell-list-detail";
// import NoPermContent from "@/components/business/no-perm-content"; // import NoPermContent from "@/components/business/no-perm-content";
// import CommonBannerVideo from "@/components/common/common-banner-video"; // import CommonBannerVideo from "@/components/common/common-banner-video";
...@@ -209,9 +207,6 @@ export default { ...@@ -209,9 +207,6 @@ export default {
let _this = this; let _this = this;
this.from = this.$route.query.from || this.from || "native"; this.from = this.$route.query.from || this.from || "native";
this.projectId = this.$route.query.id || 1; this.projectId = this.$route.query.id || 1;
//this.componentId = this.$route.query.componentId;
// this.moduleId = this.$route.query.moduleId;
//this.moduleName = this.$route.query.moduleName;
this.courseRequire = this.$route.query.courseRequire; this.courseRequire = this.$route.query.courseRequire;
window.__getUserInfo64Comp = function(param) { window.__getUserInfo64Comp = function(param) {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册