Skip to content

Commit

Permalink
fix: 表头搜索问题修复
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 28768
  • Loading branch information
hyunfa committed Jan 8, 2025
1 parent ac6c0ac commit ba80ab6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/i18n/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ export default {
取消: 'Cancel',
必填项: 'Required',
请输入: 'Please enter',
请输入或选择: 'Please enter or choose',
请选择: 'Please choose',
待选择: 'Please choose',
搜索别名: 'Search alias',
Expand Down
1 change: 1 addition & 0 deletions frontend/src/i18n/zh.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ export default {
取消: '取消',
必填项: '必填项',
请输入: '请输入',
请输入或选择: '请输入或选择',
请选择: '请选择',
待选择: '待选择',
搜索别名: '搜索别名',
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/views/agent/package/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,8 @@ export default defineComponent({
}
// 更新快捷筛选
updateQuickSearch(searchSelectValue.value);
// 同步到表头筛选
updateCheckStatus(searchSelectValue.value);
handlePageChange(1);
};
Expand All @@ -210,6 +212,8 @@ export default defineComponent({
searchSelectValue.value.splice(index, 1);
// 更新快捷筛选
updateQuickSearch(searchSelectValue.value);
// 同步到表头筛选
updateCheckStatus(searchSelectValue.value);
handlePageChange(1);
}
};
Expand Down

0 comments on commit ba80ab6

Please sign in to comment.