Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: vxeTable default sort data no effect in first query #5139

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions packages/effects/plugins/src/vxe-table/use-vxe-grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
nextTick,
onMounted,
onUnmounted,
ref,
toRaw,
useSlots,
useTemplateRef,
Expand Down Expand Up @@ -140,6 +141,8 @@ const toolbarOptions = computed(() => {
return { toolbarConfig };
});

const isLoaded = ref(false);

const options = computed(() => {
const globalGridConfig = VxeUI?.getConfig()?.grid ?? {};

Expand All @@ -157,6 +160,16 @@ const options = computed(() => {
mergedOptions.proxyConfig.enabled = !!ajax;
// 不自动加载数据, 由组件控制
mergedOptions.proxyConfig.autoLoad = false;
// 修复第一次加载数据时会丢失排序参数等问题,后续如果VxeTable修复了此BUG,可以去掉这些代码
if (mergedOptions.proxyConfig.ajax?.query && !isLoaded.value) {
mergedOptions.proxyConfig.ajax.query = async () => {
isLoaded.value = true;
await nextTick();
setTimeout(() => {
props.api.query();
}, 0);
};
}
}

if (mergedOptions.pagerConfig) {
Expand Down Expand Up @@ -239,6 +252,7 @@ async function init() {
toRaw(gridOptions.value),
toRaw(globalGridConfig),
);

// 内部主动加载数据,防止form的默认值影响
const autoLoad = defaultGridOptions.proxyConfig?.autoLoad;
const enableProxyConfig = options.value.proxyConfig?.enabled;
Expand Down
Loading