2023-02-11 00:44:00 +08:00
|
|
|
|
<template>
|
2023-03-08 08:15:49 +08:00
|
|
|
|
<content-wrap>
|
|
|
|
|
<!-- 搜索工作栏 -->
|
|
|
|
|
<el-form
|
|
|
|
|
:model="queryParams"
|
2023-03-08 23:38:07 +08:00
|
|
|
|
ref="queryFormRef"
|
2023-03-08 08:15:49 +08:00
|
|
|
|
:inline="true"
|
|
|
|
|
v-show="showSearch"
|
|
|
|
|
label-width="68px"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="参数名称" prop="name">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.name"
|
|
|
|
|
placeholder="请输入参数名称"
|
|
|
|
|
clearable
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
@keyup.enter="handleQuery"
|
2023-02-11 00:44:00 +08:00
|
|
|
|
/>
|
2023-03-08 08:15:49 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="参数键名" prop="key">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.key"
|
|
|
|
|
placeholder="请输入参数键名"
|
|
|
|
|
clearable
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
@keyup.enter="handleQuery"
|
2023-02-11 00:44:00 +08:00
|
|
|
|
/>
|
2023-03-08 08:15:49 +08:00
|
|
|
|
</el-form-item>
|
2023-03-08 22:51:07 +08:00
|
|
|
|
<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>
|
2023-03-08 08:15:49 +08:00
|
|
|
|
<el-form-item label="创建时间" prop="createTime">
|
|
|
|
|
<el-date-picker
|
2023-03-09 19:36:57 +08:00
|
|
|
|
v-model="queryParams.createTime"
|
2023-03-08 08:15:49 +08:00
|
|
|
|
style="width: 240px"
|
2023-03-09 19:36:57 +08:00
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
2023-03-08 08:15:49 +08:00
|
|
|
|
type="daterange"
|
|
|
|
|
range-separator="-"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
2023-03-09 19:36:57 +08:00
|
|
|
|
:default-time="[new Date(0, 0, 0, 0, 0, 0), new Date(0, 0, 0, 23, 59, 59)]"
|
2023-02-11 00:44:00 +08:00
|
|
|
|
/>
|
2023-03-08 08:15:49 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
2023-03-10 00:53:23 +08:00
|
|
|
|
<el-button type="primary" @click="handleQuery">
|
|
|
|
|
<Icon icon="ep:search" class="mr-5px" /> 搜索
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
2023-03-08 08:15:49 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
2023-02-11 00:44:00 +08:00
|
|
|
|
|
2023-03-08 09:49:14 +08:00
|
|
|
|
<!-- 操作栏 -->
|
2023-03-09 13:28:11 +08:00
|
|
|
|
<!-- TODO 间隔貌似有点问题 没发现 -->
|
2023-03-08 09:49:14 +08:00
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
plain
|
2023-03-08 23:38:07 +08:00
|
|
|
|
@click="openModal('create')"
|
2023-03-08 09:49:14 +08:00
|
|
|
|
v-hasPermi="['infra:config:create']"
|
|
|
|
|
>
|
2023-03-10 00:53:23 +08:00
|
|
|
|
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
2023-03-08 09:49:14 +08:00
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
2023-03-10 08:04:14 +08:00
|
|
|
|
type="success"
|
|
|
|
|
plain
|
2023-03-08 09:49:14 +08:00
|
|
|
|
@click="handleExport"
|
|
|
|
|
:loading="exportLoading"
|
|
|
|
|
v-hasPermi="['infra:config:export']"
|
|
|
|
|
>
|
2023-03-10 00:53:23 +08:00
|
|
|
|
<Icon icon="ep:download" class="mr-5px" /> 导出
|
2023-03-08 09:49:14 +08:00
|
|
|
|
</el-button>
|
2023-03-10 08:04:14 +08:00
|
|
|
|
<el-button text @click="showSearch = !showSearch">
|
|
|
|
|
<Icon :icon="showSearch ? 'ep:arrow-up' : 'ep:arrow-down'" />
|
|
|
|
|
</el-button>
|
2023-03-08 09:49:14 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
<!-- TODO 芋艿:右侧导航 -->
|
2023-03-09 13:28:11 +08:00
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList" />
|
2023-03-08 09:49:14 +08:00
|
|
|
|
</el-row>
|
|
|
|
|
|
2023-03-08 08:15:49 +08:00
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<el-table v-loading="loading" :data="list">
|
|
|
|
|
<el-table-column label="参数主键" align="center" prop="id" />
|
|
|
|
|
<el-table-column label="参数分类" align="center" prop="category" />
|
|
|
|
|
<el-table-column label="参数名称" align="center" prop="name" :show-overflow-tooltip="true" />
|
|
|
|
|
<el-table-column label="参数键名" align="center" prop="key" :show-overflow-tooltip="true" />
|
|
|
|
|
<el-table-column label="参数键值" align="center" prop="value" />
|
2023-03-08 09:49:14 +08:00
|
|
|
|
<el-table-column label="是否可见" align="center" prop="visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.visible" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2023-03-08 08:15:49 +08:00
|
|
|
|
<el-table-column label="系统内置" align="center" prop="type">
|
2023-03-08 09:49:14 +08:00
|
|
|
|
<template #default="scope">
|
2023-03-08 08:15:49 +08:00
|
|
|
|
<dict-tag :type="DICT_TYPE.INFRA_CONFIG_TYPE" :value="scope.row.type" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true" />
|
2023-03-08 09:49:14 +08:00
|
|
|
|
<!-- TODO 芋艿:时间写的有点复杂 -->
|
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<!-- <span>{{ parseTime(scope.row.createTime) }}</span>-->
|
|
|
|
|
<span>{{ dayjs(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2023-03-10 00:53:23 +08:00
|
|
|
|
<!-- TODO 芋艿:宽度;里面的 css -->
|
2023-03-08 09:49:14 +08:00
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
link
|
|
|
|
|
type="primary"
|
2023-03-08 22:51:07 +08:00
|
|
|
|
@click="openModal('update', scope.row.id)"
|
2023-03-08 09:49:14 +08:00
|
|
|
|
v-hasPermi="['infra:config:update']"
|
|
|
|
|
>
|
2023-03-10 00:53:23 +08:00
|
|
|
|
<Icon icon="ep:edit" /> 修改
|
2023-03-08 09:49:14 +08:00
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
link
|
|
|
|
|
type="primary"
|
2023-03-10 08:04:14 +08:00
|
|
|
|
@click="handleDelete(scope.row.id)"
|
2023-03-08 09:49:14 +08:00
|
|
|
|
v-hasPermi="['infra:config:delete']"
|
|
|
|
|
>
|
2023-03-10 00:53:23 +08:00
|
|
|
|
<Icon icon="ep:delete" /> 删除
|
2023-03-08 09:49:14 +08:00
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2023-03-08 08:15:49 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
</content-wrap>
|
2023-03-08 22:51:07 +08:00
|
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
2023-03-09 19:36:57 +08:00
|
|
|
|
<config-form ref="modalRef" @success="getList" />
|
2023-02-11 00:44:00 +08:00
|
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts" name="Config">
|
2023-03-10 08:04:14 +08:00
|
|
|
|
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
|
2023-02-11 00:44:00 +08:00
|
|
|
|
import * as ConfigApi from '@/api/infra/config'
|
2023-03-09 19:36:57 +08:00
|
|
|
|
import ConfigForm from './form.vue'
|
2023-03-08 09:49:14 +08:00
|
|
|
|
import dayjs from 'dayjs'
|
2023-03-10 08:15:30 +08:00
|
|
|
|
import download from '@/utils/download'
|
2023-03-10 08:04:14 +08:00
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
|
2023-03-08 08:15:49 +08:00
|
|
|
|
const showSearch = ref(true) // 搜索框的是否展示
|
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
|
|
|
const total = ref(0) // 列表的总页数
|
|
|
|
|
const list = ref([]) // 列表的数据
|
|
|
|
|
const queryParams = reactive({
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
name: undefined,
|
|
|
|
|
key: undefined,
|
2023-03-09 19:36:57 +08:00
|
|
|
|
type: undefined,
|
|
|
|
|
createTime: []
|
2023-02-11 00:44:00 +08:00
|
|
|
|
})
|
2023-03-08 23:38:07 +08:00
|
|
|
|
const queryFormRef = ref() // 搜索的表单
|
2023-03-10 08:04:14 +08:00
|
|
|
|
const exportLoading = ref(false) // 导出的加载中
|
2023-02-11 00:44:00 +08:00
|
|
|
|
|
2023-03-08 08:15:49 +08:00
|
|
|
|
/** 查询参数列表 */
|
|
|
|
|
const getList = async () => {
|
|
|
|
|
loading.value = true
|
|
|
|
|
try {
|
|
|
|
|
const data = await ConfigApi.getConfigPage(queryParams)
|
|
|
|
|
list.value = data.list
|
|
|
|
|
total.value = data.value
|
|
|
|
|
} finally {
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
2023-02-11 00:44:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-10 08:15:30 +08:00
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
const handleQuery = () => {
|
|
|
|
|
queryParams.pageNo = 1
|
|
|
|
|
getList()
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-08 08:15:49 +08:00
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
const resetQuery = () => {
|
2023-03-08 23:38:07 +08:00
|
|
|
|
queryFormRef.value.resetFields()
|
2023-03-08 08:15:49 +08:00
|
|
|
|
handleQuery()
|
2023-02-11 00:44:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-08 22:51:07 +08:00
|
|
|
|
/** 添加/修改操作 */
|
|
|
|
|
const modalRef = ref()
|
|
|
|
|
const openModal = (type: string, id?: number) => {
|
|
|
|
|
modalRef.value.openModal(type, id)
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-10 08:04:14 +08:00
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
const handleDelete = async (id: number) => {
|
|
|
|
|
try {
|
2023-03-10 08:15:30 +08:00
|
|
|
|
// 删除的二次确认
|
2023-03-10 08:04:14 +08:00
|
|
|
|
await message.delConfirm()
|
|
|
|
|
// 发起删除
|
|
|
|
|
await ConfigApi.deleteConfig(id)
|
|
|
|
|
message.success(t('common.delSuccess'))
|
|
|
|
|
// 刷新列表
|
|
|
|
|
await getList()
|
|
|
|
|
} catch {}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-10 08:15:30 +08:00
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-09 19:36:57 +08:00
|
|
|
|
/** 初始化 **/
|
2023-03-08 08:15:49 +08:00
|
|
|
|
onMounted(() => {
|
|
|
|
|
getList()
|
|
|
|
|
})
|
2023-02-11 00:44:00 +08:00
|
|
|
|
</script>
|