lsc 1 year ago
parent
commit
ddd1000a65

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.7f565d63bee446f896cc3133bff0beb6.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.1b8e037bd3fbbd358d74.js></script><script type=text/javascript src=./static/js/app.dfa21a4ade6fe0ae7946.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.a80c62bc1f7f8f409b107286dc82f239.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.1b8e037bd3fbbd358d74.js></script><script type=text/javascript src=./static/js/app.9a975acc094a34651ae9.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.7f565d63bee446f896cc3133bff0beb6.css.map


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


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


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


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


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


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


+ 3 - 3
src/components/pages/test/add/edit/edit/index.vue

@@ -91,13 +91,13 @@ export default {
                         if (this.manualJson[_check[0]].array[_check[1]].array) {
                                 this.manualJson[_check[0]].array[_check[1]].array.push(json)
                         } else {
-                                this.manualJson[_check[0]].array.splice((_check[1]) + 1, 0, json)
+                                this.manualJson[_check[0]].array.splice(parseInt(_check[1]) + 1, 0, json)
                         }
 
                     } else if (type == 3 && _check.length == 3) {
-                            this.manualJson[_check[0]].array[_check[1]].array.splice((_check[2]) + 1, 0, json)
+                            this.manualJson[_check[0]].array[_check[1]].array.splice(parseInt(_check[2]) + 1, 0, json)
                     } else if (type == 2 && _check.length == 2) {
-                            this.manualJson[_check[0]].array.splice((_check[1]) + 1, 0, json)
+                            this.manualJson[_check[0]].array.splice(parseInt(_check[1]) + 1, 0, json)
                     } else if (type == 2 && _check.length == 1) {
                             this.manualJson[_check[0]].array.push(json)
                     } else if (type == 3 && _check.length == 1) {

+ 3 - 3
src/components/pages/test/add/setInfo/manualCreated.vue

@@ -111,17 +111,17 @@ export default {
                             }
                         } else {
                             for (var i = 0; i < this.number; i++) {
-                                this.checkJson[_check[0]].array.splice((_check[1]) + 1, 0, json)
+                                this.checkJson[_check[0]].array.splice(parseInt(_check[1]) + 1, 0, json)
                             }
                         }
 
                     } else if (type == 3 && _check.length == 3) {
                         for (var i = 0; i < this.number; i++) {
-                            this.checkJson[_check[0]].array[_check[1]].array.splice((_check[2]) + 1, 0, json)
+                            this.checkJson[_check[0]].array[_check[1]].array.splice(parseInt(_check[2]) + 1, 0, json)
                         }
                     } else if (type == 2 && _check.length == 2) {
                         for (var i = 0; i < this.number; i++) {
-                            this.checkJson[_check[0]].array.splice((_check[1]) + 1, 0, json)
+                            this.checkJson[_check[0]].array.splice(parseInt(_check[1]) + 1, 0, json)
                         }
                     } else if (type == 2 && _check.length == 1) {
                         for (var i = 0; i < this.number; i++) {

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