Browse Source

fix: 分页条数

zhengxy 1 year ago
parent
commit
c645fb5976

+ 3 - 3
src/components/businessMoudle/batchGdt/configArea/originalityBasic/components/brand/profiles.vue

@@ -12,7 +12,7 @@
12 12
 
13 13
       <el-select class="marT15" v-model="modelValue" filterable remote remote-show-suffix :loading="loading" :remote-method="remoteMethod" placeholder="请选择一个头像及昵称跳转页,与广告创意一起展示" style="width:400px" @change="selectChange">
14 14
         <el-option
15
-          class="selfOption" 
15
+          class="selfOption"
16 16
           v-for="item in options"
17 17
           :key="item.id"
18 18
           :label="item.name"
@@ -79,7 +79,7 @@ const init = (keyword)=>{
79 79
   return new Promise((resolve) => {
80 80
     getListPage({
81 81
       page: 1,
82
-      page_size: 20,
82
+      page_size: 500,
83 83
       keyword: keyword,
84 84
       type: 'profiles'
85 85
     }).then((res:any)=>{
@@ -87,7 +87,7 @@ const init = (keyword)=>{
87 87
       resolve(true)
88 88
     })
89 89
   })
90
-  
90
+
91 91
 }
92 92
 const modelValue = ref()
93 93
 const remoteMethod = (query: string) => {