Commit 32cf463c authored by 程卓's avatar 程卓

增加自定义字段的接口的pagesize

parent e252e6eb
...@@ -239,7 +239,8 @@ export default { ...@@ -239,7 +239,8 @@ export default {
await this.$ajax.get({ await this.$ajax.get({
url: this.$api.GET_TBLS_KEYS, url: this.$api.GET_TBLS_KEYS,
params: { params: {
tbl: this.tbl tbl: this.tbl,
pageSize: 10000
} }
}).then(res => { }).then(res => {
if (res.code == 200) { if (res.code == 200) {
......
...@@ -728,7 +728,7 @@ export default { ...@@ -728,7 +728,7 @@ export default {
getExt(){ getExt(){
this.$ajax.get({ this.$ajax.get({
url: this.$api.GET_TBLS_KEYS, url: this.$api.GET_TBLS_KEYS,
params: { tbl: 'tbl_community', pageSize: 1000 } params: { tbl: 'tbl_community', pageSize: 10000 }
}).then(res => { }).then(res => {
if (res.code == 200) { if (res.code == 200) {
//先获取全部的自定义字段列表 //先获取全部的自定义字段列表
......
...@@ -914,7 +914,10 @@ export default { ...@@ -914,7 +914,10 @@ export default {
getExt(){ getExt(){
this.$ajax.get({ this.$ajax.get({
url: this.$api.GET_TBLS_KEYS, url: this.$api.GET_TBLS_KEYS,
params: { tbl: this.tbl } params: {
tbl: this.tbl,
pageSize: 10000
}
}).then(res => { }).then(res => {
if (res.code == 200) { if (res.code == 200) {
//先获取全部的自定义字段列表 //先获取全部的自定义字段列表
......
...@@ -278,7 +278,7 @@ export default { ...@@ -278,7 +278,7 @@ export default {
url: this.$api.GET_TBLS_KEYS, url: this.$api.GET_TBLS_KEYS,
params: { params: {
tbl: params, tbl: params,
pageSize: this.pagination.pageSize, pageSize: 10000,
pageNo: this.pagination.current pageNo: this.pagination.current
}, },
}).then(res => { }).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