-
diff --git a/ui/src/views/system/user-manage/index.vue b/ui/src/views/system/user-manage/index.vue
index 5e6d878f4..1a638a24f 100644
--- a/ui/src/views/system/user-manage/index.vue
+++ b/ui/src/views/system/user-manage/index.vue
@@ -26,6 +26,7 @@
@change="getList"
style="width: 220px"
clearable
+ :placeholder="$t('common.inputPlaceholder')"
/>
@@ -252,7 +255,8 @@ function handleSizeChange() {
function getList() {
const params: any = {}
if (search_form.value[search_type.value as keyof typeof search_form.value]) {
- params[search_type.value] = search_form.value[search_type.value as keyof typeof search_form.value]
+ params[search_type.value] =
+ search_form.value[search_type.value as keyof typeof search_form.value]
}
return userManageApi.getUserManage(paginationConfig, params, loading).then((res) => {
userTableData.value = res.data.records.map((item: any) => ({