Skip to content

Commit

Permalink
lookup字段未弹出列表时,查选项值对应的label,即loadOptions模式的情况下不应该把列表搜索表单change事件中记住的临…
Browse files Browse the repository at this point in the history
…时搜索条件带上

steedos/steedos-platform#6043
  • Loading branch information
yinlianghui committed Dec 31, 2023
1 parent a5c8bef commit 2e17207
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,9 @@ export async function lookupToAmisPicker(field, readonly, ctx){
// 有时在搜索表单中输入过滤条件事,忘记点击回车键或搜索按钮,而是进一步修改快速搜索框中的关键字点击其中回车键触发搜索
// 这种情况下,触发的搜索请求中没有带上搜索表单中输入的过滤条件。
// 反过来先在快速搜索框中输入过滤条件却不点击其中回车键触发搜索,而是到搜索表单中触发搜索请求也是一样的。
Object.assign(api.data.$self, __changedSearchBoxValues, __changedFilterFormValues);
if(api.data.$self.op !== 'loadOptions'){
Object.assign(api.data.$self, __changedSearchBoxValues, __changedFilterFormValues);
}
const selfData = JSON.parse(JSON.stringify(api.data.$self));
var filters = [];
var pageSize = api.data.pageSize || 10;
Expand Down

0 comments on commit 2e17207

Please sign in to comment.