add: Vue3重构租户套餐列表
This commit is contained in:
parent
86c6073f1f
commit
64b974deaf
@ -20,27 +20,27 @@ export interface TenantPackagePageReqVO extends PageParam {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 查询租户套餐列表
|
// 查询租户套餐列表
|
||||||
export const getTenantPackageTypePageApi = (params: TenantPackagePageReqVO) => {
|
export const getTenantPackageTypePage = (params: TenantPackagePageReqVO) => {
|
||||||
return request.get({ url: '/system/tenant-package/page', params })
|
return request.get({ url: '/system/tenant-package/page', params })
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获得租户
|
// 获得租户
|
||||||
export const getTenantPackageApi = (id: number) => {
|
export const getTenantPackage = (id: number) => {
|
||||||
return request.get({ url: '/system/tenant-package/get?id=' + id })
|
return request.get({ url: '/system/tenant-package/get?id=' + id })
|
||||||
}
|
}
|
||||||
|
|
||||||
// 新增租户套餐
|
// 新增租户套餐
|
||||||
export const createTenantPackageTypeApi = (data: TenantPackageVO) => {
|
export const createTenantPackageType = (data: TenantPackageVO) => {
|
||||||
return request.post({ url: '/system/tenant-package/create', data })
|
return request.post({ url: '/system/tenant-package/create', data })
|
||||||
}
|
}
|
||||||
|
|
||||||
// 修改租户套餐
|
// 修改租户套餐
|
||||||
export const updateTenantPackageTypeApi = (data: TenantPackageVO) => {
|
export const updateTenantPackageType = (data: TenantPackageVO) => {
|
||||||
return request.put({ url: '/system/tenant-package/update', data })
|
return request.put({ url: '/system/tenant-package/update', data })
|
||||||
}
|
}
|
||||||
|
|
||||||
// 删除租户套餐
|
// 删除租户套餐
|
||||||
export const deleteTenantPackageTypeApi = (id: number) => {
|
export const deleteTenantPackageType = (id: number) => {
|
||||||
return request.delete({ url: '/system/tenant-package/delete?id=' + id })
|
return request.delete({ url: '/system/tenant-package/delete?id=' + id })
|
||||||
}
|
}
|
||||||
// 获取租户套餐精简信息列表
|
// 获取租户套餐精简信息列表
|
||||||
|
4
src/types/auto-components.d.ts
vendored
4
src/types/auto-components.d.ts
vendored
@ -52,7 +52,6 @@ declare module '@vue/runtime-core' {
|
|||||||
ElForm: typeof import('element-plus/es')['ElForm']
|
ElForm: typeof import('element-plus/es')['ElForm']
|
||||||
ElFormItem: typeof import('element-plus/es')['ElFormItem']
|
ElFormItem: typeof import('element-plus/es')['ElFormItem']
|
||||||
ElIcon: typeof import('element-plus/es')['ElIcon']
|
ElIcon: typeof import('element-plus/es')['ElIcon']
|
||||||
ElImage: typeof import('element-plus/es')['ElImage']
|
|
||||||
ElImageViewer: typeof import('element-plus/es')['ElImageViewer']
|
ElImageViewer: typeof import('element-plus/es')['ElImageViewer']
|
||||||
ElInput: typeof import('element-plus/es')['ElInput']
|
ElInput: typeof import('element-plus/es')['ElInput']
|
||||||
ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
|
ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
|
||||||
@ -73,10 +72,7 @@ declare module '@vue/runtime-core' {
|
|||||||
ElTabPane: typeof import('element-plus/es')['ElTabPane']
|
ElTabPane: typeof import('element-plus/es')['ElTabPane']
|
||||||
ElTabs: typeof import('element-plus/es')['ElTabs']
|
ElTabs: typeof import('element-plus/es')['ElTabs']
|
||||||
ElTag: typeof import('element-plus/es')['ElTag']
|
ElTag: typeof import('element-plus/es')['ElTag']
|
||||||
ElTimeline: typeof import('element-plus/es')['ElTimeline']
|
|
||||||
ElTimelineItem: typeof import('element-plus/es')['ElTimelineItem']
|
|
||||||
ElTooltip: typeof import('element-plus/es')['ElTooltip']
|
ElTooltip: typeof import('element-plus/es')['ElTooltip']
|
||||||
ElTransfer: typeof import('element-plus/es')['ElTransfer']
|
|
||||||
ElTree: typeof import('element-plus/es')['ElTree']
|
ElTree: typeof import('element-plus/es')['ElTree']
|
||||||
ElTreeSelect: typeof import('element-plus/es')['ElTreeSelect']
|
ElTreeSelect: typeof import('element-plus/es')['ElTreeSelect']
|
||||||
ElUpload: typeof import('element-plus/es')['ElUpload']
|
ElUpload: typeof import('element-plus/es')['ElUpload']
|
||||||
|
199
src/views/system/tenantPackage/form.vue
Normal file
199
src/views/system/tenantPackage/form.vue
Normal file
@ -0,0 +1,199 @@
|
|||||||
|
<template>
|
||||||
|
<Dialog :title="modelTitle" v-model="modelVisible" width="50%">
|
||||||
|
<el-form
|
||||||
|
ref="formRef"
|
||||||
|
:model="formData"
|
||||||
|
:rules="formRules"
|
||||||
|
label-width="80px"
|
||||||
|
v-loading="formLoading"
|
||||||
|
>
|
||||||
|
<el-form-item label="套餐名" prop="name">
|
||||||
|
<el-input v-model="formData.name" placeholder="请输入套餐名" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="菜单权限">
|
||||||
|
<el-card class="cardHeight">
|
||||||
|
<template #header>
|
||||||
|
父子联动(选中父节点,自动选择子节点):
|
||||||
|
<el-switch
|
||||||
|
v-model="menuCheckStrictly"
|
||||||
|
inline-prompt
|
||||||
|
active-text="是"
|
||||||
|
inactive-text="否"
|
||||||
|
/>
|
||||||
|
全选/全不选:
|
||||||
|
<el-switch
|
||||||
|
v-model="treeNodeAll"
|
||||||
|
inline-prompt
|
||||||
|
active-text="是"
|
||||||
|
inactive-text="否"
|
||||||
|
@change="handleCheckedTreeNodeAll"
|
||||||
|
/>
|
||||||
|
全部展开/折叠:
|
||||||
|
<el-switch
|
||||||
|
v-model="menuExpand"
|
||||||
|
inline-prompt
|
||||||
|
active-text="展开"
|
||||||
|
inactive-text="折叠"
|
||||||
|
@change="handleCheckedTreeExpand"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<el-tree
|
||||||
|
ref="treeRef"
|
||||||
|
node-key="id"
|
||||||
|
:check-strictly="!menuCheckStrictly"
|
||||||
|
show-checkbox
|
||||||
|
:props="defaultProps"
|
||||||
|
:data="menuOptions as any[]"
|
||||||
|
empty-text="加载中,请稍候"
|
||||||
|
/>
|
||||||
|
</el-card>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="状态" prop="status">
|
||||||
|
<el-radio-group v-model="formData.status">
|
||||||
|
<el-radio
|
||||||
|
v-for="dict in getDictOptions(DICT_TYPE.COMMON_STATUS)"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="parseInt(dict.value)"
|
||||||
|
>
|
||||||
|
{{ dict.label }}
|
||||||
|
</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="formData.remark" placeholder="请输入备注" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||||
|
<el-button @click="modelVisible = false">取 消</el-button>
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts" name="TenantPackageForm">
|
||||||
|
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
|
||||||
|
import { CommonStatusEnum } from '@/utils/constants'
|
||||||
|
import type { FormRules } from 'element-plus'
|
||||||
|
import { defaultProps } from '@/utils/tree'
|
||||||
|
// 业务相关
|
||||||
|
import * as TenantPackageApi from '@/api/system/tenantPackage'
|
||||||
|
import { getSimpleMenusList } from '@/api/system/menu'
|
||||||
|
import { ElTree } from 'element-plus'
|
||||||
|
import { handleTree } from '@/utils/tree'
|
||||||
|
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
const message = useMessage() // 消息弹窗
|
||||||
|
const modelVisible = ref(false) // 弹窗的是否展示
|
||||||
|
const modelTitle = ref('') // 弹窗的标题
|
||||||
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||||||
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||||||
|
const formData: Record<string, any> = ref<Record<string, any>>({
|
||||||
|
id: null,
|
||||||
|
name: null,
|
||||||
|
remark: null,
|
||||||
|
menuIds: [],
|
||||||
|
status: CommonStatusEnum.ENABLE
|
||||||
|
})
|
||||||
|
const formRules: FormRules = ref<FormRules>({
|
||||||
|
name: [{ required: true, message: '套餐名不能为空', trigger: 'blur' }],
|
||||||
|
status: [{ required: true, message: '状态不能为空', trigger: 'blur' }],
|
||||||
|
menuIds: [{ required: true, message: '关联的菜单编号不能为空', trigger: 'blur' }]
|
||||||
|
})
|
||||||
|
const formRef = ref() // 表单 Ref
|
||||||
|
const menuOptions = ref<any[]>([]) // 树形结构数据
|
||||||
|
const menuCheckStrictly = ref(false) // 在显示复选框的情况下,是否严格的遵循父子不互相关联的做法,默认为 true
|
||||||
|
const menuExpand = ref(false) // 展开/折叠
|
||||||
|
const treeRef = ref<InstanceType<typeof ElTree>>() // 树组件Ref
|
||||||
|
const treeNodeAll = ref(false) // 全选/全不选
|
||||||
|
|
||||||
|
// 全选/全不选
|
||||||
|
const handleCheckedTreeNodeAll = () => {
|
||||||
|
treeRef.value!.setCheckedNodes(treeNodeAll.value ? menuOptions.value : [])
|
||||||
|
}
|
||||||
|
// 全部(展开/折叠)TODO:for循环全部展开和折叠树组件数据
|
||||||
|
const handleCheckedTreeExpand = () => {
|
||||||
|
const nodes = treeRef.value!.store.nodesMap
|
||||||
|
for (let node in nodes) {
|
||||||
|
nodes[node].expanded = !nodes[node].expanded
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 打开弹窗 */
|
||||||
|
const open = async (type: string, id?: number) => {
|
||||||
|
modelVisible.value = true
|
||||||
|
modelTitle.value = t('action.' + type)
|
||||||
|
formType.value = type
|
||||||
|
resetForm()
|
||||||
|
// 加载Menu列表
|
||||||
|
menuOptions.value = handleTree(await getSimpleMenusList())
|
||||||
|
// 修改时,设置数据
|
||||||
|
if (id) {
|
||||||
|
formLoading.value = true
|
||||||
|
try {
|
||||||
|
const res = await TenantPackageApi.getTenantPackage(id)
|
||||||
|
// 设置选中
|
||||||
|
formData.value = res
|
||||||
|
// 设置选中
|
||||||
|
res.menuIds?.forEach((item: any) => {
|
||||||
|
treeRef.value?.setChecked(item, true, false)
|
||||||
|
})
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||||||
|
|
||||||
|
/** 提交表单 */
|
||||||
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||||||
|
const submitForm = async () => {
|
||||||
|
// 校验表单
|
||||||
|
if (!formRef) return
|
||||||
|
const valid = await formRef.value.validate()
|
||||||
|
if (!valid) return
|
||||||
|
// 提交请求
|
||||||
|
formLoading.value = true
|
||||||
|
try {
|
||||||
|
const data = formData.value as unknown as TenantPackageApi.TenantPackageVO
|
||||||
|
data.menuIds = [
|
||||||
|
...(treeRef.value!.getCheckedKeys(false) as unknown as Array<number>),
|
||||||
|
...(treeRef.value!.getHalfCheckedKeys() as unknown as Array<number>)
|
||||||
|
]
|
||||||
|
if (formType.value === 'create') {
|
||||||
|
await TenantPackageApi.createTenantPackageType(data)
|
||||||
|
message.success(t('common.createSuccess'))
|
||||||
|
} else {
|
||||||
|
await TenantPackageApi.updateTenantPackageType(data)
|
||||||
|
message.success(t('common.updateSuccess'))
|
||||||
|
}
|
||||||
|
modelVisible.value = false
|
||||||
|
// 发送操作成功的事件
|
||||||
|
emit('success')
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置表单 */
|
||||||
|
const resetForm = () => {
|
||||||
|
formData.value = {
|
||||||
|
id: null,
|
||||||
|
name: null,
|
||||||
|
remark: null,
|
||||||
|
menuIds: [],
|
||||||
|
status: CommonStatusEnum.ENABLE
|
||||||
|
}
|
||||||
|
treeRef.value?.setCheckedNodes([])
|
||||||
|
treeNodeAll.value = false
|
||||||
|
menuExpand.value = false
|
||||||
|
// 设置为非严格,继续使用半选中
|
||||||
|
menuCheckStrictly.value = false
|
||||||
|
formRef.value?.resetFields()
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.cardHeight {
|
||||||
|
width: 100%;
|
||||||
|
max-height: 400px;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,187 +1,179 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<!-- 搜索 -->
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 列表 -->
|
<el-form
|
||||||
<XTable @register="registerTable">
|
class="-mb-15px"
|
||||||
<template #toolbar_buttons>
|
:model="queryParams"
|
||||||
<XButton
|
ref="queryFormRef"
|
||||||
type="primary"
|
:inline="true"
|
||||||
preIcon="ep:zoom-in"
|
label-width="68px"
|
||||||
:title="t('action.add')"
|
>
|
||||||
@click="handleCreate()"
|
<el-form-item label="套餐名" prop="name">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.name"
|
||||||
|
placeholder="请输入套餐名"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
/>
|
/>
|
||||||
</template>
|
</el-form-item>
|
||||||
<template #actionbtns_default="{ row }">
|
<el-form-item label="状态" prop="status">
|
||||||
<XTextButton preIcon="ep:edit" :title="t('action.edit')" @click="handleUpdate(row.id)" />
|
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable>
|
||||||
<XTextButton preIcon="ep:delete" :title="t('action.del')" @click="deleteData(row.id)" />
|
<el-option
|
||||||
</template>
|
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
||||||
</XTable>
|
:key="dict.value"
|
||||||
<XModal v-model="dialogVisible" :title="dialogTitle">
|
:label="dict.label"
|
||||||
<!-- 对话框(添加 / 修改) -->
|
:value="dict.value"
|
||||||
<Form
|
/>
|
||||||
v-if="['create', 'update'].includes(actionType)"
|
</el-select>
|
||||||
:schema="allSchemas.formSchema"
|
</el-form-item>
|
||||||
:rules="rules"
|
<el-form-item label="创建时间" prop="createTime">
|
||||||
ref="formRef"
|
<el-date-picker
|
||||||
>
|
v-model="queryParams.createTime"
|
||||||
<template #menuIds>
|
style="width: 240px"
|
||||||
<el-card class="cardHeight">
|
type="daterange"
|
||||||
<template #header>
|
value-format="YYYY-MM-DD HH:mm:ss"
|
||||||
<div class="card-header">
|
start-placeholder="开始日期"
|
||||||
全选/全不选:
|
end-placeholder="结束日期"
|
||||||
<el-switch
|
class="!w-240px"
|
||||||
v-model="treeNodeAll"
|
|
||||||
inline-prompt
|
|
||||||
active-text="是"
|
|
||||||
inactive-text="否"
|
|
||||||
@change="handleCheckedTreeNodeAll()"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<el-tree
|
|
||||||
ref="treeRef"
|
|
||||||
node-key="id"
|
|
||||||
show-checkbox
|
|
||||||
:props="defaultProps"
|
|
||||||
:data="menuOptions"
|
|
||||||
empty-text="加载中,请稍候"
|
|
||||||
/>
|
|
||||||
</el-card>
|
|
||||||
</template>
|
|
||||||
</Form>
|
|
||||||
<!-- 操作按钮 -->
|
|
||||||
<template #footer>
|
|
||||||
<!-- 按钮:保存 -->
|
|
||||||
<XButton
|
|
||||||
v-if="['create', 'update'].includes(actionType)"
|
|
||||||
type="primary"
|
|
||||||
:title="t('action.save')"
|
|
||||||
:loading="loading"
|
|
||||||
@click="submitForm()"
|
|
||||||
/>
|
/>
|
||||||
<!-- 按钮:关闭 -->
|
</el-form-item>
|
||||||
<XButton :loading="loading" :title="t('dialog.close')" @click="dialogVisible = false" />
|
|
||||||
</template>
|
<el-form-item>
|
||||||
</XModal>
|
<el-button @click="handleQuery">
|
||||||
|
<Icon icon="ep:search" class="mr-5px" />
|
||||||
|
搜索
|
||||||
|
</el-button>
|
||||||
|
<el-button @click="resetQuery">
|
||||||
|
<Icon icon="ep:refresh" class="mr-5px" />
|
||||||
|
重置
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
@click="handleCreate('create')"
|
||||||
|
v-hasPermi="['system:tenant-package:create']"
|
||||||
|
>
|
||||||
|
<Icon icon="ep:plus" class="mr-5px" />
|
||||||
|
新增
|
||||||
|
</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
</ContentWrap>
|
</ContentWrap>
|
||||||
|
|
||||||
|
<!-- 列表 -->
|
||||||
|
<ContentWrap>
|
||||||
|
<el-table v-loading="loading" :data="list" align="center">
|
||||||
|
<el-table-column label="套餐编号" align="center" prop="id" width="120" />
|
||||||
|
<el-table-column label="套餐名" align="center" prop="name" />
|
||||||
|
<el-table-column label="状态" align="center" prop="status" width="100">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="备注" align="center" prop="remark" />
|
||||||
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
||||||
|
<template #default="scope">
|
||||||
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
@click="handleUpdate('update', scope.row.id)"
|
||||||
|
v-hasPermi="['system:tenant-package:update']"
|
||||||
|
>修改
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleDelete(scope.row.id)"
|
||||||
|
v-hasPermi="['system:tenant-package:delete']"
|
||||||
|
>删除
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页 -->
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
</ContentWrap>
|
||||||
|
<TenantPackageForm ref="formRef" @success="getList" />
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts" name="TenantPackage">
|
<script setup lang="ts" name="TenantPackage">
|
||||||
import { handleTree, defaultProps } from '@/utils/tree'
|
import TenantPackageForm from './form.vue'
|
||||||
import type { FormExpose } from '@/components/Form'
|
|
||||||
import type { ElTree } from 'element-plus'
|
|
||||||
// 业务相关的 import
|
// 业务相关的 import
|
||||||
import { rules, allSchemas } from './tenantPackage.data'
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||||||
|
import { parseTime } from '@/utils/formatTime'
|
||||||
import * as TenantPackageApi from '@/api/system/tenantPackage'
|
import * as TenantPackageApi from '@/api/system/tenantPackage'
|
||||||
import { getSimpleMenusList } from '@/api/system/menu'
|
|
||||||
|
|
||||||
const { t } = useI18n() // 国际化
|
|
||||||
const message = useMessage() // 消息弹窗
|
const message = useMessage() // 消息弹窗
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
|
||||||
const menuOptions = ref<any[]>([]) // 树形结构
|
const loading = ref(true) // 列表的加载中
|
||||||
const menuExpand = ref(false)
|
const total = ref(0) // 列表的总页数
|
||||||
const menuNodeAll = ref(false)
|
const list = ref([]) // 列表的数据
|
||||||
const treeRef = ref<InstanceType<typeof ElTree>>()
|
const queryParams: Record<string, any> = ref<Record<string, any>>({
|
||||||
const treeNodeAll = ref(false)
|
pageNo: 1,
|
||||||
const formRef = ref<FormExpose>() // 表单 Ref
|
pageSize: 10,
|
||||||
const loading = ref(false) // 遮罩层
|
name: null,
|
||||||
const actionType = ref('') // 操作按钮的类型
|
status: null,
|
||||||
const dialogVisible = ref(false) // 是否显示弹出层
|
remark: null,
|
||||||
const dialogTitle = ref('edit') // 弹出层标题
|
createTime: []
|
||||||
|
|
||||||
// 全选/全不选
|
|
||||||
const handleCheckedTreeNodeAll = () => {
|
|
||||||
treeRef.value!.setCheckedNodes(treeNodeAll.value ? menuOptions.value : [])
|
|
||||||
}
|
|
||||||
|
|
||||||
const validateCategory = (rule: any, value: any, callback: any) => {
|
|
||||||
if (!treeRef.value!.getCheckedKeys().length) {
|
|
||||||
callback(new Error('该项为必填项'))
|
|
||||||
} else {
|
|
||||||
callback()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
rules.menuIds = [{ required: true, validator: validateCategory, trigger: 'blur' }]
|
|
||||||
|
|
||||||
const getTree = async () => {
|
|
||||||
const res = await getSimpleMenusList()
|
|
||||||
menuOptions.value = handleTree(res)
|
|
||||||
}
|
|
||||||
|
|
||||||
const [registerTable, { reload, deleteData }] = useXTable({
|
|
||||||
allSchemas: allSchemas,
|
|
||||||
getListApi: TenantPackageApi.getTenantPackageTypePageApi,
|
|
||||||
deleteApi: TenantPackageApi.deleteTenantPackageTypeApi
|
|
||||||
})
|
})
|
||||||
|
const queryFormRef = ref() // 搜索的表单
|
||||||
|
const formRef = ref() // 表单 Ref
|
||||||
|
|
||||||
// 设置标题
|
/** 查询列表 */
|
||||||
const setDialogTile = (type: string) => {
|
const getList = () => {
|
||||||
dialogTitle.value = t('action.' + type)
|
loading.value = true
|
||||||
actionType.value = type
|
// 执行查询
|
||||||
dialogVisible.value = true
|
TenantPackageApi.getTenantPackageTypePage(queryParams.value).then((response) => {
|
||||||
|
list.value = response.list
|
||||||
|
total.value = response.total
|
||||||
|
loading.value = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.pageNo = 1
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
// 表单重置
|
||||||
|
queryFormRef.value?.resetFields()
|
||||||
|
getList()
|
||||||
}
|
}
|
||||||
|
|
||||||
// 新增操作
|
// 新增操作
|
||||||
const handleCreate = () => {
|
const handleCreate = (type: string) => {
|
||||||
//重置菜单树
|
formRef.value.open(type)
|
||||||
unref(treeRef)?.setCheckedKeys([])
|
|
||||||
menuExpand.value = false
|
|
||||||
menuNodeAll.value = false
|
|
||||||
setDialogTile('create')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 修改操作
|
// 修改操作
|
||||||
const handleUpdate = async (rowId: number) => {
|
const handleUpdate = async (type: string, id?: number) => {
|
||||||
setDialogTile('update')
|
formRef.value.open(type, id)
|
||||||
// 设置数据
|
|
||||||
const res = await TenantPackageApi.getTenantPackageApi(rowId)
|
|
||||||
unref(formRef)?.setValues(res)
|
|
||||||
// 设置选中
|
|
||||||
res.menuIds?.forEach((item: any) => {
|
|
||||||
unref(treeRef)?.setChecked(item, true, false)
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
/** 删除按钮操作 */
|
||||||
// 提交按钮
|
const handleDelete = async (id: number) => {
|
||||||
const submitForm = async () => {
|
try {
|
||||||
const elForm = unref(formRef)?.getElFormRef()
|
// 删除的二次确认
|
||||||
if (!elForm) return
|
await message.delConfirm()
|
||||||
elForm.validate(async (valid) => {
|
// 发起删除
|
||||||
if (valid) {
|
await TenantPackageApi.deleteTenantPackageType(id)
|
||||||
loading.value = true
|
message.success(t('common.delSuccess'))
|
||||||
// 提交请求
|
// 刷新列表
|
||||||
try {
|
await getList()
|
||||||
const data = unref(formRef)?.formModel as TenantPackageApi.TenantPackageVO
|
} catch {}
|
||||||
data.menuIds = [
|
|
||||||
...(treeRef.value!.getCheckedKeys(false) as unknown as Array<number>),
|
|
||||||
...(treeRef.value!.getHalfCheckedKeys() as unknown as Array<number>)
|
|
||||||
]
|
|
||||||
if (actionType.value === 'create') {
|
|
||||||
await TenantPackageApi.createTenantPackageTypeApi(data)
|
|
||||||
message.success(t('common.createSuccess'))
|
|
||||||
} else {
|
|
||||||
await TenantPackageApi.updateTenantPackageTypeApi(data)
|
|
||||||
message.success(t('common.updateSuccess'))
|
|
||||||
}
|
|
||||||
// 操作成功,重新加载列表
|
|
||||||
dialogVisible.value = false
|
|
||||||
} finally {
|
|
||||||
loading.value = false
|
|
||||||
// 刷新列表
|
|
||||||
await reload()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
getList()
|
||||||
// ========== 初始化 ==========
|
|
||||||
onMounted(async () => {
|
|
||||||
await getTree()
|
|
||||||
})
|
|
||||||
// getList()
|
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
|
||||||
.cardHeight {
|
|
||||||
width: 100%;
|
|
||||||
max-height: 400px;
|
|
||||||
overflow-y: scroll;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
@ -1,73 +0,0 @@
|
|||||||
import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
|
|
||||||
const { t } = useI18n() // 国际化
|
|
||||||
|
|
||||||
// 表单校验
|
|
||||||
export const rules = reactive({
|
|
||||||
name: [required],
|
|
||||||
id: [required],
|
|
||||||
type: [required],
|
|
||||||
remark: [required],
|
|
||||||
status: [required],
|
|
||||||
menuIds: [required]
|
|
||||||
})
|
|
||||||
|
|
||||||
// CrudSchema
|
|
||||||
const crudSchemas = reactive<VxeCrudSchema>({
|
|
||||||
primaryKey: 'id',
|
|
||||||
primaryType: 'id',
|
|
||||||
primaryTitle: '套餐编号',
|
|
||||||
action: true,
|
|
||||||
columns: [
|
|
||||||
{
|
|
||||||
title: '套餐名称',
|
|
||||||
field: 'name',
|
|
||||||
isSearch: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: t('common.status'),
|
|
||||||
field: 'status',
|
|
||||||
dictType: DICT_TYPE.COMMON_STATUS,
|
|
||||||
dictClass: 'number',
|
|
||||||
isSearch: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '菜单权限',
|
|
||||||
field: 'menuIds',
|
|
||||||
isTable: false,
|
|
||||||
form: {
|
|
||||||
colProps: {
|
|
||||||
span: 24
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: t('form.remark'),
|
|
||||||
field: 'remark',
|
|
||||||
isTable: true,
|
|
||||||
isSearch: true,
|
|
||||||
form: {
|
|
||||||
component: 'Input',
|
|
||||||
componentProps: {
|
|
||||||
type: 'textarea',
|
|
||||||
rows: 4
|
|
||||||
},
|
|
||||||
colProps: {
|
|
||||||
span: 24
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '创建时间',
|
|
||||||
field: 'createTime',
|
|
||||||
formatter: 'formatDate',
|
|
||||||
isForm: false,
|
|
||||||
search: {
|
|
||||||
show: true,
|
|
||||||
itemRender: {
|
|
||||||
name: 'XDataTimePicker'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|
|
Loading…
Reference in New Issue
Block a user