fix: 请求超时时间配置

This commit is contained in:
TsMask
2023-09-22 11:14:40 +08:00
parent 2b5aecc570
commit 021446b04b
3 changed files with 14 additions and 25 deletions

View File

@@ -6,7 +6,7 @@ import { message } from 'ant-design-vue/lib';
import { SizeType } from 'ant-design-vue/lib/config-provider';
import { MenuInfo } from 'ant-design-vue/lib/menu/src/interface';
import { ColumnsType } from 'ant-design-vue/lib/table';
import { list5gBase } from '@/api/neUser/base5G';
import { listBase5G } from '@/api/neUser/base5G';
import useNeInfoStore from '@/store/modules/neinfo';
import useI18n from '@/hooks/useI18n';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
@@ -127,8 +127,7 @@ function fnTableSize({ key }: MenuInfo) {
function fnGetList() {
if (tableState.loading) return;
tableState.loading = true;
list5gBase(toRaw(queryParams)).then(res => {
console.log(res);
listBase5G(toRaw(queryParams)).then(res => {
if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.rows)) {
// 取消勾选
if (tableState.selectedRowKeys.length > 0) {
@@ -136,9 +135,6 @@ function fnGetList() {
}
tablePagination.total = res.total;
tableState.data = res.rows;
} else {
tablePagination.total = 0;
tableState.data = [];
}
tableState.loading = false;
});