YZProjectCloud/yanzhu-ui-vue3/src/views/manage/applyConfig/index.vue

331 lines
9.8 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="88px">
<el-form-item label="项目名称" prop="projectName">
<el-input
v-model="queryParams.projectName"
placeholder="请输入项目名称"
clearable
@keyup.enter="handleQuery"
/>
</el-form-item>
<el-form-item label="应用AppId" prop="appId">
<el-input
v-model="queryParams.appId"
placeholder="请输入应用AppId"
clearable
@keyup.enter="handleQuery"
/>
</el-form-item>
<el-form-item label="配置类型" prop="cfgType">
<el-select v-model="queryParams.cfgType" placeholder="请选择配置类型" clearable>
<el-option
v-for="dict in sys_apply_cfg_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</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-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="Plus"
@click="handleAdd"
v-hasPermi="['manage:applyConfig:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="Download"
@click="handleExport"
v-hasPermi="['manage:applyConfig:export']"
>导出</el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="applyConfigList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="所属公司" align="center" prop="deptName" />
<el-table-column label="所属项目" align="center" prop="projectName" />
<el-table-column label="配置类型" align="center" prop="cfgType">
<template #default="scope">
<dict-tag :options="sys_apply_cfg_type" :value="scope.row.cfgType"/>
</template>
</el-table-column>
<el-table-column label="应用AppId" align="center" prop="appId" />
<el-table-column label="应用Secret" align="center" prop="privateKey" />
<el-table-column
label="是否启用"
align="center"
prop="isDel"
width="100"
v-hasPermi="['manage:applyConfig:edit']"
>
<template #default="scope">
<el-tooltip :content="scope.row.isDel == '0' ? '启用' : '停用'" placement="top">
<el-switch
active-value="0"
inactive-value="1"
v-model="scope.row.isDel"
@change="setStatus($event, scope.row)"
/>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
label="是否启用"
align="center"
prop="isDel"
width="100"
v-notHasPermi="['manage:applyConfig:edit']"
>
<template #default="scope">
<dict-tag :options="sys_normal_disable" :value="scope.row.isDel" />
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" width="160">
<template #default="scope">
<span>{{ parseTime(scope.row.createTime, "{y}-{m}-{d} {h}:{i}") }}</span>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
v-model:page="queryParams.pageNum"
v-model:limit="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改系统应用注册对话框 -->
<el-dialog :title="title" v-model="open" width="720px" append-to-body>
<el-form ref="applyConfigRef" :model="form" :rules="rules" label-width="108px">
<el-form-item label="所属项目" prop="projectId">
<el-select v-model="form.projectId" placeholder="请选择所属项目" style="width:100%;">
<el-option v-for="item in projects" :key="item.id" :label="item.projectName" :value="item.id"></el-option>
</el-select>
</el-form-item>
<el-form-item label="配置类型" prop="cfgType">
<el-select v-model="form.cfgType" placeholder="请选择配置类型" style="width:100%">
<el-option
v-for="dict in sys_apply_cfg_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="应用AppId" prop="appId">
<el-input v-model="form.appId" disabled placeholder="请输入应用AppId" />
</el-form-item>
<el-form-item label="应用Secret" prop="privateKey">
<el-input v-model="form.privateKey" type="textarea" disabled placeholder="保存后系统自动生成应用Secret" />
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel">取 消</el-button>
</div>
</template>
</el-dialog>
</div>
</template>
<script setup name="ApplyConfig">
import { listApplyConfig, getApplyConfig, delApplyConfig, addApplyConfig, updateApplyConfig, createAppId } from "@/api/manage/applyConfig";
import { findMyProjectList } from '@/api/publics'
const { proxy } = getCurrentInstance();
const { sys_normal_disable,sys_apply_cfg_type } = proxy.useDict('sys_normal_disable','sys_apply_cfg_type');
const applyConfigList = ref([]);
const open = ref(false);
const loading = ref(true);
const showSearch = ref(true);
const ids = ref([]);
const single = ref(true);
const multiple = ref(true);
const total = ref(0);
const title = ref("");
const projects = ref([]);
const data = reactive({
form: {},
queryParams: {
pageNum: 1,
pageSize: 10,
projectName: null,
appId: null,
cfgType: null
},
rules: {
projectId: [{ required: true, trigger: 'change', message: '' }],
cfgType: [{ required: true, trigger: 'change', message: '' }],
appId: [{ required: true, trigger: ['blur', 'change'], message: 'AppId' }],
}
});
const { queryParams, form, rules } = toRefs(data);
/** */
function getList() {
loading.value = true;
listApplyConfig(queryParams.value).then(response => {
applyConfigList.value = response.rows;
total.value = response.total;
loading.value = false;
});
}
// 取消按钮
function cancel() {
open.value = false;
reset();
}
// 表单重置
function reset() {
form.value = {
id: null,
cfgType: null,
cfgId: null,
appId: null,
publicKey: null,
privateKey: null,
projectId: null,
deptId: null,
isDel: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
remark: null
};
proxy.resetForm("applyConfigRef");
}
/** 搜索按钮操作 */
function handleQuery() {
queryParams.value.pageNum = 1;
getList();
}
/** 重置按钮操作 */
function resetQuery() {
proxy.resetForm("queryRef");
handleQuery();
}
// 多选框选中数据
function handleSelectionChange(selection) {
ids.value = selection.map(item => item.id);
single.value = selection.length != 1;
multiple.value = !selection.length;
}
/** 新增按钮操作 */
function handleAdd() {
reset();
open.value = true;
title.value = "添加系统应用注册";
createAppId().then(res =>{
form.value.appId = res.msg;
})
}
/** 修改按钮操作 */
function handleUpdate(row) {
reset();
const _id = row.id || ids.value
getApplyConfig(_id).then(response => {
form.value = response.data;
open.value = true;
title.value = "修改系统应用注册";
});
}
/** 提交按钮 */
function submitForm() {
proxy.$refs["applyConfigRef"].validate(valid => {
if (valid) {
if (form.value.id != null) {
updateApplyConfig(form.value).then(response => {
proxy.$modal.msgSuccess("修改成功");
open.value = false;
getList();
});
} else {
addApplyConfig(form.value).then(response => {
proxy.$modal.msgSuccess("新增成功");
open.value = false;
getList();
});
}
}
});
}
/** 状态滑块控制 */
function setStatus(val, row) {
proxy.$modal
.confirm(`是否确认${val == "0" ? "启用" : "停用"}当前数据项?`)
.then(function () {
let _data = { id: row.id, isDel: val };
return updateApplyConfig(_data);
})
.then(() => {
getList();
proxy.$modal.msgSuccess("修改成功");
})
.catch(() => {
// 取消时恢复原始开关状态
if (val == "0") {
row.isDel = "1";
} else {
row.isDel = "0";
}
});
}
function getProjectList() {
findMyProjectList({ pageNum: 1, pageSize: 100 }).then((response) => {
projects.value = response.rows
})
}
/** 删除按钮操作 */
function handleDelete(row) {
const _ids = row.id || ids.value;
proxy.$modal.confirm('是否确认删除系统应用注册编号为"' + _ids + '"的数据项?').then(function() {
return delApplyConfig(_ids);
}).then(() => {
getList();
proxy.$modal.msgSuccess("删除成功");
}).catch(() => {});
}
/** 导出按钮操作 */
function handleExport() {
proxy.download('manage/applyConfig/export', {
...queryParams.value
}, `applyConfig_${new Date().getTime()}.xlsx`)
}
getProjectList();
getList();
</script>