|
@@ -77,7 +77,12 @@ export default {
|
|
|
methods: {
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
- tableInfoList(this.queryParams).then((response) => {
|
|
|
+ tableInfoList({
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ databaseType: this.$store.state.user.dataSource.databaseType,
|
|
|
+ databaseName: this.$store.state.user.dataSource.databaseName,
|
|
|
+ }).then((response) => {
|
|
|
this.aaaList = response.data;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|