Browse Source

增加小班查询参数

gcz 2 years ago
parent
commit
8a7d531529
3 changed files with 10 additions and 5 deletions
  1. 3 2
      src/components/typeslide.vue
  2. 2 1
      src/service/index.js
  3. 5 2
      src/views/index.vue

+ 3 - 2
src/components/typeslide.vue

@@ -48,7 +48,7 @@
         },
         methods: {
             leftClick(){
-                console.log('arryIndex',this.arryIndex);
+                // console.log('arryIndex',this.arryIndex);
                 if(this.arryIndex>0){
                     this.arryIndex-=1
                 }
@@ -59,7 +59,8 @@
                 }
             },
             itemClick(item,index){
-                this.activeItem = index
+                this.activeItem = index;
+                console.log('itemClick item', item);
             }
         },
     }

+ 2 - 1
src/service/index.js

@@ -5,9 +5,10 @@ import { callApi } from '../utils/request'
 
 export * from './mock'
 
-export const rightScrollData = () =>
+export const rightScrollData = (data) =>
     callApi({
         url: 'smallClass',
+        data,
         prefixUrl: 'api2',
     })
 

+ 5 - 2
src/views/index.vue

@@ -197,7 +197,7 @@
     watch: {
       xiaobaninput: {
           handler: function() {
-           debounce(this.xiaobansearch, 1000, false)
+           debounce(this.xiaobansearch, 500, false)
           }
       },
     },
@@ -254,7 +254,10 @@
         })
       },
       getRightScrollData(){
-        rightScrollData().then(res=>{
+        let param = {
+          smallNumber : this.xiaobaninput
+        }
+        rightScrollData(param).then(res=>{
           // console.log('this.scrollBoardConfig',this.scrollBoardConfig);
           this.scrollBoardConfig.data = [];
           res.rows.forEach(element => {