Commit 59376f5f authored by 程卓's avatar 程卓

Merge branch 'dev' into xuhui

parents 36a7cd1f 32cf463c
......@@ -239,7 +239,8 @@ export default {
await this.$ajax.get({
url: this.$api.GET_TBLS_KEYS,
params: {
tbl: this.tbl
tbl: this.tbl,
pageSize: 10000
}
}).then(res => {
if (res.code == 200) {
......
......@@ -728,7 +728,7 @@ export default {
getExt(){
this.$ajax.get({
url: this.$api.GET_TBLS_KEYS,
params: { tbl: 'tbl_community', pageSize: 1000 }
params: { tbl: 'tbl_community', pageSize: 10000 }
}).then(res => {
if (res.code == 200) {
//先获取全部的自定义字段列表
......
......@@ -914,7 +914,10 @@ export default {
getExt(){
this.$ajax.get({
url: this.$api.GET_TBLS_KEYS,
params: { tbl: this.tbl }
params: {
tbl: this.tbl,
pageSize: 10000
}
}).then(res => {
if (res.code == 200) {
//先获取全部的自定义字段列表
......
......@@ -278,7 +278,7 @@ export default {
url: this.$api.GET_TBLS_KEYS,
params: {
tbl: params,
pageSize: this.pagination.pageSize,
pageSize: 10000,
pageNo: this.pagination.current
},
}).then(res => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment