You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
3.7 KiB
160 lines
3.7 KiB
<template>
|
|
<PageWrapper dense>
|
|
<a-row>
|
|
<a-col :span="4" style="margin-top: 1%">
|
|
<a-tree
|
|
:show-line="true"
|
|
:show-icon="true"
|
|
:default-expanded-keys="['0-0-0']"
|
|
:tree-data="treeData"
|
|
@select="onSelect"
|
|
>
|
|
<template #icon><carry-out-outlined /></template>
|
|
<template #title="{ dataRef }">
|
|
<template v-if="dataRef.key === '0-0-0-1'">
|
|
<div>multiple line title</div>
|
|
<div>multiple line title</div>
|
|
</template>
|
|
<template v-else>{{ dataRef.title }}</template>
|
|
</template>
|
|
<template #switcherIcon="{ dataRef, defaultIcon }">
|
|
<SmileTwoTone v-if="dataRef.key === '0-0-2'" />
|
|
<component :is="defaultIcon" v-else />
|
|
</template>
|
|
</a-tree>
|
|
</a-col>
|
|
<a-col :span="20">
|
|
<BasicTable @register="registerTable">
|
|
<template #toolbar>
|
|
<a-button type="primary" @click="goDetail">上报</a-button>
|
|
</template>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column && record && column.key === 'action'"> </template>
|
|
</template>
|
|
</BasicTable>
|
|
<detailDrawer ref="detailDrawerRef" />
|
|
</a-col>
|
|
</a-row>
|
|
</PageWrapper>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { PageWrapper } from '@/components/Page';
|
|
import { BasicTable, useTable } from '@/components/Table';
|
|
import { list } from './api';
|
|
import { formSchemas, columns } from './data';
|
|
import detailDrawer from './detailDrawer.vue';
|
|
import { ref } from 'vue';
|
|
|
|
defineOptions({ name: 'Patroling' });
|
|
|
|
const [registerTable, { reload }] = useTable({
|
|
rowSelection: {
|
|
type: 'checkbox',
|
|
},
|
|
title: '待审核列表',
|
|
api: list,
|
|
showIndexColumn: true,
|
|
rowKey: 'id',
|
|
useSearchForm: true,
|
|
formConfig: {
|
|
schemas: formSchemas,
|
|
name: 'waitAudit',
|
|
baseColProps: {
|
|
xs: 24,
|
|
sm: 24,
|
|
md: 24,
|
|
lg: 6,
|
|
},
|
|
},
|
|
columns: columns,
|
|
actionColumn: {
|
|
width: 200,
|
|
title: '操作',
|
|
key: 'action',
|
|
fixed: 'right',
|
|
},
|
|
});
|
|
|
|
//tree
|
|
const treeData = ref([
|
|
{
|
|
title: 'parent 1',
|
|
key: '0-0',
|
|
children: [
|
|
{
|
|
title: 'parent 1-0',
|
|
key: '0-0-0',
|
|
children: [
|
|
{
|
|
title: 'leaf',
|
|
key: '0-0-0-0',
|
|
},
|
|
{
|
|
key: '0-0-0-1',
|
|
},
|
|
{
|
|
title: 'leaf',
|
|
key: '0-0-0-2',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'parent 1-1',
|
|
key: '0-0-1',
|
|
children: [
|
|
{
|
|
title: 'leaf',
|
|
key: '0-0-1-0',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'parent 1-2',
|
|
key: '0-0-2',
|
|
children: [
|
|
{
|
|
title: 'leaf 1',
|
|
key: '0-0-2-0',
|
|
},
|
|
{
|
|
title: 'leaf 2',
|
|
key: '0-0-2-1',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'parent 2',
|
|
key: '0-1',
|
|
children: [
|
|
{
|
|
title: 'parent 2-0',
|
|
key: '0-1-0',
|
|
children: [
|
|
{
|
|
title: 'leaf',
|
|
key: '0-1-0-0',
|
|
},
|
|
{
|
|
title: 'leaf',
|
|
key: '0-1-0-1',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
]);
|
|
const onSelect = (selectedKeys: any, info: any) => {
|
|
console.log('selected', selectedKeys, info);
|
|
reload();
|
|
};
|
|
//抽屉
|
|
const detailDrawerRef = ref();
|
|
const goDetail = () => {
|
|
detailDrawerRef.value.showDrawer();
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|
|
|