添加APP菜单管理功能及接口
This commit is contained in:
parent
6cefce21ac
commit
5d3afa874c
63
src/api/manage/appMenu/index.ts
Normal file
63
src/api/manage/appMenu/index.ts
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
import request from '@/utils/request';
|
||||||
|
import { AxiosPromise } from 'axios';
|
||||||
|
import { AppMenuVO, AppMenuForm, AppMenuQuery } from '@/api/manage/appMenu/types';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询app菜单列表
|
||||||
|
* @param query
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
|
||||||
|
export const listAppMenu = (query?: AppMenuQuery): AxiosPromise<AppMenuVO[]> => {
|
||||||
|
return request({
|
||||||
|
url: '/manage/appMenu/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询app菜单详细
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const getAppMenu = (id: string | number): AxiosPromise<AppMenuVO> => {
|
||||||
|
return request({
|
||||||
|
url: '/manage/appMenu/' + id,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增app菜单
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const addAppMenu = (data: AppMenuForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/manage/appMenu',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改app菜单
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
export const updateAppMenu = (data: AppMenuForm) => {
|
||||||
|
return request({
|
||||||
|
url: '/manage/appMenu',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除app菜单
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
export const delAppMenu = (id: string | number | Array<string | number>) => {
|
||||||
|
return request({
|
||||||
|
url: '/manage/appMenu/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
});
|
||||||
|
};
|
71
src/api/manage/appMenu/types.ts
Normal file
71
src/api/manage/appMenu/types.ts
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
export interface AppMenuVO {
|
||||||
|
/**
|
||||||
|
* 唯一标识ID
|
||||||
|
*/
|
||||||
|
id: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面类名
|
||||||
|
*/
|
||||||
|
pageName: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面地址
|
||||||
|
*/
|
||||||
|
pageUrl: string;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AppMenuForm extends BaseEntity {
|
||||||
|
/**
|
||||||
|
* 唯一标识ID
|
||||||
|
*/
|
||||||
|
id?: string | number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面类名
|
||||||
|
*/
|
||||||
|
pageName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面地址
|
||||||
|
*/
|
||||||
|
pageUrl?: string;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AppMenuQuery extends PageQuery {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 名称
|
||||||
|
*/
|
||||||
|
name?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面类名
|
||||||
|
*/
|
||||||
|
pageName?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面地址
|
||||||
|
*/
|
||||||
|
pageUrl?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 日期范围参数
|
||||||
|
*/
|
||||||
|
params?: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,18 +1,265 @@
|
|||||||
|
<!-- APP菜单 -->
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="p-2">
|
||||||
111
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter"
|
||||||
|
:leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||||
|
<div v-show="showSearch" class="mb-[10px]" id="search_id">
|
||||||
|
<el-card shadow="hover">
|
||||||
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
||||||
|
<el-form-item label="名称" prop="name">
|
||||||
|
<el-input class="inputWidth" v-model="queryParams.name" placeholder="请输入名称" clearable
|
||||||
|
@keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="页面类名" prop="pageName">
|
||||||
|
<el-input class="inputWidth" v-model="queryParams.pageName" placeholder="请输入页面类名" clearable
|
||||||
|
@keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="页面地址" prop="pageUrl">
|
||||||
|
<el-input class="inputWidth" v-model="queryParams.pageUrl" placeholder="请输入页面地址" clearable
|
||||||
|
@keyup.enter="handleQuery" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||||
|
<!-- <el-button type="primary" plain icon="Plus" @click="handleAdd"
|
||||||
|
v-hasPermi="['manage:appMenu:add']">新增</el-button>
|
||||||
|
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()"
|
||||||
|
v-hasPermi="['manage:appMenu:edit']">修改</el-button>
|
||||||
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()"
|
||||||
|
v-hasPermi="['manage:appMenu:remove']">删除</el-button> -->
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</el-card>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :height="autoTableHeight" border :data="appMenuList"
|
||||||
|
@selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="ID" align="center" prop="id" v-if="true" />
|
||||||
|
<el-table-column label="页面名称" align="center" prop="name" />
|
||||||
|
<el-table-column label="默认图标" align="center" prop="">
|
||||||
|
<template #default="scope">
|
||||||
|
<image-preview :src="scope.row.image?.imgUrl" :width="50" :height="50" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="选中图标" align="center" prop="">
|
||||||
|
<template #default="scope">
|
||||||
|
<image-preview :src="scope.row.image?.imgUrl" :width="50" :height="50" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="页面类名" align="center" prop="pageName" />
|
||||||
|
<el-table-column label="页面地址" align="center" prop="pageUrl" />
|
||||||
|
<el-table-column label="操作人" align="center" prop="updateByName" />
|
||||||
|
<el-table-column label="操作时间" align="center" prop="updateTime" />
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-tooltip content="修改" placement="top">
|
||||||
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['manage:appMenu:edit']"></el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination v-show="total > 0" id="table_page" :total="total" v-model:page="queryParams.pageNum"
|
||||||
|
v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||||
|
<!-- 添加或修改app菜单对话框 -->
|
||||||
|
<el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
|
||||||
|
<el-form ref="appMenuFormRef" :model="form" :rules="rules" label-width="80px">
|
||||||
|
<el-form-item label="页面名称" prop="name">
|
||||||
|
<el-input v-model="form.name" placeholder="请输入名称" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="页面类名" prop="pageName">
|
||||||
|
<el-input v-model="form.pageName" placeholder="请输入页面类名" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="页面地址" prop="pageUrl">
|
||||||
|
<el-input v-model="form.pageUrl" placeholder="请输入页面地址" clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="默认图标" prop="pageUrl">
|
||||||
|
<image-upload v-model="form.productImage" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="选中图标" prop="pageUrl">
|
||||||
|
<image-upload v-model="form.productImage" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup name="AppMenu" lang="ts">
|
||||||
import { ref, reactive, onMounted, nextTick } from 'vue';
|
import { listAppMenu, getAppMenu, delAppMenu, addAppMenu, updateAppMenu } from '@/api/manage/appMenu';
|
||||||
|
import { AppMenuVO, AppMenuQuery, AppMenuForm } from '@/api/manage/appMenu/types';
|
||||||
|
|
||||||
//导入父组件传递的值
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
const props = defineProps({
|
const autoTableHeight = ref<number>(750);
|
||||||
|
|
||||||
|
const appMenuList = ref<AppMenuVO[]>([]);
|
||||||
|
const buttonLoading = ref(false);
|
||||||
|
const loading = ref(true);
|
||||||
|
const showSearch = ref(true);
|
||||||
|
const ids = ref<Array<string | number>>([]);
|
||||||
|
const single = ref(true);
|
||||||
|
const multiple = ref(true);
|
||||||
|
const total = ref(0);
|
||||||
|
|
||||||
|
const queryFormRef = ref<ElFormInstance>();
|
||||||
|
const appMenuFormRef = ref<ElFormInstance>();
|
||||||
|
|
||||||
|
const dialog = reactive<DialogOption>({
|
||||||
|
visible: false,
|
||||||
|
title: ''
|
||||||
});
|
});
|
||||||
// 导入父组件定义的函数
|
|
||||||
const emit = defineEmits(['hideDialog']);
|
|
||||||
|
|
||||||
|
const initFormData: AppMenuForm = {
|
||||||
|
id: undefined,
|
||||||
|
name: undefined,
|
||||||
|
pageName: undefined,
|
||||||
|
pageUrl: undefined,
|
||||||
|
}
|
||||||
|
const data = reactive<PageData<AppMenuForm, AppMenuQuery>>({
|
||||||
|
form: {...initFormData},
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
name: undefined,
|
||||||
|
pageName: undefined,
|
||||||
|
pageUrl: undefined,
|
||||||
|
params: {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
id: [
|
||||||
|
{ required: true, message: "唯一标识ID不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
name: [
|
||||||
|
{ required: true, message: "名称不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
pageName: [
|
||||||
|
{ required: true, message: "页面类名不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
pageUrl: [
|
||||||
|
{ required: true, message: "页面地址不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const { queryParams, form, rules } = toRefs(data);
|
||||||
|
|
||||||
|
/** 查询app菜单列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true;
|
||||||
|
const res = await listAppMenu(queryParams.value).finally(() => loading.value = false);
|
||||||
|
appMenuList.value = res.rows;
|
||||||
|
total.value = res.total;
|
||||||
|
loading.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 取消按钮 */
|
||||||
|
const cancel = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 表单重置 */
|
||||||
|
const reset = () => {
|
||||||
|
form.value = {...initFormData};
|
||||||
|
appMenuFormRef.value?.resetFields();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.value.pageNum = 1;
|
||||||
|
getList();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value?.resetFields();
|
||||||
|
handleQuery();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 多选框选中数据 */
|
||||||
|
const handleSelectionChange = (selection: AppMenuVO[]) => {
|
||||||
|
ids.value = selection.map(item => item.id);
|
||||||
|
single.value = selection.length != 1;
|
||||||
|
multiple.value = !selection.length;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
const handleAdd = () => {
|
||||||
|
reset();
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = "添加app菜单";
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
const handleUpdate = async (row?: AppMenuVO) => {
|
||||||
|
reset();
|
||||||
|
const _id = row?.id || ids.value[0]
|
||||||
|
const res = await getAppMenu(_id);
|
||||||
|
Object.assign(form.value, res.data);
|
||||||
|
dialog.visible = true;
|
||||||
|
dialog.title = "修改app菜单";
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 提交按钮 */
|
||||||
|
const submitForm = () => {
|
||||||
|
appMenuFormRef.value?.validate(async (valid: boolean) => {
|
||||||
|
if (valid) {
|
||||||
|
buttonLoading.value = true;
|
||||||
|
if (form.value.id) {
|
||||||
|
await updateAppMenu(form.value).finally(() => buttonLoading.value = false);
|
||||||
|
} else {
|
||||||
|
await addAppMenu(form.value).finally(() => buttonLoading.value = false);
|
||||||
|
}
|
||||||
|
proxy?.$modal.msgSuccess("操作成功");
|
||||||
|
dialog.visible = false;
|
||||||
|
await getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
const handleDelete = async (row?: AppMenuVO) => {
|
||||||
|
const _ids = row?.id || ids.value;
|
||||||
|
await proxy?.$modal.confirm('是否确认删除app菜单编号为"' + _ids + '"的数据项?').finally(() => loading.value = false);
|
||||||
|
await delAppMenu(_ids);
|
||||||
|
proxy?.$modal.msgSuccess("删除成功");
|
||||||
|
await getList();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
const handleExport = () => {
|
||||||
|
proxy?.download('manage/appMenu/export', {
|
||||||
|
...queryParams.value
|
||||||
|
}, `appMenu_${new Date().getTime()}.xlsx`)
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
getList();
|
||||||
|
nextTick(() => {
|
||||||
|
autoTableHeight.value = proxy?.autoTableHeight();
|
||||||
|
});
|
||||||
|
window.onresize = () => {
|
||||||
|
autoTableHeight.value = proxy?.autoTableHeight();
|
||||||
|
};
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped></style>
|
<style lang="scss" scoped>
|
||||||
|
.el-card :deep(.el-card__body) {
|
||||||
|
padding-bottom: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#table_page {
|
||||||
|
height: 50px !important;
|
||||||
|
margin-top: 10px !important;
|
||||||
|
padding-bottom: 10px !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user