| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <script lang="ts">
- export default {
- inheritAttrs: false
- }
- </script>
- <script setup lang="ts">
- import router from '@/router'
- import { ElMessage, ElMessageBox, type DialogProps } from 'element-plus'
- import type { AdvancedForm, BasicForm, ICRUD } from '@/types/form'
- interface Props {
- crud: ICRUD
- pageSize?: number
- formConfig: BasicForm | AdvancedForm
- dialogConfig?: DialogProps
- height?: string
- cardHeight?: string
- showAdd?: boolean
- span?: number
- }
- const props = withDefaults(defineProps<Props>(), {
- pageSize: 12,
- showAdd: true,
- cardHeight: '226px',
- span: 4
- })
- const emits = defineEmits(['click-create', 'click-edit'])
- // ============== 查询部分开始 ===============
- const query = ref<any>({})
- const searchList = ref<any>([])
- watch(
- () => props.formConfig.formItems,
- val => {
- val.forEach((item: any) => {
- if (item.group) {
- searchList.value = searchList.value.concat(item.group.filter((item: any) => item.search))
- } else {
- item.search && searchList.value.push(item)
- }
- })
- },
- { immediate: true }
- )
- const handleQuery = () => {
- curPage.value = 1
- getTableData()
- }
- const handleReset = () => {
- query.value = {}
- handleQuery()
- }
- // ============== 查询部分结束 ===============
- // ============== 表格部分开始 ===============
- const tableData = ref<any>([])
- const total = ref(0)
- const curPage = ref(1)
- const loading = ref(false)
- const getTableData = () => {
- loading.value = true
- props.crud
- ?.getList({
- ...query.value,
- pageSize: props.pageSize,
- pageNo: curPage.value
- })
- .then((res: any) => {
- tableData.value = res.list || res.rows
- total.value = res.total
- })
- .finally(() => {
- loading.value = false
- })
- }
- watch(
- curPage,
- () => {
- getTableData()
- },
- {
- immediate: true
- }
- )
- const refresh = () => {
- curPage.value = 1
- getTableData()
- }
- // ============== 表格部分结束 ===============
- // ============== crud部分开始 ===============
- const formRoute = ref<any>(props.formConfig.route)
- const handleCreate = () => {
- emits('click-create')
- if (formRoute.value) {
- router.push(formRoute.value)
- } else {
- formData.value = {}
- dialogVisible.value = true
- }
- }
- const handleUpdate = (row: any) => {
- emits('click-edit', row)
- if (formRoute.value) {
- router.push(formRoute.value)
- } else {
- if (props.crud?.getRecord) {
- props.crud.getRecord({ id: row.id }).then((res: any) => {
- formData.value = res.data
- })
- } else {
- formData.value = { ...row }
- }
- dialogVisible.value = true
- }
- }
- const handleDelete = (id: string | number) => {
- ElMessageBox.confirm('您确定要删除该项吗', '提示', {
- type: 'warning'
- }).then(async () => {
- await props.crud?.delete({ id })
- getTableData()
- ElMessage({
- type: 'success',
- message: '删除成功'
- })
- })
- }
- // ============== crud部分结束 ===============
- // ============== 表单部分开始 ===============
- const formData = ref<any>({})
- const dialogVisible = ref(false)
- const handleFormSuccess = () => {
- getTableData()
- }
- // ============== 表单部分结束 ===============
- defineExpose({
- handleCreate,
- handleDelete,
- handleUpdate,
- refresh
- })
- </script>
- <template>
- <div class="flex flex-col" :style="{ height: height || 'calc(100vh - 101px - var(--main-padding) * 2)' }">
- <el-card class="mb-4" shadow="never" v-if="searchList.length">
- <el-form :inline="true">
- <el-form-item :label="item.label" v-for="(item, index) in searchList" :key="index">
- <form-comp :item="item" v-model="query[item.name]"></form-comp>
- </el-form-item>
- <slot name="query" :query="query"></slot>
- <el-form-item>
- <el-button type="primary" icon="Search" @click="handleQuery">查询</el-button>
- <el-button icon="Refresh" @click="handleReset">重置</el-button>
- </el-form-item>
- </el-form>
- </el-card>
- <el-card class="h-full flex-grow-1" :body-style="{ height: '100%' }" shadow="never">
- <div class="flex flex-col h-full">
- <slot name="header"></slot>
- <div class="h-full flex-grow">
- <el-row :gutter="10">
- <el-col :span="span" v-bind="$attrs" v-if="showAdd" class="mb-10">
- <div
- class="flex items-center justify-center border border-dashed w-full h-full card-list-item cursor-pointer"
- :style="{ height: cardHeight }"
- @click="handleCreate"
- >
- <el-icon :size="18" class="mr-2px"><plus></plus></el-icon>新增
- </div>
- </el-col>
- <el-col :span="span" v-bind="$attrs" v-for="(item, index) in tableData" :key="item.id" class="mb-10">
- <el-card :body-style="{ padding: '0px' }" shadow="hover">
- <slot :item="item" :index="index"></slot>
- </el-card>
- </el-col>
- </el-row>
- </div>
- <div class="flex justify-end shrink-0">
- <el-pagination
- background
- layout="prev, pager, next, jumper, total"
- v-model:current-page="curPage"
- :page-size="pageSize"
- :total="total"
- class="mt-16px"
- />
- </div>
- </div>
- </el-card>
- <dialog-form
- v-model="dialogVisible"
- :dialogConfig="dialogConfig"
- :formConfig="formConfig"
- :formData="formData"
- :create="crud.create"
- :update="crud.update"
- @success="handleFormSuccess"
- v-if="dialogVisible"
- />
- </div>
- </template>
- <style scoped lang="scss">
- .card-list-item {
- border-color: var(--el-border-color-light);
- border-radius: var(--el-card-border-radius);
- color: var(--el-text-color-regular);
- &:hover {
- color: var(--el-color-primary);
- border-color: currentColor;
- }
- }
- </style>
|