公告,活动,投诉接口对接完成

This commit is contained in:
Zy
2026-04-14 17:34:33 +08:00
parent 2701b02c59
commit 40f13be704
41 changed files with 2499 additions and 220 deletions

View File

@@ -1,5 +1,6 @@
<template>
<div class="p-2 h-full flex flex-col">
<Pageheader title="访客信息"></Pageheader>
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
<div v-show="showSearch" class="mb-[10px]">
<el-card shadow="hover">
@@ -53,7 +54,7 @@
</template>
<script setup name="Visitor" lang="ts">
import { listVisitor, getVisitor, delVisitor, addVisitor, updateVisitor } from '@/api/system/Visitor/index';
import { listVisitor } from '@/api/system/Visitor/index';
import { VisitorVO, VisitorQuery, VisitorForm } from '@/api/system/Visitor/type';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
@@ -156,6 +157,6 @@ onMounted(() => {
</script>
<style lang="scss" scoped>
.el-table {
height: calc(100% - 100px);
height: calc(100% - 80px);
}
</style>