Merge branch 'main' into dev

This commit is contained in:
mizhexiaoxiao 2024-03-05 15:22:11 +08:00
commit aaf9c1afe4
2 changed files with 6 additions and 6 deletions

View File

@ -213,7 +213,7 @@ const columns = [
clearable
type="text"
placeholder="请输入API路径"
@keypress.enter="$table?.handleSearch"
@keypress.enter="$table?.handleSearch()"
/>
</QueryBarItem>
<QueryBarItem label="API简介" :label-width="70">
@ -222,7 +222,7 @@ const columns = [
clearable
type="text"
placeholder="请输入API简介"
@keypress.enter="$table?.handleSearch"
@keypress.enter="$table?.handleSearch()"
/>
</QueryBarItem>
<QueryBarItem label="Tags" :label-width="40">
@ -231,7 +231,7 @@ const columns = [
clearable
type="text"
placeholder="请输入API模块"
@keypress.enter="$table?.handleSearch"
@keypress.enter="$table?.handleSearch()"
/>
</QueryBarItem>
</template>

View File

@ -49,7 +49,7 @@ const {
doCreate: api.createUser,
doUpdate: api.updateUser,
doDelete: api.deleteUser,
refresh: () => $table.value?.handleSearch(),
// refresh: () => $table.value?.handleSearch(),
})
const roleOption = ref([])
@ -320,7 +320,7 @@ const validateAddUser = {
clearable
type="text"
placeholder="请输入用户名称"
@keypress.enter="$table?.handleSearch"
@keypress.enter="$table?.handleSearch()"
/>
</QueryBarItem>
<QueryBarItem label="邮箱" :label-width="40">
@ -329,7 +329,7 @@ const validateAddUser = {
clearable
type="text"
placeholder="请输入邮箱"
@keypress.enter="$table?.handleSearch"
@keypress.enter="$table?.handleSearch()"
/>
</QueryBarItem>
</template>