This commit is contained in:
扶桑花间 2025-09-11 22:54:49 +08:00
parent 498cf9d2e2
commit bf734c6427
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<ele-page> <ele-page>
<!-- 搜索表单 --> <!-- 搜索表单 -->
<Profile-search @search="reload" /> <profile-search @search="reload" />
<ele-card :body-style="{ paddingTop: '8px' }"> <ele-card :body-style="{ paddingTop: '8px' }">
<!-- 表格 --> <!-- 表格 -->
<ele-pro-table <ele-pro-table
@ -27,7 +27,7 @@
</ele-pro-table> </ele-pro-table>
</ele-card> </ele-card>
<!-- 编辑弹窗 --> <!-- 编辑弹窗 -->
<Profile-edit v-model="showEdit" :data="current" @done="reload" /> <profile-edit v-model="showEdit" :data="current" @done="reload" />
</ele-page> </ele-page>
</template> </template>
@ -40,8 +40,8 @@
DatasourceFunction, DatasourceFunction,
Columns Columns
} from 'ele-admin-plus/es/ele-pro-table/types'; } from 'ele-admin-plus/es/ele-pro-table/types';
import ProfileSearch from './components/Profile-search.vue'; import ProfileSearch from './components/profile-search.vue';
import ProfileEdit from './components/Profile-edit.vue'; import ProfileEdit from './components/profile-edit.vue';
import { removeRoles } from '@/api/system/role'; import { removeRoles } from '@/api/system/role';
import type { Profile, ProfileParam } from '@/api/xm/member-profile/model'; import type { Profile, ProfileParam } from '@/api/xm/member-profile/model';
import { pageMemberProfiles } from '@/api/xm/member-profile'; import { pageMemberProfiles } from '@/api/xm/member-profile';