wuhongyu 4 years ago
parent
commit
7673d96645
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/layout/room/detailInfo.vue
  2. 1 1
      src/views/room/index.vue

+ 1 - 1
src/layout/room/detailInfo.vue

@@ -9,7 +9,7 @@
             </el-form-item>
 
             <el-form-item label="主播" prop="anchorid">
-              <el-select v-model="form.anchorid" placeholder="请选择主播">
+              <el-select v-model="form.anchorid" placeholder="请选择主播" filterable>
                 <el-option v-for="item in newlist" :key="item.id" :label="item.name" :value="item.id"> </el-option>
               </el-select>
             </el-form-item>

+ 1 - 1
src/views/room/index.vue

@@ -77,7 +77,7 @@ export default {
     },
 
     async searchinfo() {
-      let res = await this.roomuserquery();
+      let res = await this.roomuserquery((skip = 0), (limit = 100000));
       console.log(res.data);
       this.$set(this, `clientList`, res.data);
     },