mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
fix: perfect menu
This commit is contained in:
parent
344baa7cd1
commit
bdc8764a2b
@ -23,7 +23,7 @@ const active = ref(false)
|
|||||||
</template>
|
</template>
|
||||||
</n-switch>
|
</n-switch>
|
||||||
<n-space :size="12">
|
<n-space :size="12">
|
||||||
<div class="h-2xl">
|
<div class="h-300px">
|
||||||
<RichTextEditor v-model="text" :disabled="active" />
|
<RichTextEditor v-model="text" :disabled="active" />
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
@ -15,6 +15,10 @@ function deleteData(id: number) {
|
|||||||
const tableModalRef = ref()
|
const tableModalRef = ref()
|
||||||
|
|
||||||
const columns: DataTableColumns<AppRoute.RowRoute> = [
|
const columns: DataTableColumns<AppRoute.RowRoute> = [
|
||||||
|
{
|
||||||
|
type: 'selection',
|
||||||
|
width: 30,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '名称',
|
title: '名称',
|
||||||
key: 'name',
|
key: 'name',
|
||||||
@ -79,6 +83,7 @@ const columns: DataTableColumns<AppRoute.RowRoute> = [
|
|||||||
title: '操作',
|
title: '操作',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
key: 'actions',
|
key: 'actions',
|
||||||
|
width: '15em',
|
||||||
render: (row) => {
|
render: (row) => {
|
||||||
const rowData = row as unknown as CommonList.UserList
|
const rowData = row as unknown as CommonList.UserList
|
||||||
return (
|
return (
|
||||||
@ -118,6 +123,11 @@ async function getAllRoutes() {
|
|||||||
tableData.value = arrayToTree(data)
|
tableData.value = arrayToTree(data)
|
||||||
endLoading()
|
endLoading()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const checkedRowKeys = ref<number[]>([])
|
||||||
|
async function handlePositiveClick() {
|
||||||
|
window.$message.success(`批量删除id:${checkedRowKeys.value.join(',')}`)
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -130,10 +140,34 @@ async function getAllRoutes() {
|
|||||||
</template>
|
</template>
|
||||||
新建
|
新建
|
||||||
</NButton>
|
</NButton>
|
||||||
|
|
||||||
|
<NButton type="primary" secondary class="ml-auto" @click="getAllRoutes">
|
||||||
|
<template #icon>
|
||||||
|
<icon-park-outline-refresh />
|
||||||
|
</template>
|
||||||
|
刷新
|
||||||
|
</NButton>
|
||||||
|
|
||||||
|
<NPopconfirm
|
||||||
|
@positive-click="handlePositiveClick"
|
||||||
|
>
|
||||||
|
<template #trigger>
|
||||||
|
<NButton type="error" secondary>
|
||||||
|
<template #icon>
|
||||||
|
<icon-park-outline-delete-five />
|
||||||
|
</template>
|
||||||
|
批量删除
|
||||||
|
</NButton>
|
||||||
|
</template>
|
||||||
|
确认删除所有选中菜单?
|
||||||
|
</NPopconfirm>
|
||||||
</div>
|
</div>
|
||||||
<n-data-table
|
<n-data-table
|
||||||
|
v-model:checked-row-keys="checkedRowKeys"
|
||||||
:row-key="(row:AppRoute.RowRoute) => row.id" :columns="columns" :data="tableData"
|
:row-key="(row:AppRoute.RowRoute) => row.id" :columns="columns" :data="tableData"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
|
size="small"
|
||||||
|
:scroll-x="1200"
|
||||||
/>
|
/>
|
||||||
<TableModal ref="tableModalRef" :all-routes="tableData" modal-name="菜单" />
|
<TableModal ref="tableModalRef" :all-routes="tableData" modal-name="菜单" />
|
||||||
</n-flex>
|
</n-flex>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user