fix: bug#16326

This commit is contained in:
XieYongHong 2023-07-15 14:37:54 +08:00
parent 9755d174fe
commit 37868fd908
1 changed files with 3 additions and 3 deletions

View File

@ -235,7 +235,7 @@ const columns = [
type: 'select',
options: () =>
new Promise((resolve) => {
queryNoPagingPost({
query({
paging: false,
sorts: [
{
@ -246,8 +246,8 @@ const columns = [
}).then((resp: any) => {
resolve(
resp.result.map((item: any) => ({
label: item.name,
value: item.id,
label: item.sourceName,
value: item.sourceId,
})),
);
});