lsc 2 年之前
父節點
當前提交
2ee82d4696

+ 1 - 1
dist/index.html

@@ -18,7 +18,7 @@
       border-radius: 10px;
       -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
       background-color: rgba(0, 0, 0, 0.1);
-    }</style><link href=./static/css/app.f3e79c4634de6744f0b14f4d291695e5.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.b9b15ae4f82d2f85be9d.js></script><script type=text/javascript src=./static/js/app.19589bc371773a6d9e17.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.9754e78d86cf70b813401d5206629b47.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.b9b15ae4f82d2f85be9d.js></script><script type=text/javascript src=./static/js/app.9749e39812fa17c6d9b7.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

文件差異過大導致無法顯示
+ 0 - 0
dist/static/css/app.9754e78d86cf70b813401d5206629b47.css


文件差異過大導致無法顯示
+ 0 - 0
dist/static/css/app.9754e78d86cf70b813401d5206629b47.css.map


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.19589bc371773a6d9e17.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.9749e39812fa17c6d9b7.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.9749e39812fa17c6d9b7.js.map


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/manifest.3ad1d5771e9b13dbdad2.js.map


+ 26 - 6
src/components/studentIndex.vue

@@ -268,6 +268,26 @@ export default {
           }
         }
       } else if (typeName == "主题") {
+        if (type == 1) {
+          if (this.typeE.indexOf(typeid) != -1) {
+            this.typeE.splice(this.typeE.indexOf(typeid), 1);
+          } else {
+            this.typeE.push(typeid);
+            if (this.typef != "") {
+              this.typef = "";
+            }
+          }
+        } else {
+          if (this.typef == typeid) {
+            this.typef = "";
+          } else {
+            this.typef = typeid;
+            if (this.typeE.indexOf(ftypeId) != -1) {
+              this.typeE.splice(this.typeE.indexOf(ftypeId), 1);
+            }
+          }
+        }
+      } else if (typeName == "赛道") {
         if (type == 1) {
           if (this.typeE.indexOf(typeid) != -1) {
             this.typeE.splice(this.typeE.indexOf(typeid), 1);
@@ -287,21 +307,21 @@ export default {
             }
           }
         }
-      } else if (typeName == "赛道") {
+      } else if (typeName == "项目类型") {
         if (type == 1) {
           if (this.typeE.indexOf(typeid) != -1) {
             this.typeE.splice(this.typeE.indexOf(typeid), 1);
           } else {
             this.typeE.push(typeid);
-            if (this.typef != "") {
-              this.typef = "";
+            if (this.typed != "") {
+              this.typed = "";
             }
           }
         } else {
-          if (this.typef == typeid) {
-            this.typef = "";
+          if (this.typed == typeid) {
+            this.typed = "";
           } else {
-            this.typef = typeid;
+            this.typed = typeid;
             if (this.typeE.indexOf(ftypeId) != -1) {
               this.typeE.splice(this.typeE.indexOf(ftypeId), 1);
             }

部分文件因文件數量過多而無法顯示