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.
70 lines
1.8 KiB
70 lines
1.8 KiB
<template>
|
|
<PageWrapper dense>
|
|
<BasicTable @register="registerTable">
|
|
<template #toolbar>
|
|
<a-button type="primary" @click="handleAdd">生成计划</a-button>
|
|
<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" />
|
|
</PageWrapper>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { PageWrapper } from '@/components/Page';
|
|
import { BasicTable, useTable } from '@/components/Table';
|
|
import { list } from './allPatrolapi';
|
|
import { formSchemas, columns } from './allPatroldata';
|
|
import { useGo } from '@/hooks/web/usePage';
|
|
import { PageEnum } from '@/enums/pageEnum';
|
|
import detailDrawer from './detailDrawer.vue';
|
|
import { ref } from 'vue';
|
|
|
|
defineOptions({ name: 'AllPatrol' });
|
|
|
|
const [registerTable, { reload }] = useTable({
|
|
rowSelection: {
|
|
type: 'checkbox',
|
|
},
|
|
title: '巡检进行',
|
|
api: list,
|
|
showIndexColumn: true,
|
|
rowKey: 'id',
|
|
useSearchForm: true,
|
|
formConfig: {
|
|
schemas: formSchemas,
|
|
name: 'allPatrol',
|
|
baseColProps: {
|
|
xs: 24,
|
|
sm: 24,
|
|
md: 24,
|
|
lg: 6,
|
|
},
|
|
},
|
|
columns: columns,
|
|
actionColumn: {
|
|
width: 200,
|
|
title: '操作',
|
|
key: 'action',
|
|
fixed: 'right',
|
|
},
|
|
});
|
|
|
|
function handleAdd() {
|
|
go({ path: '/workflow/leaveEdit/index' as PageEnum, query: { type: 'add' } });
|
|
reload();
|
|
}
|
|
|
|
// 前往审批记录页面
|
|
const go = useGo();
|
|
//抽屉
|
|
const detailDrawerRef = ref();
|
|
const goDetail = () => {
|
|
detailDrawerRef.value.showDrawer();
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|
|
|