commit
b347ca1ede
|
@ -1,7 +1,7 @@
|
||||||
import request from '@/config/axios'
|
import request from '@/config/axios'
|
||||||
|
|
||||||
export interface ConfigVO {
|
export interface ConfigVO {
|
||||||
id: number
|
id: number | undefined
|
||||||
category: string
|
category: string
|
||||||
name: string
|
name: string
|
||||||
key: string
|
key: string
|
||||||
|
@ -12,13 +12,6 @@ export interface ConfigVO {
|
||||||
createTime: Date
|
createTime: Date
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ConfigPageReqVO extends PageParam {
|
|
||||||
name?: string
|
|
||||||
key?: string
|
|
||||||
type?: number
|
|
||||||
createTime?: Date[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ConfigExportReqVO {
|
export interface ConfigExportReqVO {
|
||||||
name?: string
|
name?: string
|
||||||
key?: string
|
key?: string
|
||||||
|
@ -27,32 +20,32 @@ export interface ConfigExportReqVO {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 查询参数列表
|
// 查询参数列表
|
||||||
export const getConfigPageApi = (params: ConfigPageReqVO) => {
|
export const getConfigPage = (params: PageParam) => {
|
||||||
return request.get({ url: '/infra/config/page', params })
|
return request.get({ url: '/infra/config/page', params })
|
||||||
}
|
}
|
||||||
|
|
||||||
// 查询参数详情
|
// 查询参数详情
|
||||||
export const getConfigApi = (id: number) => {
|
export const getConfig = (id: number) => {
|
||||||
return request.get({ url: '/infra/config/get?id=' + id })
|
return request.get({ url: '/infra/config/get?id=' + id })
|
||||||
}
|
}
|
||||||
|
|
||||||
// 根据参数键名查询参数值
|
// 根据参数键名查询参数值
|
||||||
export const getConfigKeyApi = (configKey: string) => {
|
export const getConfigKey = (configKey: string) => {
|
||||||
return request.get({ url: '/infra/config/get-value-by-key?key=' + configKey })
|
return request.get({ url: '/infra/config/get-value-by-key?key=' + configKey })
|
||||||
}
|
}
|
||||||
|
|
||||||
// 新增参数
|
// 新增参数
|
||||||
export const createConfigApi = (data: ConfigVO) => {
|
export const createConfig = (data: ConfigVO) => {
|
||||||
return request.post({ url: '/infra/config/create', data })
|
return request.post({ url: '/infra/config/create', data })
|
||||||
}
|
}
|
||||||
|
|
||||||
// 修改参数
|
// 修改参数
|
||||||
export const updateConfigApi = (data: ConfigVO) => {
|
export const updateConfig = (data: ConfigVO) => {
|
||||||
return request.put({ url: '/infra/config/update', data })
|
return request.put({ url: '/infra/config/update', data })
|
||||||
}
|
}
|
||||||
|
|
||||||
// 删除参数
|
// 删除参数
|
||||||
export const deleteConfigApi = (id: number) => {
|
export const deleteConfig = (id: number) => {
|
||||||
return request.delete({ url: '/infra/config/delete?id=' + id })
|
return request.delete({ url: '/infra/config/delete?id=' + id })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,8 +8,9 @@ const props = defineProps({
|
||||||
modelValue: propTypes.bool.def(false),
|
modelValue: propTypes.bool.def(false),
|
||||||
title: propTypes.string.def('Dialog'),
|
title: propTypes.string.def('Dialog'),
|
||||||
fullscreen: propTypes.bool.def(true),
|
fullscreen: propTypes.bool.def(true),
|
||||||
maxHeight: propTypes.oneOfType([String, Number]).def('300px'),
|
width: propTypes.oneOfType([String, Number]).def('40%'),
|
||||||
width: propTypes.oneOfType([String, Number]).def('40%')
|
scroll: propTypes.bool.def(false), // 是否开启滚动条。如果是的话,按照 maxHeight 设置最大高度
|
||||||
|
maxHeight: propTypes.oneOfType([String, Number]).def('300px')
|
||||||
})
|
})
|
||||||
|
|
||||||
const getBindValue = computed(() => {
|
const getBindValue = computed(() => {
|
||||||
|
@ -35,6 +36,7 @@ const dialogHeight = ref(isNumber(props.maxHeight) ? `${props.maxHeight}px` : pr
|
||||||
watch(
|
watch(
|
||||||
() => isFullscreen.value,
|
() => isFullscreen.value,
|
||||||
async (val: boolean) => {
|
async (val: boolean) => {
|
||||||
|
// 计算最大高度
|
||||||
await nextTick()
|
await nextTick()
|
||||||
if (val) {
|
if (val) {
|
||||||
const windowHeight = document.documentElement.offsetHeight
|
const windowHeight = document.documentElement.offsetHeight
|
||||||
|
@ -80,9 +82,12 @@ const dialogStyle = computed(() => {
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<ElScrollbar :style="dialogStyle">
|
<!-- 情况一:如果 scroll 为 true,说明开启滚动条 -->
|
||||||
|
<ElScrollbar :style="dialogStyle" v-if="scroll">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</ElScrollbar>
|
</ElScrollbar>
|
||||||
|
<!-- 情况二:如果 scroll 为 false,说明关闭滚动条滚动条 -->
|
||||||
|
<slot v-else></slot>
|
||||||
|
|
||||||
<template v-if="slots.footer" #footer>
|
<template v-if="slots.footer" #footer>
|
||||||
<slot name="footer"></slot>
|
<slot name="footer"></slot>
|
||||||
|
|
|
@ -34,7 +34,7 @@ export default defineComponent({
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
// 解决自定义字典标签值为零时标签不渲染的问题
|
// 解决自定义字典标签值为零时标签不渲染的问题
|
||||||
if (!props.value && props.value !== 0) {
|
if (props.value === undefined) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
getDictObj(props.type, props.value.toString())
|
getDictObj(props.type, props.value.toString())
|
||||||
|
|
|
@ -0,0 +1,75 @@
|
||||||
|
<!-- 基于 ruoyi-vue3 的 Pagination 重构,核心是简化无用的属性,并使用 ts 重写 -->
|
||||||
|
<template>
|
||||||
|
<el-pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
class="float-right mt-15px mb-15px"
|
||||||
|
:background="true"
|
||||||
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
:page-sizes="[10, 20, 30, 50]"
|
||||||
|
v-model:current-page="currentPage"
|
||||||
|
v-model:page-size="pageSize"
|
||||||
|
:pager-count="pagerCount"
|
||||||
|
:total="total"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<script setup>
|
||||||
|
import { computed } from 'vue'
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
// 总条目数
|
||||||
|
total: {
|
||||||
|
required: true,
|
||||||
|
type: Number
|
||||||
|
},
|
||||||
|
// 当前页数:pageNo
|
||||||
|
page: {
|
||||||
|
type: Number,
|
||||||
|
default: 1
|
||||||
|
},
|
||||||
|
// 每页显示条目个数:pageSize
|
||||||
|
limit: {
|
||||||
|
type: Number,
|
||||||
|
default: 20
|
||||||
|
},
|
||||||
|
// 设置最大页码按钮数。 页码按钮的数量,当总页数超过该值时会折叠
|
||||||
|
// 移动端页码按钮的数量端默认值 5
|
||||||
|
pagerCount: {
|
||||||
|
type: Number,
|
||||||
|
default: document.body.clientWidth < 992 ? 5 : 7
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const emit = defineEmits(['update:page', 'update:limit', 'pagination', 'pagination'])
|
||||||
|
const currentPage = computed({
|
||||||
|
get() {
|
||||||
|
return props.page
|
||||||
|
},
|
||||||
|
set(val) {
|
||||||
|
// 触发 update:page 事件,更新 limit 属性,从而更新 pageNo
|
||||||
|
emit('update:page', val)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
const pageSize = computed({
|
||||||
|
get() {
|
||||||
|
return props.limit
|
||||||
|
},
|
||||||
|
set(val) {
|
||||||
|
// 触发 update:limit 事件,更新 limit 属性,从而更新 pageSize
|
||||||
|
emit('update:limit', val)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
const handleSizeChange = (val) => {
|
||||||
|
// 如果修改后超过最大页面,强制跳转到第 1 页
|
||||||
|
if (currentPage.value * val > props.total) {
|
||||||
|
currentPage.value = 1
|
||||||
|
}
|
||||||
|
// 触发 pagination 事件,重新加载列表
|
||||||
|
emit('pagination', { page: currentPage.value, limit: val })
|
||||||
|
}
|
||||||
|
const handleCurrentChange = (val) => {
|
||||||
|
// 触发 pagination 事件,重新加载列表
|
||||||
|
emit('pagination', { page: val, limit: pageSize.value })
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -170,7 +170,6 @@ service.interceptors.response.use(
|
||||||
return Promise.reject(new Error(msg))
|
return Promise.reject(new Error(msg))
|
||||||
} else if (code === 901) {
|
} else if (code === 901) {
|
||||||
ElMessage.error({
|
ElMessage.error({
|
||||||
duration: 5,
|
|
||||||
offset: 300,
|
offset: 300,
|
||||||
dangerouslyUseHTMLString: true,
|
dangerouslyUseHTMLString: true,
|
||||||
message:
|
message:
|
||||||
|
|
|
@ -23,6 +23,7 @@ declare module '@vue/runtime-core' {
|
||||||
DictTag: typeof import('./../components/DictTag/src/DictTag.vue')['default']
|
DictTag: typeof import('./../components/DictTag/src/DictTag.vue')['default']
|
||||||
Echart: typeof import('./../components/Echart/src/Echart.vue')['default']
|
Echart: typeof import('./../components/Echart/src/Echart.vue')['default']
|
||||||
Editor: typeof import('./../components/Editor/src/Editor.vue')['default']
|
Editor: typeof import('./../components/Editor/src/Editor.vue')['default']
|
||||||
|
ElAutoResizer: typeof import('element-plus/es')['ElAutoResizer']
|
||||||
ElAvatar: typeof import('element-plus/es')['ElAvatar']
|
ElAvatar: typeof import('element-plus/es')['ElAvatar']
|
||||||
ElBadge: typeof import('element-plus/es')['ElBadge']
|
ElBadge: typeof import('element-plus/es')['ElBadge']
|
||||||
ElButton: typeof import('element-plus/es')['ElButton']
|
ElButton: typeof import('element-plus/es')['ElButton']
|
||||||
|
@ -34,6 +35,7 @@ declare module '@vue/runtime-core' {
|
||||||
ElCollapseItem: typeof import('element-plus/es')['ElCollapseItem']
|
ElCollapseItem: typeof import('element-plus/es')['ElCollapseItem']
|
||||||
ElCollapseTransition: typeof import('element-plus/es')['ElCollapseTransition']
|
ElCollapseTransition: typeof import('element-plus/es')['ElCollapseTransition']
|
||||||
ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider']
|
ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider']
|
||||||
|
ElDatePicker: typeof import('element-plus/es')['ElDatePicker']
|
||||||
ElDescriptions: typeof import('element-plus/es')['ElDescriptions']
|
ElDescriptions: typeof import('element-plus/es')['ElDescriptions']
|
||||||
ElDescriptionsItem: typeof import('element-plus/es')['ElDescriptionsItem']
|
ElDescriptionsItem: typeof import('element-plus/es')['ElDescriptionsItem']
|
||||||
ElDialog: typeof import('element-plus/es')['ElDialog']
|
ElDialog: typeof import('element-plus/es')['ElDialog']
|
||||||
|
@ -91,6 +93,7 @@ declare module '@vue/runtime-core' {
|
||||||
ImageViewer: typeof import('./../components/ImageViewer/src/ImageViewer.vue')['default']
|
ImageViewer: typeof import('./../components/ImageViewer/src/ImageViewer.vue')['default']
|
||||||
Infotip: typeof import('./../components/Infotip/src/Infotip.vue')['default']
|
Infotip: typeof import('./../components/Infotip/src/Infotip.vue')['default']
|
||||||
InputPassword: typeof import('./../components/InputPassword/src/InputPassword.vue')['default']
|
InputPassword: typeof import('./../components/InputPassword/src/InputPassword.vue')['default']
|
||||||
|
Pagination: typeof import('./../components/Pagination/index.vue')['default']
|
||||||
ProcessDesigner: typeof import('./../components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue')['default']
|
ProcessDesigner: typeof import('./../components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue')['default']
|
||||||
ProcessPalette: typeof import('./../components/bpmnProcessDesigner/package/palette/ProcessPalette.vue')['default']
|
ProcessPalette: typeof import('./../components/bpmnProcessDesigner/package/palette/ProcessPalette.vue')['default']
|
||||||
ProcessViewer: typeof import('./../components/bpmnProcessDesigner/package/designer/ProcessViewer.vue')['default']
|
ProcessViewer: typeof import('./../components/bpmnProcessDesigner/package/designer/ProcessViewer.vue')['default']
|
||||||
|
|
|
@ -55,7 +55,7 @@ export const getBoolDictOptions = (dictType: string) => {
|
||||||
dictOptions.forEach((dict: DictDataType) => {
|
dictOptions.forEach((dict: DictDataType) => {
|
||||||
dictOption.push({
|
dictOption.push({
|
||||||
...dict,
|
...dict,
|
||||||
value: dict.value + '' === 'true' ? true : false
|
value: dict.value + '' === 'true'
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
return dictOption
|
return dictOption
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 时间日期转换
|
* 时间日期转换
|
||||||
* @param date 当前时间,new Date() 格式
|
* @param date 当前时间,new Date() 格式
|
||||||
|
@ -174,3 +176,18 @@ export function formatPast2(ms) {
|
||||||
return 0 + '秒'
|
return 0 + '秒'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* element plus 的时间 Formatter 实现,使用 YYYY-MM-DD HH:mm:ss 格式
|
||||||
|
*
|
||||||
|
* @param row 行数据
|
||||||
|
* @param column 字段
|
||||||
|
* @param cellValue 字段值
|
||||||
|
*/
|
||||||
|
// @ts-ignore
|
||||||
|
export const dateFormatter = (row, column, cellValue) => {
|
||||||
|
if (!cellValue) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return dayjs(cellValue).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
}
|
||||||
|
|
|
@ -1,90 +0,0 @@
|
||||||
import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
|
|
||||||
const { t } = useI18n() // 国际化
|
|
||||||
|
|
||||||
// 表单校验
|
|
||||||
export const rules = reactive({
|
|
||||||
category: [required],
|
|
||||||
name: [required],
|
|
||||||
key: [required],
|
|
||||||
value: [required]
|
|
||||||
})
|
|
||||||
|
|
||||||
// CrudSchema
|
|
||||||
const crudSchemas = reactive<VxeCrudSchema>({
|
|
||||||
primaryKey: 'id',
|
|
||||||
primaryType: null,
|
|
||||||
action: true,
|
|
||||||
columns: [
|
|
||||||
{
|
|
||||||
title: '参数分类',
|
|
||||||
field: 'category'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '参数名称',
|
|
||||||
field: 'name',
|
|
||||||
isSearch: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '参数键名',
|
|
||||||
field: 'key',
|
|
||||||
isSearch: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '参数键值',
|
|
||||||
field: 'value'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '系统内置',
|
|
||||||
field: 'type',
|
|
||||||
dictType: DICT_TYPE.INFRA_CONFIG_TYPE,
|
|
||||||
dictClass: 'number',
|
|
||||||
isSearch: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否可见',
|
|
||||||
field: 'visible',
|
|
||||||
table: {
|
|
||||||
slots: {
|
|
||||||
default: 'visible_default'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
form: {
|
|
||||||
component: 'RadioButton',
|
|
||||||
componentProps: {
|
|
||||||
options: [
|
|
||||||
{ label: '是', value: true },
|
|
||||||
{ label: '否', value: false }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: t('form.remark'),
|
|
||||||
field: 'remark',
|
|
||||||
isTable: false,
|
|
||||||
form: {
|
|
||||||
component: 'Input',
|
|
||||||
componentProps: {
|
|
||||||
type: 'textarea',
|
|
||||||
rows: 4
|
|
||||||
},
|
|
||||||
colProps: {
|
|
||||||
span: 24
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: t('common.createTime'),
|
|
||||||
field: 'createTime',
|
|
||||||
formatter: 'formatDate',
|
|
||||||
isForm: false,
|
|
||||||
search: {
|
|
||||||
show: true,
|
|
||||||
itemRender: {
|
|
||||||
name: 'XDataTimePicker'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|
|
|
@ -0,0 +1,131 @@
|
||||||
|
<template>
|
||||||
|
<Dialog :title="modelTitle" v-model="modelVisible">
|
||||||
|
<el-form
|
||||||
|
ref="formRef"
|
||||||
|
:model="formData"
|
||||||
|
:rules="formRules"
|
||||||
|
label-width="80px"
|
||||||
|
v-loading="formLoading"
|
||||||
|
>
|
||||||
|
<el-form-item label="参数分类" prop="category">
|
||||||
|
<el-input v-model="formData.category" placeholder="请输入参数分类" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="参数名称" prop="name">
|
||||||
|
<el-input v-model="formData.name" placeholder="请输入参数名称" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="参数键名" prop="key">
|
||||||
|
<el-input v-model="formData.key" placeholder="请输入参数键名" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="参数键值" prop="value">
|
||||||
|
<el-input v-model="formData.value" placeholder="请输入参数键值" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="是否可见" prop="visible">
|
||||||
|
<el-radio-group v-model="formData.visible">
|
||||||
|
<el-radio
|
||||||
|
v-for="dict in getBoolDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING)"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.value"
|
||||||
|
>
|
||||||
|
{{ dict.label }}
|
||||||
|
</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="formData.remark" type="textarea" placeholder="请输入内容" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<div class="dialog-footer">
|
||||||
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||||
|
<el-button @click="modelVisible = false">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { DICT_TYPE, getBoolDictOptions } from '@/utils/dict'
|
||||||
|
import * as ConfigApi from '@/api/infra/config'
|
||||||
|
|
||||||
|
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 = ref({
|
||||||
|
id: undefined,
|
||||||
|
category: '',
|
||||||
|
name: '',
|
||||||
|
key: '',
|
||||||
|
value: '',
|
||||||
|
visible: true,
|
||||||
|
remark: ''
|
||||||
|
})
|
||||||
|
const formRules = reactive({
|
||||||
|
category: [{ required: true, message: '参数分类不能为空', trigger: 'blur' }],
|
||||||
|
name: [{ required: true, message: '参数名称不能为空', trigger: 'blur' }],
|
||||||
|
key: [{ required: true, message: '参数键名不能为空', trigger: 'blur' }],
|
||||||
|
value: [{ required: true, message: '参数键值不能为空', trigger: 'blur' }],
|
||||||
|
visible: [{ required: true, message: '是否可见不能为空', trigger: 'blur' }]
|
||||||
|
})
|
||||||
|
const formRef = ref() // 表单 Ref
|
||||||
|
|
||||||
|
/** 打开弹窗 */
|
||||||
|
const openModal = async (type: string, id?: number) => {
|
||||||
|
modelVisible.value = true
|
||||||
|
modelTitle.value = t('action.' + type)
|
||||||
|
formType.value = type
|
||||||
|
resetForm()
|
||||||
|
// 修改时,设置数据
|
||||||
|
if (id) {
|
||||||
|
formLoading.value = true
|
||||||
|
try {
|
||||||
|
formData.value = await ConfigApi.getConfig(id)
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defineExpose({ openModal }) // 提供 openModal 方法,用于打开弹窗
|
||||||
|
|
||||||
|
/** 提交表单 */
|
||||||
|
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 ConfigApi.ConfigVO
|
||||||
|
if (formType.value === 'create') {
|
||||||
|
await ConfigApi.createConfig(data)
|
||||||
|
message.success(t('common.createSuccess'))
|
||||||
|
} else {
|
||||||
|
await ConfigApi.updateConfig(data)
|
||||||
|
message.success(t('common.updateSuccess'))
|
||||||
|
}
|
||||||
|
modelVisible.value = false
|
||||||
|
// 发送操作成功的事件
|
||||||
|
emit('success')
|
||||||
|
} finally {
|
||||||
|
formLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置表单 */
|
||||||
|
const resetForm = () => {
|
||||||
|
formData.value = {
|
||||||
|
id: undefined,
|
||||||
|
category: '',
|
||||||
|
name: '',
|
||||||
|
key: '',
|
||||||
|
value: '',
|
||||||
|
visible: true,
|
||||||
|
remark: ''
|
||||||
|
}
|
||||||
|
formRef.value?.resetFields()
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -1,162 +1,203 @@
|
||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<content-wrap>
|
||||||
<!-- 列表 -->
|
<!-- 搜索工作栏 -->
|
||||||
<XTable @register="registerTable">
|
<el-form :model="queryParams" ref="queryFormRef" :inline="true" label-width="68px">
|
||||||
<template #toolbar_buttons>
|
<el-form-item label="参数名称" prop="name">
|
||||||
<!-- 操作:新增 -->
|
<el-input
|
||||||
<XButton
|
v-model="queryParams.name"
|
||||||
type="primary"
|
placeholder="请输入参数名称"
|
||||||
preIcon="ep:zoom-in"
|
clearable
|
||||||
:title="t('action.add')"
|
@keyup.enter="handleQuery"
|
||||||
v-hasPermi="['infra:config:create']"
|
|
||||||
@click="handleCreate()"
|
|
||||||
/>
|
/>
|
||||||
<!-- 操作:导出 -->
|
</el-form-item>
|
||||||
<XButton
|
<el-form-item label="参数键名" prop="key">
|
||||||
type="warning"
|
<el-input
|
||||||
preIcon="ep:download"
|
v-model="queryParams.key"
|
||||||
:title="t('action.export')"
|
placeholder="请输入参数键名"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="系统内置" prop="type">
|
||||||
|
<el-select v-model="queryParams.type" placeholder="请选择系统内置" clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in getDictOptions(DICT_TYPE.INFRA_CONFIG_TYPE)"
|
||||||
|
:key="parseInt(dict.value)"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="parseInt(dict.value)"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="创建时间" prop="createTime">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="queryParams.createTime"
|
||||||
|
value-format="YYYY-MM-DD HH:mm:ss"
|
||||||
|
type="daterange"
|
||||||
|
range-separator="-"
|
||||||
|
start-placeholder="开始日期"
|
||||||
|
end-placeholder="结束日期"
|
||||||
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<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="openModal('create')" v-hasPermi="['infra:config:create']">
|
||||||
|
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
type="success"
|
||||||
|
plain
|
||||||
|
@click="handleExport"
|
||||||
|
:loading="exportLoading"
|
||||||
v-hasPermi="['infra:config:export']"
|
v-hasPermi="['infra:config:export']"
|
||||||
@click="exportList('配置.xls')"
|
>
|
||||||
/>
|
<Icon icon="ep:download" class="mr-5px" /> 导出
|
||||||
</template>
|
</el-button>
|
||||||
<template #visible_default="{ row }">
|
</el-form-item>
|
||||||
<span>{{ row.visible ? '是' : '否' }} </span>
|
</el-form>
|
||||||
</template>
|
|
||||||
<template #actionbtns_default="{ row }">
|
|
||||||
<!-- 操作:修改 -->
|
|
||||||
<XTextButton
|
|
||||||
preIcon="ep:edit"
|
|
||||||
:title="t('action.edit')"
|
|
||||||
v-hasPermi="['infra:config:update']"
|
|
||||||
@click="handleUpdate(row.id)"
|
|
||||||
/>
|
|
||||||
<!-- 操作:详情 -->
|
|
||||||
<XTextButton
|
|
||||||
preIcon="ep:view"
|
|
||||||
:title="t('action.detail')"
|
|
||||||
v-hasPermi="['infra:config:query']"
|
|
||||||
@click="handleDetail(row.id)"
|
|
||||||
/>
|
|
||||||
<!-- 操作:删除 -->
|
|
||||||
<XTextButton
|
|
||||||
preIcon="ep:delete"
|
|
||||||
:title="t('action.del')"
|
|
||||||
v-hasPermi="['infra:config:delete']"
|
|
||||||
@click="deleteData(row.id)"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</XTable>
|
|
||||||
</ContentWrap>
|
|
||||||
|
|
||||||
<XModal v-model="dialogVisible" :title="dialogTitle">
|
<!-- 列表 -->
|
||||||
<!-- 对话框(添加 / 修改) -->
|
<el-table v-loading="loading" :data="list" align="center">
|
||||||
<Form
|
<el-table-column label="参数主键" align="center" prop="id" />
|
||||||
v-if="['create', 'update'].includes(actionType)"
|
<el-table-column label="参数分类" align="center" prop="category" />
|
||||||
:schema="allSchemas.formSchema"
|
<el-table-column label="参数名称" align="center" prop="name" :show-overflow-tooltip="true" />
|
||||||
:rules="rules"
|
<el-table-column label="参数键名" align="center" prop="key" :show-overflow-tooltip="true" />
|
||||||
ref="formRef"
|
<el-table-column label="参数键值" align="center" prop="value" />
|
||||||
/>
|
<el-table-column label="是否可见" align="center" prop="visible">
|
||||||
<!-- 对话框(详情) -->
|
<template #default="scope">
|
||||||
<Descriptions
|
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.visible" />
|
||||||
v-if="actionType === 'detail'"
|
</template>
|
||||||
:schema="allSchemas.detailSchema"
|
</el-table-column>
|
||||||
:data="detailData"
|
<el-table-column label="系统内置" align="center" prop="type">
|
||||||
>
|
<template #default="scope">
|
||||||
<template #visible="{ row }">
|
<dict-tag :type="DICT_TYPE.INFRA_CONFIG_TYPE" :value="scope.row.type" />
|
||||||
<span>{{ row.visible ? '是' : '否' }} </span>
|
</template>
|
||||||
</template>
|
</el-table-column>
|
||||||
</Descriptions>
|
<el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true" />
|
||||||
<!-- 操作按钮 -->
|
<el-table-column
|
||||||
<template #footer>
|
label="创建时间"
|
||||||
<!-- 按钮:保存 -->
|
align="center"
|
||||||
<XButton
|
prop="createTime"
|
||||||
v-if="['create', 'update'].includes(actionType)"
|
width="180"
|
||||||
type="primary"
|
:formatter="dateFormatter"
|
||||||
:title="t('action.save')"
|
|
||||||
:loading="actionLoading"
|
|
||||||
@click="submitForm()"
|
|
||||||
/>
|
/>
|
||||||
<!-- 按钮:关闭 -->
|
<el-table-column label="操作" align="center">
|
||||||
<XButton :loading="actionLoading" :title="t('dialog.close')" @click="dialogVisible = false" />
|
<template #default="scope">
|
||||||
</template>
|
<el-button
|
||||||
</XModal>
|
link
|
||||||
|
type="primary"
|
||||||
|
@click="openModal('update', scope.row.id)"
|
||||||
|
v-hasPermi="['infra:config:update']"
|
||||||
|
>
|
||||||
|
编辑
|
||||||
|
</el-button>
|
||||||
|
<el-button
|
||||||
|
link
|
||||||
|
type="danger"
|
||||||
|
@click="handleDelete(scope.row.id)"
|
||||||
|
v-hasPermi="['infra:config:delete']"
|
||||||
|
>
|
||||||
|
删除
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页 -->
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
</content-wrap>
|
||||||
|
|
||||||
|
<!-- 表单弹窗:添加/修改 -->
|
||||||
|
<config-form ref="modalRef" @success="getList" />
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts" name="Config">
|
<script setup lang="ts" name="Config">
|
||||||
import type { FormExpose } from '@/components/Form'
|
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
|
||||||
// 业务相关的 import
|
import { dateFormatter } from '@/utils/formatTime'
|
||||||
|
import download from '@/utils/download'
|
||||||
import * as ConfigApi from '@/api/infra/config'
|
import * as ConfigApi from '@/api/infra/config'
|
||||||
import { rules, allSchemas } from './config.data'
|
import ConfigForm from './form.vue'
|
||||||
|
|
||||||
const { t } = useI18n() // 国际化
|
|
||||||
const message = useMessage() // 消息弹窗
|
const message = useMessage() // 消息弹窗
|
||||||
// 列表相关的变量
|
const { t } = useI18n() // 国际化
|
||||||
const [registerTable, { reload, deleteData, exportList }] = useXTable({
|
|
||||||
allSchemas: allSchemas,
|
const loading = ref(true) // 列表的加载中
|
||||||
getListApi: ConfigApi.getConfigPageApi,
|
const total = ref(0) // 列表的总页数
|
||||||
deleteApi: ConfigApi.deleteConfigApi,
|
const list = ref([]) // 列表的数据
|
||||||
exportListApi: ConfigApi.exportConfigApi
|
const queryParams = reactive({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
name: undefined,
|
||||||
|
key: undefined,
|
||||||
|
type: undefined,
|
||||||
|
createTime: []
|
||||||
})
|
})
|
||||||
|
const queryFormRef = ref() // 搜索的表单
|
||||||
|
const exportLoading = ref(false) // 导出的加载中
|
||||||
|
|
||||||
// ========== CRUD 相关 ==========
|
/** 查询参数列表 */
|
||||||
const actionLoading = ref(false) // 遮罩层
|
const getList = async () => {
|
||||||
const actionType = ref('') // 操作按钮的类型
|
loading.value = true
|
||||||
const dialogVisible = ref(false) // 是否显示弹出层
|
try {
|
||||||
const dialogTitle = ref('edit') // 弹出层标题
|
const data = await ConfigApi.getConfigPage(queryParams)
|
||||||
const formRef = ref<FormExpose>() // 表单 Ref
|
list.value = data.list
|
||||||
const detailData = ref() // 详情 Ref
|
total.value = data.total
|
||||||
|
} finally {
|
||||||
// 设置标题
|
loading.value = false
|
||||||
const setDialogTile = (type: string) => {
|
}
|
||||||
dialogTitle.value = t('action.' + type)
|
|
||||||
actionType.value = type
|
|
||||||
dialogVisible.value = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 新增操作
|
/** 搜索按钮操作 */
|
||||||
const handleCreate = () => {
|
const handleQuery = () => {
|
||||||
setDialogTile('create')
|
queryParams.pageNo = 1
|
||||||
|
getList()
|
||||||
}
|
}
|
||||||
|
|
||||||
// 修改操作
|
/** 重置按钮操作 */
|
||||||
const handleUpdate = async (rowId: number) => {
|
const resetQuery = () => {
|
||||||
setDialogTile('update')
|
queryFormRef.value.resetFields()
|
||||||
// 设置数据
|
handleQuery()
|
||||||
const res = await ConfigApi.getConfigApi(rowId)
|
|
||||||
unref(formRef)?.setValues(res)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 详情操作
|
/** 添加/修改操作 */
|
||||||
const handleDetail = async (rowId: number) => {
|
const modalRef = ref()
|
||||||
setDialogTile('detail')
|
const openModal = (type: string, id?: number) => {
|
||||||
const res = await ConfigApi.getConfigApi(rowId)
|
modalRef.value.openModal(type, id)
|
||||||
detailData.value = res
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 提交按钮
|
/** 删除按钮操作 */
|
||||||
const submitForm = async () => {
|
const handleDelete = async (id: number) => {
|
||||||
const elForm = unref(formRef)?.getElFormRef()
|
try {
|
||||||
if (!elForm) return
|
// 删除的二次确认
|
||||||
elForm.validate(async (valid) => {
|
await message.delConfirm()
|
||||||
if (valid) {
|
// 发起删除
|
||||||
actionLoading.value = true
|
await ConfigApi.deleteConfig(id)
|
||||||
// 提交请求
|
message.success(t('common.delSuccess'))
|
||||||
try {
|
// 刷新列表
|
||||||
const data = unref(formRef)?.formModel as ConfigApi.ConfigVO
|
await getList()
|
||||||
if (actionType.value === 'create') {
|
} catch {}
|
||||||
await ConfigApi.createConfigApi(data)
|
|
||||||
message.success(t('common.createSuccess'))
|
|
||||||
} else {
|
|
||||||
await ConfigApi.updateConfigApi(data)
|
|
||||||
message.success(t('common.updateSuccess'))
|
|
||||||
}
|
|
||||||
dialogVisible.value = false
|
|
||||||
} finally {
|
|
||||||
actionLoading.value = false
|
|
||||||
// 刷新列表
|
|
||||||
await reload()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
const handleExport = async () => {
|
||||||
|
try {
|
||||||
|
// 导出的二次确认
|
||||||
|
await message.exportConfirm()
|
||||||
|
// 发起导出
|
||||||
|
exportLoading.value = true
|
||||||
|
const data = await ConfigApi.exportConfigApi(queryParams)
|
||||||
|
download.excel(data, '参数配置.xls')
|
||||||
|
} catch {
|
||||||
|
} finally {
|
||||||
|
exportLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 初始化 **/
|
||||||
|
onMounted(() => {
|
||||||
|
getList()
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,148 +1,150 @@
|
||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 列表 -->
|
<el-form ref="searchForm" :model="queryParms" :inline="true">
|
||||||
<XTable @register="registerTable">
|
<el-form-item label="公告标题">
|
||||||
<!-- 操作:新增 -->
|
<el-input v-model="queryParms.title" />
|
||||||
<template #toolbar_buttons>
|
</el-form-item>
|
||||||
<XButton
|
<el-form-item label="状态">
|
||||||
type="primary"
|
<el-select v-model="queryParms.status">
|
||||||
preIcon="ep:zoom-in"
|
<el-option label="全部" value="" />
|
||||||
:title="t('action.add')"
|
<el-option label="开启" :value="1" />
|
||||||
v-hasPermi="['system:notice:create']"
|
<el-option label="关闭" :value="0" />
|
||||||
@click="handleCreate()"
|
</el-select>
|
||||||
/>
|
</el-form-item>
|
||||||
</template>
|
<el-form-item>
|
||||||
<template #actionbtns_default="{ row }">
|
<el-button type="primary" @click="getList">Query</el-button>
|
||||||
<!-- 操作:修改 -->
|
</el-form-item>
|
||||||
<XTextButton
|
</el-form>
|
||||||
preIcon="ep:edit"
|
<div style="width: 100%; height: 600px">
|
||||||
:title="t('action.edit')"
|
<el-auto-resizer>
|
||||||
v-hasPermi="['system:notice:update']"
|
<template #default="{ height, width }">
|
||||||
@click="handleUpdate(row.id)"
|
<el-table-v2
|
||||||
/>
|
:columns="columns"
|
||||||
<!-- 操作:详情 -->
|
:data="tableData"
|
||||||
<XTextButton
|
:width="width"
|
||||||
preIcon="ep:view"
|
:height="height - 50"
|
||||||
:title="t('action.detail')"
|
fixed
|
||||||
v-hasPermi="['system:notice:query']"
|
/>
|
||||||
@click="handleDetail(row.id)"
|
</template>
|
||||||
/>
|
</el-auto-resizer>
|
||||||
<!-- 操作:删除 -->
|
</div>
|
||||||
|
<div class="mt-2">
|
||||||
|
<el-pagination
|
||||||
|
:current-page="queryParms.pageNo"
|
||||||
|
:page-size="queryParms.pageSize"
|
||||||
|
:page-sizes="[10, 20, 30, 50, 100]"
|
||||||
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
:total="tableTotal"
|
||||||
|
@size-change="getList"
|
||||||
|
@current-change="getList"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ContentWrap>
|
||||||
|
</template>
|
||||||
|
<script setup lang="tsx">
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
import { Column, ElPagination, ElTableV2, TableV2FixedDir } from 'element-plus'
|
||||||
|
import * as NoticeApi from '@/api/system/notice'
|
||||||
|
import { XTextButton } from '@/components/XButton'
|
||||||
|
import { DictTag } from '@/components/DictTag'
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
|
||||||
|
const columns: Column<any>[] = [
|
||||||
|
{
|
||||||
|
key: 'id',
|
||||||
|
dataKey: 'id', //需要渲染当前列的数据字段,如{id:9527,name:'Mike'},则填id
|
||||||
|
title: 'id', //显示在单元格表头的文本
|
||||||
|
width: 80, //当前列的宽度,必须设置
|
||||||
|
fixed: true //是否固定列
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'title',
|
||||||
|
dataKey: 'title',
|
||||||
|
title: '公告标题',
|
||||||
|
width: 180
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'type',
|
||||||
|
dataKey: 'type',
|
||||||
|
title: '公告类型',
|
||||||
|
width: 180,
|
||||||
|
cellRenderer: ({ cellData: type }) => (
|
||||||
|
<DictTag type={DICT_TYPE.SYSTEM_NOTICE_TYPE} value={type}></DictTag>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'status',
|
||||||
|
dataKey: 'status',
|
||||||
|
title: t('common.status'),
|
||||||
|
width: 180,
|
||||||
|
cellRenderer: ({ cellData: status }) => (
|
||||||
|
<DictTag type={DICT_TYPE.COMMON_STATUS} value={status}></DictTag>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'content',
|
||||||
|
dataKey: 'content',
|
||||||
|
title: '公告内容',
|
||||||
|
width: 400,
|
||||||
|
cellRenderer: ({ cellData: content }) => <span v-html={content}></span>
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'createTime',
|
||||||
|
dataKey: 'createTime',
|
||||||
|
title: t('common.createTime'),
|
||||||
|
width: 180,
|
||||||
|
cellRenderer: ({ cellData: createTime }) => (
|
||||||
|
<>{dayjs(createTime).format('YYYY-MM-DD HH:mm:ss')}</>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'actionbtns',
|
||||||
|
dataKey: 'actionbtns', //需要渲染当前列的数据字段,如{id:9527,name:'Mike'},则填id
|
||||||
|
title: '操作', //显示在单元格表头的文本
|
||||||
|
width: 160, //当前列的宽度,必须设置
|
||||||
|
fixed: TableV2FixedDir.RIGHT, //是否固定列
|
||||||
|
align: 'center',
|
||||||
|
cellRenderer: ({ cellData: id }) => (
|
||||||
|
<>
|
||||||
<XTextButton
|
<XTextButton
|
||||||
preIcon="ep:delete"
|
preIcon="ep:delete"
|
||||||
:title="t('action.del')"
|
title={t('action.edit')}
|
||||||
v-hasPermi="['system:notice:delete']"
|
onClick={handleUpdate.bind(this, id)}
|
||||||
@click="deleteData(row.id)"
|
></XTextButton>
|
||||||
/>
|
<XTextButton
|
||||||
</template>
|
preIcon="ep:delete"
|
||||||
</XTable>
|
title={t('action.del')}
|
||||||
</ContentWrap>
|
onClick={handleDelete.bind(this, id)}
|
||||||
<!-- 弹窗 -->
|
></XTextButton>
|
||||||
<XModal id="noticeModel" v-model="dialogVisible" :title="dialogTitle">
|
</>
|
||||||
<!-- 对话框(添加 / 修改) -->
|
)
|
||||||
<Form
|
}
|
||||||
ref="formRef"
|
]
|
||||||
v-if="['create', 'update'].includes(actionType)"
|
|
||||||
:schema="allSchemas.formSchema"
|
|
||||||
:rules="rules"
|
|
||||||
/>
|
|
||||||
<!-- 对话框(详情) -->
|
|
||||||
<Descriptions
|
|
||||||
v-if="actionType === 'detail'"
|
|
||||||
:schema="allSchemas.detailSchema"
|
|
||||||
:data="detailData"
|
|
||||||
>
|
|
||||||
<template #content="{ row }">
|
|
||||||
<Editor :model-value="row.content" :readonly="true" />
|
|
||||||
</template>
|
|
||||||
</Descriptions>
|
|
||||||
<template #footer>
|
|
||||||
<!-- 按钮:保存 -->
|
|
||||||
<XButton
|
|
||||||
v-if="['create', 'update'].includes(actionType)"
|
|
||||||
type="primary"
|
|
||||||
:title="t('action.save')"
|
|
||||||
:loading="actionLoading"
|
|
||||||
@click="submitForm()"
|
|
||||||
/>
|
|
||||||
<!-- 按钮:关闭 -->
|
|
||||||
<XButton :loading="actionLoading" :title="t('dialog.close')" @click="dialogVisible = false" />
|
|
||||||
</template>
|
|
||||||
</XModal>
|
|
||||||
</template>
|
|
||||||
<script setup lang="ts" name="Notice">
|
|
||||||
import type { FormExpose } from '@/components/Form'
|
|
||||||
// 业务相关的 import
|
|
||||||
import * as NoticeApi from '@/api/system/notice'
|
|
||||||
import { rules, allSchemas } from './notice.data'
|
|
||||||
|
|
||||||
const { t } = useI18n() // 国际化
|
const tableData = ref([])
|
||||||
const message = useMessage() // 消息弹窗
|
|
||||||
// 列表相关的变量
|
const tableTotal = ref(0)
|
||||||
const [registerTable, { reload, deleteData }] = useXTable({
|
|
||||||
allSchemas: allSchemas,
|
const queryParms = reactive({
|
||||||
getListApi: NoticeApi.getNoticePageApi,
|
title: '',
|
||||||
deleteApi: NoticeApi.deleteNoticeApi
|
status: undefined,
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 100
|
||||||
})
|
})
|
||||||
// 弹窗相关的变量
|
|
||||||
const dialogVisible = ref(false) // 是否显示弹出层
|
|
||||||
const dialogTitle = ref('edit') // 弹出层标题
|
|
||||||
const actionType = ref('') // 操作按钮的类型
|
|
||||||
const actionLoading = ref(false) // 按钮 Loading
|
|
||||||
const formRef = ref<FormExpose>() // 表单 Ref
|
|
||||||
const detailData = ref() // 详情 Ref
|
|
||||||
|
|
||||||
// 设置标题
|
const getList = async () => {
|
||||||
const setDialogTile = (type: string) => {
|
const res = await NoticeApi.getNoticePageApi(queryParms)
|
||||||
dialogTitle.value = t('action.' + type)
|
tableData.value = res.list
|
||||||
actionType.value = type
|
tableTotal.value = res.total
|
||||||
dialogVisible.value = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 新增操作
|
const handleUpdate = (id) => {
|
||||||
const handleCreate = () => {
|
console.info(id)
|
||||||
setDialogTile('create')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 修改操作
|
const handleDelete = (id) => {
|
||||||
const handleUpdate = async (rowId: number) => {
|
console.info(id)
|
||||||
setDialogTile('update')
|
|
||||||
// 设置数据
|
|
||||||
const res = await NoticeApi.getNoticeApi(rowId)
|
|
||||||
unref(formRef)?.setValues(res)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 详情操作
|
getList()
|
||||||
const handleDetail = async (rowId: number) => {
|
|
||||||
setDialogTile('detail')
|
|
||||||
// 设置数据
|
|
||||||
const res = await NoticeApi.getNoticeApi(rowId)
|
|
||||||
detailData.value = res
|
|
||||||
}
|
|
||||||
|
|
||||||
// 提交新增/修改的表单
|
|
||||||
const submitForm = async () => {
|
|
||||||
const elForm = unref(formRef)?.getElFormRef()
|
|
||||||
if (!elForm) return
|
|
||||||
elForm.validate(async (valid) => {
|
|
||||||
if (valid) {
|
|
||||||
actionLoading.value = true
|
|
||||||
// 提交请求
|
|
||||||
try {
|
|
||||||
const data = unref(formRef)?.formModel as NoticeApi.NoticeVO
|
|
||||||
if (actionType.value === 'create') {
|
|
||||||
await NoticeApi.createNoticeApi(data)
|
|
||||||
message.success(t('common.createSuccess'))
|
|
||||||
} else {
|
|
||||||
await NoticeApi.updateNoticeApi(data)
|
|
||||||
message.success(t('common.updateSuccess'))
|
|
||||||
}
|
|
||||||
dialogVisible.value = false
|
|
||||||
} finally {
|
|
||||||
actionLoading.value = false
|
|
||||||
await reload()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -0,0 +1,148 @@
|
||||||
|
<template>
|
||||||
|
<ContentWrap>
|
||||||
|
<!-- 列表 -->
|
||||||
|
<XTable @register="registerTable">
|
||||||
|
<!-- 操作:新增 -->
|
||||||
|
<template #toolbar_buttons>
|
||||||
|
<XButton
|
||||||
|
type="primary"
|
||||||
|
preIcon="ep:zoom-in"
|
||||||
|
:title="t('action.add')"
|
||||||
|
v-hasPermi="['system:notice:create']"
|
||||||
|
@click="handleCreate()"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #actionbtns_default="{ row }">
|
||||||
|
<!-- 操作:修改 -->
|
||||||
|
<XTextButton
|
||||||
|
preIcon="ep:edit"
|
||||||
|
:title="t('action.edit')"
|
||||||
|
v-hasPermi="['system:notice:update']"
|
||||||
|
@click="handleUpdate(row.id)"
|
||||||
|
/>
|
||||||
|
<!-- 操作:详情 -->
|
||||||
|
<XTextButton
|
||||||
|
preIcon="ep:view"
|
||||||
|
:title="t('action.detail')"
|
||||||
|
v-hasPermi="['system:notice:query']"
|
||||||
|
@click="handleDetail(row.id)"
|
||||||
|
/>
|
||||||
|
<!-- 操作:删除 -->
|
||||||
|
<XTextButton
|
||||||
|
preIcon="ep:delete"
|
||||||
|
:title="t('action.del')"
|
||||||
|
v-hasPermi="['system:notice:delete']"
|
||||||
|
@click="deleteData(row.id)"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</XTable>
|
||||||
|
</ContentWrap>
|
||||||
|
<!-- 弹窗 -->
|
||||||
|
<XModal id="noticeModel" v-model="dialogVisible" :title="dialogTitle">
|
||||||
|
<!-- 对话框(添加 / 修改) -->
|
||||||
|
<Form
|
||||||
|
ref="formRef"
|
||||||
|
v-if="['create', 'update'].includes(actionType)"
|
||||||
|
:schema="allSchemas.formSchema"
|
||||||
|
:rules="rules"
|
||||||
|
/>
|
||||||
|
<!-- 对话框(详情) -->
|
||||||
|
<Descriptions
|
||||||
|
v-if="actionType === 'detail'"
|
||||||
|
:schema="allSchemas.detailSchema"
|
||||||
|
:data="detailData"
|
||||||
|
>
|
||||||
|
<template #content="{ row }">
|
||||||
|
<Editor :model-value="row.content" :readonly="true" />
|
||||||
|
</template>
|
||||||
|
</Descriptions>
|
||||||
|
<template #footer>
|
||||||
|
<!-- 按钮:保存 -->
|
||||||
|
<XButton
|
||||||
|
v-if="['create', 'update'].includes(actionType)"
|
||||||
|
type="primary"
|
||||||
|
:title="t('action.save')"
|
||||||
|
:loading="actionLoading"
|
||||||
|
@click="submitForm()"
|
||||||
|
/>
|
||||||
|
<!-- 按钮:关闭 -->
|
||||||
|
<XButton :loading="actionLoading" :title="t('dialog.close')" @click="dialogVisible = false" />
|
||||||
|
</template>
|
||||||
|
</XModal>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts" name="Notice">
|
||||||
|
import type { FormExpose } from '@/components/Form'
|
||||||
|
// 业务相关的 import
|
||||||
|
import * as NoticeApi from '@/api/system/notice'
|
||||||
|
import { rules, allSchemas } from './notice.data'
|
||||||
|
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
const message = useMessage() // 消息弹窗
|
||||||
|
// 列表相关的变量
|
||||||
|
const [registerTable, { reload, deleteData }] = useXTable({
|
||||||
|
allSchemas: allSchemas,
|
||||||
|
getListApi: NoticeApi.getNoticePageApi,
|
||||||
|
deleteApi: NoticeApi.deleteNoticeApi
|
||||||
|
})
|
||||||
|
// 弹窗相关的变量
|
||||||
|
const dialogVisible = ref(false) // 是否显示弹出层
|
||||||
|
const dialogTitle = ref('edit') // 弹出层标题
|
||||||
|
const actionType = ref('') // 操作按钮的类型
|
||||||
|
const actionLoading = ref(false) // 按钮 Loading
|
||||||
|
const formRef = ref<FormExpose>() // 表单 Ref
|
||||||
|
const detailData = ref() // 详情 Ref
|
||||||
|
|
||||||
|
// 设置标题
|
||||||
|
const setDialogTile = (type: string) => {
|
||||||
|
dialogTitle.value = t('action.' + type)
|
||||||
|
actionType.value = type
|
||||||
|
dialogVisible.value = true
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增操作
|
||||||
|
const handleCreate = () => {
|
||||||
|
setDialogTile('create')
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改操作
|
||||||
|
const handleUpdate = async (rowId: number) => {
|
||||||
|
setDialogTile('update')
|
||||||
|
// 设置数据
|
||||||
|
const res = await NoticeApi.getNoticeApi(rowId)
|
||||||
|
unref(formRef)?.setValues(res)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 详情操作
|
||||||
|
const handleDetail = async (rowId: number) => {
|
||||||
|
setDialogTile('detail')
|
||||||
|
// 设置数据
|
||||||
|
const res = await NoticeApi.getNoticeApi(rowId)
|
||||||
|
detailData.value = res
|
||||||
|
}
|
||||||
|
|
||||||
|
// 提交新增/修改的表单
|
||||||
|
const submitForm = async () => {
|
||||||
|
const elForm = unref(formRef)?.getElFormRef()
|
||||||
|
if (!elForm) return
|
||||||
|
elForm.validate(async (valid) => {
|
||||||
|
if (valid) {
|
||||||
|
actionLoading.value = true
|
||||||
|
// 提交请求
|
||||||
|
try {
|
||||||
|
const data = unref(formRef)?.formModel as NoticeApi.NoticeVO
|
||||||
|
if (actionType.value === 'create') {
|
||||||
|
await NoticeApi.createNoticeApi(data)
|
||||||
|
message.success(t('common.createSuccess'))
|
||||||
|
} else {
|
||||||
|
await NoticeApi.updateNoticeApi(data)
|
||||||
|
message.success(t('common.updateSuccess'))
|
||||||
|
}
|
||||||
|
dialogVisible.value = false
|
||||||
|
} finally {
|
||||||
|
actionLoading.value = false
|
||||||
|
await reload()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -0,0 +1,103 @@
|
||||||
|
<template>
|
||||||
|
<ContentWrap>
|
||||||
|
<div style="width: 100%; height: 500px">
|
||||||
|
<el-auto-resizer>
|
||||||
|
<template #default="{ height, width }">
|
||||||
|
<el-table-v2 :columns="columns" :data="tableData" :width="width" :height="height" fixed />
|
||||||
|
</template>
|
||||||
|
</el-auto-resizer>
|
||||||
|
<el-pagination
|
||||||
|
:current-page="queryParms.pageNo"
|
||||||
|
:page-size="queryParms.pageSize"
|
||||||
|
layout="total, prev, pager, next"
|
||||||
|
:total="tableTotal"
|
||||||
|
@size-change="getList"
|
||||||
|
@current-change="getList"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ContentWrap>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { Column, TableV2FixedDir } from 'element-plus'
|
||||||
|
import * as NoticeApi from '@/api/system/notice'
|
||||||
|
import { XTextButton } from '@/components/XButton'
|
||||||
|
const { t } = useI18n() // 国际化
|
||||||
|
|
||||||
|
const columns: Column<any>[] = [
|
||||||
|
{
|
||||||
|
key: 'id',
|
||||||
|
dataKey: 'id', //需要渲染当前列的数据字段,如{id:9527,name:'Mike'},则填id
|
||||||
|
title: 'id', //显示在单元格表头的文本
|
||||||
|
width: 80, //当前列的宽度,必须设置
|
||||||
|
fixed: true //是否固定列
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'title',
|
||||||
|
dataKey: 'title',
|
||||||
|
title: '公告标题',
|
||||||
|
width: 180
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'type',
|
||||||
|
dataKey: 'type',
|
||||||
|
title: '公告类型',
|
||||||
|
width: 180
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'status',
|
||||||
|
dataKey: 'status',
|
||||||
|
title: t('common.status'),
|
||||||
|
width: 180
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'content',
|
||||||
|
dataKey: 'content',
|
||||||
|
title: '公告内容',
|
||||||
|
width: 180
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'createTime',
|
||||||
|
dataKey: 'createTime',
|
||||||
|
title: t('common.createTime'),
|
||||||
|
width: 180
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'actionbtns',
|
||||||
|
dataKey: 'actionbtns', //需要渲染当前列的数据字段,如{id:9527,name:'Mike'},则填id
|
||||||
|
title: '操作', //显示在单元格表头的文本
|
||||||
|
width: 80, //当前列的宽度,必须设置
|
||||||
|
fixed: TableV2FixedDir.RIGHT, //是否固定列
|
||||||
|
align: 'center',
|
||||||
|
cellRenderer: (date) =>
|
||||||
|
h(XTextButton, {
|
||||||
|
onClick: () => handleDelete(date.rowData),
|
||||||
|
type: 'danger',
|
||||||
|
preIcon: 'ep:delete',
|
||||||
|
title: t('action.del')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
const tableData = ref([])
|
||||||
|
|
||||||
|
const tableTotal = ref(0)
|
||||||
|
|
||||||
|
const queryParms = reactive({
|
||||||
|
title: '',
|
||||||
|
status: undefined,
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10
|
||||||
|
})
|
||||||
|
|
||||||
|
const getList = async () => {
|
||||||
|
const res = await NoticeApi.getNoticePageApi(queryParms)
|
||||||
|
tableData.value = res.list
|
||||||
|
tableTotal.value = res.total
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleDelete = (row) => {
|
||||||
|
console.info(row.id)
|
||||||
|
}
|
||||||
|
|
||||||
|
getList()
|
||||||
|
</script>
|
Loading…
Reference in New Issue