瀏覽代碼

09/02 14:12

11
mo 4 年之前
父節點
當前提交
0e386af538

文件差異過大導致無法顯示
+ 0 - 0
dist/index.html


+ 1 - 1
dist/static/css/chunk-4d90ee42.71a56d0c.css → dist/static/css/chunk-4dcee16c.a91dd36c.css

@@ -1 +1 @@
-.m-core[data-v-0c84d432]{margin-top:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:distribute;justify-content:space-around}.m-core .el-input[data-v-0c84d432]{width:180px}.m-core h4[data-v-0c84d432]{font-size:16px;background-color:#ccc;color:#fff;text-align:center;width:100%;height:40px;line-height:40px;margin-bottom:20px}.m-core .center[data-v-0c84d432],.m-core .right[data-v-0c84d432],.m-core .vipLeft[data-v-0c84d432]{width:400px}.planList[data-v-0c84d432]{padding:0 25px}.planList .planTop[data-v-0c84d432]{height:40px;line-height:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid #ccc;margin-top:20px}.planList .planTop>p[data-v-0c84d432]{font-size:14px}.planList .planCore .row[data-v-0c84d432]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:40px;line-height:40px;font-size:14px;text-align:center}.planList .planCore .row div[data-v-0c84d432]{width:87px}.okBtn[data-v-0c84d432]{width:120px;height:40px;line-height:40px;text-align:center;color:#fff;border-radius:4px;margin-right:20px;cursor:pointer;background-color:#f97215;float:right}
+.m-core[data-v-1903f3e3]{margin-top:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:distribute;justify-content:space-around}.m-core .el-input[data-v-1903f3e3]{width:180px}.m-core h4[data-v-1903f3e3]{font-size:16px;background-color:#ccc;color:#fff;text-align:center;width:100%;height:40px;line-height:40px;margin-bottom:20px}.m-core .center[data-v-1903f3e3],.m-core .right[data-v-1903f3e3],.m-core .vipLeft[data-v-1903f3e3]{width:400px}.planList[data-v-1903f3e3]{padding:0 25px}.planList .planTop[data-v-1903f3e3]{height:40px;line-height:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;border-bottom:1px solid #ccc;margin-top:20px}.planList .planTop>p[data-v-1903f3e3]{font-size:14px}.planList .planCore .row[data-v-1903f3e3]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:40px;line-height:40px;font-size:14px;text-align:center}.planList .planCore .row div[data-v-1903f3e3]{width:87px}.okBtn[data-v-1903f3e3]{width:120px;height:40px;line-height:40px;text-align:center;color:#fff;border-radius:4px;margin-right:20px;cursor:pointer;background-color:#f97215;float:right}

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


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-4d90ee42.85cc7895.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/chunk-4dcee16c.50bf7ce8.js


+ 7 - 2
src/views/buildVip/index.vue

@@ -1399,7 +1399,7 @@ export default {
             Authorization: getToken()
           },
           params: {
-            rows: 100,
+            rows: 9999,
             search: query,
             organId: this.leftForm.classOrganId
           },
@@ -1411,7 +1411,12 @@ export default {
           this.remoteLoading = false
           let result = res.data
           if (result.code == 200) {
-            Array.prototype.splice.apply(this.studentList, result.data.rows);
+            // Array.prototype.splice.apply(this.studentList, result.data.rows);
+            if (result.data.rows && result.data.rows.length > 0) {
+              result.data.rows.forEach(item => {
+                this.studentList.unshift(item)
+              })
+            }
             // this.studentList = this.studentList.concat(result.data.rows);
             this.unique(this.studentList, "userId");
           }

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