|
@@ -53,7 +53,7 @@ export class ESService {
|
|
|
const initIndexUrl = `${this.esServiceHttpPrefix}/init/indices`;
|
|
|
const result = await Axios.post(initIndexUrl, {}, { responseType: 'json' });
|
|
|
if (result.status !== 200) return;
|
|
|
- const tableList = get(result, 'data');
|
|
|
+ const tableList = get(result, 'data.data', []);
|
|
|
if (!tableList) return;
|
|
|
for (const index of tableList) {
|
|
|
this.initData(index);
|