App.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <template>
  2. <div id="app">
  3. <div class="app_head" :class="{stuWidth:$route.path == '/student'}">
  4. <div class="logo"></div>
  5. <span style="margin-left: 10px; color: #fff; font-weight: 600"
  6. >PBL项目管理平台</span
  7. >
  8. <div class="user_head" v-if="this.$store.state.isLogin">
  9. <div class="noticeBox">
  10. <i class="noticeI" @click="goTo('/works')"></i>
  11. <span v-if="this.$store.state.nCount != 0">{{
  12. this.$store.state.nCount > 99 ? "99+" : this.$store.state.nCount
  13. }}</span>
  14. </div>
  15. <span class="user_name">{{
  16. this.$store.state.userInfo ? this.$store.state.userInfo.name : "用户"
  17. }}</span>
  18. <div>
  19. <i class="exitI"></i>
  20. <el-button type="text" style="color: white" @click="exit"
  21. >退出</el-button
  22. >
  23. </div>
  24. </div>
  25. </div>
  26. <div style="height: calc(100% - 67.5px)">
  27. <!-- main 内容 -->
  28. <keep-alive v-if="$route.meta.keepAlive">
  29. <!-- 这里是会被缓存的视图组件 -->
  30. <router-view
  31. v-if="$route.meta.keepAlive"
  32. :class="{ pb_body: isShowNav }"
  33. />
  34. </keep-alive>
  35. <!-- 这里是不被缓存的视图组件 -->
  36. <router-view
  37. v-if="!$route.meta.keepAlive"
  38. :class="{ pb_body: isShowNav }"
  39. />
  40. <!-- 底部导航 -->
  41. <footer-nav
  42. v-if="isShowNav"
  43. :luyou="this.$store.state.luyou"
  44. ></footer-nav>
  45. </div>
  46. </div>
  47. </template>
  48. <script>
  49. import leftBar from "./components/tools/leftBar";
  50. import { Message } from "element-ui";
  51. export default {
  52. name: "App",
  53. data() {
  54. return {
  55. isShowNav: true, // 是否显示导航 Tab
  56. navTabs: [
  57. "/class",
  58. "/course",
  59. "/data",
  60. "/notice",
  61. "/student",
  62. "/works",
  63. "/course/courseDetail",
  64. "/library",
  65. // "/course/addCourse",
  66. // "/ask",
  67. // "/ask/askList",
  68. ], // 导航
  69. };
  70. },
  71. components: {
  72. "footer-nav": leftBar,
  73. },
  74. created: function () {
  75. this.routerP();
  76. // this.getnCount();
  77. setInterval(() => {
  78. // this.getnCount();
  79. }, 60000);
  80. },
  81. methods: {
  82. isLogin() {
  83. const loading = this.$loading.service({
  84. background: "rgba(255, 255, 255)",
  85. target: document.querySelector("body"),
  86. });
  87. var _isLogin = this.$cookies.get("tlogin");
  88. var userInfo = this.$cookies.get("teacherInfo");
  89. // if (_isLogin == "1" && userInfo) {
  90. loading.close();
  91. this.$store.commit("update", ["isLogin", true]);
  92. // var info = JSON.parse(window.sessionStorage.getItem("userInfo"));
  93. this.$store.commit("update", ["userInfo", userInfo]);
  94. let router_path = this.$route.path;
  95. if(router_path == "/"){
  96. this.$router.push("/course");
  97. }
  98. // } else {
  99. // this.$store.commit("update", ["isLogin", false]);
  100. // Message({
  101. // message: "未登录,请登录",
  102. // type: "warning",
  103. // });
  104. // setTimeout(() => {
  105. // loading.close();
  106. // this.$router.push("/login");
  107. // }, 2000);
  108. // }
  109. },
  110. getnCount() {
  111. let params = {
  112. bid: this.$store.state.userInfo.userid,
  113. };
  114. this.ajax
  115. .get(this.$store.state.api + "getNcount", params)
  116. .then((res) => {
  117. console.log(res);
  118. if (res.data[0].length > 0) {
  119. this.$store.commit("update", ["nCount", res.data[0][0].num]);
  120. } else {
  121. this.$store.commit("update", ["nCount", 0]);
  122. }
  123. })
  124. .catch((err) => {
  125. console.error(err);
  126. });
  127. },
  128. routerP() {
  129. const { navTabs } = this.$data;
  130. let router_path = this.$route.path;
  131. console.log(router_path);
  132. if (router_path != "/login") {
  133. this.isLogin();
  134. }
  135. var a = 0;
  136. for (var i = 0; i < navTabs.length; i++) {
  137. if (router_path == navTabs[i]) {
  138. this.isShowNav = true;
  139. a = 1;
  140. break;
  141. }
  142. }
  143. if (a == 0) {
  144. this.isShowNav = false;
  145. }
  146. },
  147. exit() {
  148. sessionStorage.clear();
  149. this.$cookies.remove("tlogin");
  150. this.$cookies.remove("teacherInfo");
  151. this.$store.commit("update", ["isLogin", false]);
  152. this.$store.commit("update", ["userInfo", {}]);
  153. Message({
  154. message: "退出成功",
  155. type: "success",
  156. });
  157. this.$router.push("/login");
  158. },
  159. goTo(path) {
  160. this.$router.push(path);
  161. },
  162. },
  163. watch: {
  164. $route(to, from) {
  165. const { navTabs } = this.$data;
  166. const toPath = to.path;
  167. const fromName = from.name;
  168. var a = 0;
  169. for (var i = 0; i < navTabs.length; i++) {
  170. if (toPath == navTabs[i]) {
  171. this.isShowNav = true;
  172. a = 1;
  173. break;
  174. }
  175. }
  176. if (a == 0) {
  177. this.isShowNav = false;
  178. }
  179. },
  180. },
  181. };
  182. </script>
  183. <style>
  184. * {
  185. margin: 0;
  186. padding: 0;
  187. }
  188. body {
  189. font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
  190. "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  191. }
  192. #app {
  193. height: 100%;
  194. width: 100%;
  195. background: #e6eaf0;
  196. /* min-width: 1380px; */
  197. min-width: 1000px;
  198. }
  199. .app_head {
  200. height: 67.5px;
  201. width: 100%;
  202. background-color: rgb(61, 103, 188);
  203. display: flex;
  204. align-items: center;
  205. min-width: 1000px;
  206. }
  207. .logo {
  208. height: 50px;
  209. width: 50px;
  210. background: url("./assets/logo.png");
  211. background-size: 100% 100%;
  212. margin-left: 20px;
  213. }
  214. .pb_body {
  215. margin-left: 220px;
  216. width: calc(100% - 240px);
  217. /* min-width: 1140px; */
  218. min-width: 745px;
  219. display: inline-block;
  220. height: calc(100% - 100px);
  221. min-height: 750px;
  222. background: #fff;
  223. margin-top: 20px;
  224. border-radius: 5px;
  225. position: absolute;
  226. }
  227. .pb_head {
  228. font-size: 26px;
  229. /* font-weight: 600; */
  230. width: 95%;
  231. margin: 10px auto;
  232. padding: 10px 5px;
  233. border-bottom: 3px solid #eee;
  234. }
  235. .pb_content {
  236. /* height: 100%; */
  237. }
  238. .pb_content_body {
  239. width: 94%;
  240. margin: 10px auto;
  241. /* overflow: auto;
  242. height: calc(100% - 120px); */
  243. }
  244. .user_head {
  245. display: flex;
  246. align-items: center;
  247. margin-left: auto;
  248. margin-right: 20px;
  249. font-size: 18px;
  250. font-weight: 600;
  251. }
  252. .user_head .user_name {
  253. color: #fff;
  254. margin-right: 10px;
  255. }
  256. .user_head div {
  257. display: flex;
  258. align-items: center;
  259. cursor: pointer;
  260. }
  261. .user_head .exitI {
  262. background-image: url("./assets/exit.png");
  263. width: 25px;
  264. height: 25px;
  265. background-size: 100% 100%;
  266. margin-top: 1px;
  267. line-height: 25px;
  268. vertical-align: text-top;
  269. background-repeat: no-repeat;
  270. }
  271. .noticeBox {
  272. position: relative;
  273. margin-right: 10px;
  274. }
  275. .user_head .noticeI {
  276. background-image: url("./assets/icon/noticeA.png");
  277. width: 25px;
  278. height: 25px;
  279. background-size: 100% 100%;
  280. margin-top: 1px;
  281. line-height: 25px;
  282. vertical-align: text-top;
  283. background-repeat: no-repeat;
  284. cursor: pointer;
  285. }
  286. .noticeBox span {
  287. position: absolute;
  288. background: red;
  289. width: 15px;
  290. height: 15px;
  291. border-radius: 30px;
  292. color: #fff;
  293. text-align: center;
  294. font-size: 12px;
  295. display: flex;
  296. align-items: center;
  297. justify-content: center;
  298. top: -3px;
  299. right: -3px;
  300. }
  301. .stuWidth{
  302. min-width: 1180px;
  303. }
  304. </style>