lsc 1 year ago
parent
commit
7823a2495b

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.55c773f9e3591c18e8cb3b67b11ca5cb.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.c5d1efab7d501135f7d9.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.59a691058a93c9e33e229217fdad07f3.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.33ff8205ee12af8694e2.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.55c773f9e3591c18e8cb3b67b11ca5cb.css.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.59a691058a93c9e33e229217fdad07f3.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.59a691058a93c9e33e229217fdad07f3.css.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.33ff8205ee12af8694e2.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.33ff8205ee12af8694e2.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.c5d1efab7d501135f7d9.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


+ 4 - 0
src/components/pages/dataBoard/course/index.vue

@@ -131,6 +131,9 @@ export default {
     oid: {
       type: String,
     },
+    org: {
+      type: String,
+    },
   },
   data() {
     return {
@@ -151,6 +154,7 @@ export default {
       let params = [
         {
           oid: this.oid,
+          org: this.org,
         },
       ];
       this.ajax

+ 5 - 4
src/components/pages/dataBoard/index.vue

@@ -16,10 +16,10 @@
       </div>
     </div>
     <div class="db_body">
-      <school v-if="type == 1" :oid="oid"></school>
-      <course v-if="type == 2" :oid="oid"></course>
-      <student v-if="type == 3" :oid="oid"></student>
-      <teacher v-if="type == 4" :oid="oid"></teacher>
+      <school v-if="type == 1" :oid="oid" :org="org"></school>
+      <course v-if="type == 2" :oid="oid" :org="org"></course>
+      <student v-if="type == 3" :oid="oid" :org="org"></student>
+      <teacher v-if="type == 4" :oid="oid" :org="org"></teacher>
     </div>
   </div>
 </template>
@@ -40,6 +40,7 @@ export default {
     return {
       type: 1,
       oid: this.$route.query.oid,
+      org: this.$route.query.org,
     };
   },
   methods: {

+ 4 - 0
src/components/pages/dataBoard/school/index.vue

@@ -204,6 +204,9 @@ export default {
     oid: {
       type: String,
     },
+    org: {
+      type: String,
+    },
   },
   data() {
     return {
@@ -230,6 +233,7 @@ export default {
       let params = [
         {
           oid: this.oid,
+          org: this.org,
         },
       ];
       this.ajax

+ 4 - 0
src/components/pages/dataBoard/student/index.vue

@@ -177,6 +177,9 @@ export default {
     oid: {
       type: String,
     },
+    org: {
+      type: String,
+    },
   },
   components: {
     loginCount,
@@ -204,6 +207,7 @@ export default {
       let params = [
         {
           oid: this.oid,
+          org: this.org,
         },
       ];
       this.ajax

+ 4 - 0
src/components/pages/dataBoard/teacher/index.vue

@@ -239,6 +239,9 @@ export default {
     oid: {
       type: String,
     },
+    org: {
+      type: String,
+    },
   },
   data() {
     return {
@@ -263,6 +266,7 @@ export default {
       let params = [
         {
           oid: this.oid,
+          org: this.org,
         },
       ];
       this.ajax

Some files were not shown because too many files changed in this diff