lsc 2 years ago
parent
commit
0f6888b9d3

+ 1 - 1
beifeng/index.html

@@ -18,4 +18,4 @@
       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.2fee87f46b3264d4cc578d455588681a.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.b786a8947e1f5a7b4973.js></script><script type=text/javascript src=./static/js/app.a13d38829c35aac472f5.js></script></body></html><script>document.domain = "cocorobo.cn"</script>
+    }</style><link href=./static/css/app.2a7740bc70ccabc77cd52569b4835cd6.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.b786a8947e1f5a7b4973.js></script><script type=text/javascript src=./static/js/app.b9a869e88fcf68a91fb2.js></script></body></html><script>document.domain = "cocorobo.cn"</script>

File diff suppressed because it is too large
+ 0 - 0
beifeng/static/css/app.2a7740bc70ccabc77cd52569b4835cd6.css


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/css/app.2a7740bc70ccabc77cd52569b4835cd6.css.map


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/css/app.2fee87f46b3264d4cc578d455588681a.css


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/css/app.2fee87f46b3264d4cc578d455588681a.css.map


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/css/app.a4d03f021441050078f4a5f13459b7d3.css


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/css/app.a4d03f021441050078f4a5f13459b7d3.css.map


BIN
beifeng/static/img/answerBg.93bcd2c.png


BIN
beifeng/static/img/answerBorder.6d7e9d0.png


BIN
beifeng/static/img/noImg.6fc4bfe.png


BIN
beifeng/static/img/pptImg.9367c4a.png


BIN
beifeng/static/img/stuBg.f8fe622.png


BIN
beifeng/static/img/titleBorder.453cad3.png


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/js/app.1b2c2d8dd2397762f6a4.js


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/js/app.1b2c2d8dd2397762f6a4.js.map


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


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


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/js/app.b9a869e88fcf68a91fb2.js.map


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/js/manifest.3ad1d5771e9b13dbdad2.js.map


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/js/vendor.58e4d5b3fd0c569e76aa.js


File diff suppressed because it is too large
+ 0 - 0
beifeng/static/js/vendor.58e4d5b3fd0c569e76aa.js.map


+ 7 - 5
src/components/studyStudent.vue

@@ -3494,7 +3494,7 @@ export default {
                 break;
               }
             }
-            if(a === 1){
+            if (a === 1) {
               this.commentDetail = []
               this.commentIndexJson = {}
               this.commentDialogVisible = false;
@@ -5197,9 +5197,11 @@ export default {
           } else {
             this.isClickNav = "video0";
           }
-          setTimeout(() => {
-            this.checkEva();
-          }, 500);
+          this.$nextTick(() => {
+            setTimeout(() => {
+              this.checkEva();
+            }, 1000);
+          })
           this.selectStudent();
           this.selectSWorks();
           this.selectSLook();
@@ -6498,7 +6500,7 @@ export default {
       };
     },
   },
-  created() {
+  mounted() {
     if (this.screenType == 2) {
       window.parent.postMessage({ allScreen: 4 }, "*");
     } else if (this.screenType == 3) {

+ 2 - 2
src/components/tools/seeBoard.vue

@@ -80,7 +80,7 @@ export default {
         _array.push({ name: _item.name, value: count, children: [] });
         let j = 0;
         for (var item2 in _item.child) {
-          let num2 = Object.keys(res);
+          let num2 = Object.keys(_item.child);
           let count2 = count / num2.length;
           let _item2 = _item.child[item2];
           _array[i].children.push({
@@ -89,7 +89,7 @@ export default {
             children: [],
           });
           for (var item3 in _item2.child) {
-            let num3 = Object.keys(res);
+            let num3 = Object.keys(_item2.child);
             let count3 = count2 / num3.length;
             let _item3 = _item2.child[item3];
             _array[i].children[j].children.push({

+ 2 - 2
src/components/tools/sunburst.vue

@@ -67,7 +67,7 @@ export default {
         _array.push({ name: _item.name, value: count, children: [] });
         let j = 0;
         for (var item2 in _item.child) {
-          let num2 = Object.keys(res);
+          let num2 = Object.keys(_item.child);
           let count2 = count / num2.length;
           let _item2 = _item.child[item2];
           _array[i].children.push({
@@ -76,7 +76,7 @@ export default {
             children: [],
           });
           for (var item3 in _item2.child) {
-            let num3 = Object.keys(res);
+            let num3 = Object.keys(_item2.child);
             let count3 = count2 / num3.length;
             let _item3 = _item2.child[item3];
             _array[i].children[j].children.push({

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