code lint

This commit is contained in:
2025-03-06 00:12:38 +08:00
parent 6d6c69cf37
commit b1593b1c8e
11 changed files with 104 additions and 80 deletions

View File

@@ -2,11 +2,21 @@
<n-flex vertical class="container">
<n-flex>
<div>
<n-input v-model:value="query.username" clearable />
<n-input
style="width: 200px"
v-model:value="query.username"
clearable
/>
</div>
<div>
<n-select
style="width: 120px"
v-model:value="query.role"
:options="roles"
/>
</div>
<n-button @click="init">搜索</n-button>
<n-button @click="goDjangoUserAdd">新建一个</n-button>
<n-button>批量新建</n-button>
<n-button @click="showBatch = true">批量新建</n-button>
<n-pagination
v-model:page="query.page"
:page-size="20"
@@ -15,6 +25,20 @@
/>
</n-flex>
<n-data-table :columns="columns" :data="users"></n-data-table>
<n-modal
style="width: 300px"
:mask-closable="false"
preset="card"
title="批量新建用户"
v-model:show="showBatch"
>
<n-flex vertical>
<b>前缀web</b>
<n-input placeholder="班级" />
<n-input rows="20" type="textarea" />
<n-button type="primary">提交</n-button>
</n-flex>
</n-modal>
</n-flex>
</template>
<script lang="ts" setup>
@@ -22,10 +46,11 @@ import { onMounted, reactive, ref, h, watch } from "vue"
import { Account } from "../api"
import { parseTime } from "../utils/helper"
import type { DataTableColumn } from "naive-ui"
import { getRole, type User } from "../utils/type"
import { getRole, Role, type User } from "../utils/type"
import { ADMIN_URL } from "../utils/const"
import UserActions from "../components/dashboard/UserActions.vue"
import { useRoute, useRouter } from "vue-router"
import { watchDebounced } from "@vueuse/core"
const users = ref([])
const count = ref(0)
@@ -34,7 +59,16 @@ const router = useRouter()
const query = reactive({
username: "",
page: Number(route.params.page),
role: "",
})
const showBatch = ref(true)
const roles = [
{ label: "全部权限", value: "" },
{ label: "普通用户", value: Role.Normal },
{ label: "管理员", value: Role.Admin },
{ label: "超级管理员", value: Role.Super },
]
const columns: DataTableColumn<User>[] = [
{
@@ -80,7 +114,8 @@ async function init() {
count.value = data.count
}
watch(query, init)
watch(() => [query.page, query.role], init)
watchDebounced(() => query.username, init, { debounce: 500, maxWait: 1000 })
watch(
() => query.page,
(v) => router.push({ params: { page: v } }),