|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
- <div class="system-edit-dic-container">
|
|
|
- <el-dialog :title="(ruleForm.configId!==0?'修改':'添加')+'参数'" v-model="isShowDialog" width="769px">
|
|
|
- <el-form :model="ruleForm" ref="formRef" :rules="rules" size="default" label-width="90px">
|
|
|
+ <div class="system-edit-dic-container">
|
|
|
+ <el-dialog :title="(ruleForm.configId!==0?'修改':'添加')+'参数'" v-model="isShowDialog" width="769px">
|
|
|
+ <el-form :model="ruleForm" ref="formRef" :rules="rules" size="default" label-width="90px">
|
|
|
<el-form-item label="参数名称" prop="configName">
|
|
|
<el-input v-model="ruleForm.configName" placeholder="请输入参数名称" />
|
|
|
</el-form-item>
|
|
@@ -11,102 +11,92 @@
|
|
|
<el-form-item label="参数键值" prop="configValue">
|
|
|
<el-input v-model="ruleForm.configValue" placeholder="请输入参数键值" />
|
|
|
</el-form-item>
|
|
|
- <!-- <el-form-item label="系统内置" prop="configType">
|
|
|
+ <el-form-item label="系统内置" prop="configType">
|
|
|
<el-radio-group v-model="ruleForm.configType">
|
|
|
- <el-radio
|
|
|
- v-for="dict in sysYesNoOptions"
|
|
|
- :key="dict.value"
|
|
|
- :label="dict.value"
|
|
|
- >{{dict.label}}</el-radio>
|
|
|
+ <el-radio v-for="dict in sysYesNoOptions" :key="dict.value" :label="dict.value">{{dict.label}}</el-radio>
|
|
|
</el-radio-group>
|
|
|
- </el-form-item> -->
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
<el-input v-model="ruleForm.remark" type="textarea" placeholder="请输入内容" />
|
|
|
</el-form-item>
|
|
|
- </el-form>
|
|
|
- <template #footer>
|
|
|
- <span class="dialog-footer">
|
|
|
- <el-button @click="onCancel" size="default">取 消</el-button>
|
|
|
- <el-button type="primary" @click="onSubmit" size="default">{{ruleForm.configId!==0?'修 改':'添 加'}}</el-button>
|
|
|
- </span>
|
|
|
- </template>
|
|
|
- </el-dialog>
|
|
|
- </div>
|
|
|
+ </el-form>
|
|
|
+ <template #footer>
|
|
|
+ <span class="dialog-footer">
|
|
|
+ <el-button @click="onCancel" size="default">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="onSubmit" size="default">{{ruleForm.configId!==0?'修 改':'添 加'}}</el-button>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
|
-import { reactive, toRefs, defineComponent,ref, unref } from 'vue';
|
|
|
-import {ElMessage} from "element-plus";
|
|
|
-import api from "/@/api/system";
|
|
|
+import { reactive, toRefs, defineComponent, ref, unref } from 'vue';
|
|
|
+import { ElMessage } from 'element-plus';
|
|
|
+import api from '/@/api/system';
|
|
|
interface RuleFormState {
|
|
|
- configId: number;
|
|
|
- configName: string;
|
|
|
- configKey: string;
|
|
|
- configValue: string;
|
|
|
- configType: string;
|
|
|
- remark: string
|
|
|
+ configId: number;
|
|
|
+ configName: string;
|
|
|
+ configKey: string;
|
|
|
+ configValue: string;
|
|
|
+ configType: string;
|
|
|
+ remark: string;
|
|
|
}
|
|
|
interface DicState {
|
|
|
isShowDialog: boolean;
|
|
|
ruleForm: RuleFormState;
|
|
|
- rules:{}
|
|
|
+ rules: {};
|
|
|
}
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'systemEditDicData',
|
|
|
- props:{
|
|
|
- sysYesNoOptions:{
|
|
|
- type:Array,
|
|
|
- default:()=>[]
|
|
|
- }
|
|
|
- },
|
|
|
- setup(prop,{emit}) {
|
|
|
- const formRef = ref<HTMLElement | null>(null);
|
|
|
+ props: {
|
|
|
+ sysYesNoOptions: {
|
|
|
+ type: Array,
|
|
|
+ default: () => [],
|
|
|
+ },
|
|
|
+ },
|
|
|
+ setup(prop, { emit }) {
|
|
|
+ const formRef = ref<HTMLElement | null>(null);
|
|
|
const state = reactive<DicState>({
|
|
|
isShowDialog: false,
|
|
|
ruleForm: {
|
|
|
- configId: 0,
|
|
|
- configName: '',
|
|
|
- configKey: '',
|
|
|
- configValue: '',
|
|
|
- configType: '0',
|
|
|
- remark: '',
|
|
|
+ configId: 0,
|
|
|
+ configName: '',
|
|
|
+ configKey: '',
|
|
|
+ configValue: '',
|
|
|
+ configType: '0',
|
|
|
+ remark: '',
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ configName: [{ required: true, message: '参数名称不能为空', trigger: 'blur' }],
|
|
|
+ configKey: [{ required: true, message: '参数键名不能为空', trigger: 'blur' }],
|
|
|
+ configValue: [{ required: true, message: '参数键值不能为空', trigger: 'blur' }],
|
|
|
},
|
|
|
- rules: {
|
|
|
- configName: [
|
|
|
- { required: true, message: "参数名称不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- configKey: [
|
|
|
- { required: true, message: "参数键名不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
- configValue: [
|
|
|
- { required: true, message: "参数键值不能为空", trigger: "blur" }
|
|
|
- ]
|
|
|
- }
|
|
|
});
|
|
|
// 打开弹窗
|
|
|
- const openDialog = (row: RuleFormState|null) => {
|
|
|
- resetForm();
|
|
|
- if (row){
|
|
|
- api.config.detail(row.configId).then((res:any)=>{
|
|
|
- const data:RuleFormState = res.data.data
|
|
|
- data.configType = String(data.configType)
|
|
|
- state.ruleForm = data
|
|
|
- })
|
|
|
- state.ruleForm = row;
|
|
|
- }
|
|
|
+ const openDialog = (row: RuleFormState | null) => {
|
|
|
+ resetForm();
|
|
|
+ if (row) {
|
|
|
+ api.config.detail(row.configId).then((res: any) => {
|
|
|
+ const data: RuleFormState = res.data.data;
|
|
|
+ data.configType = String(data.configType);
|
|
|
+ state.ruleForm = data;
|
|
|
+ });
|
|
|
+ state.ruleForm = row;
|
|
|
+ }
|
|
|
state.isShowDialog = true;
|
|
|
};
|
|
|
- const resetForm = ()=>{
|
|
|
- state.ruleForm = {
|
|
|
- configId: 0,
|
|
|
- configName: '',
|
|
|
- configKey: '',
|
|
|
- configValue: '',
|
|
|
- configType: '0',
|
|
|
- remark: '',
|
|
|
- }
|
|
|
- };
|
|
|
+ const resetForm = () => {
|
|
|
+ state.ruleForm = {
|
|
|
+ configId: 0,
|
|
|
+ configName: '',
|
|
|
+ configKey: '',
|
|
|
+ configValue: '',
|
|
|
+ configType: '0',
|
|
|
+ remark: '',
|
|
|
+ };
|
|
|
+ };
|
|
|
// 关闭弹窗
|
|
|
const closeDialog = () => {
|
|
|
state.isShowDialog = false;
|
|
@@ -117,34 +107,34 @@ export default defineComponent({
|
|
|
};
|
|
|
// 新增
|
|
|
const onSubmit = () => {
|
|
|
- const formWrap = unref(formRef) as any;
|
|
|
- if (!formWrap) return;
|
|
|
- formWrap.validate((valid: boolean) => {
|
|
|
- if (valid) {
|
|
|
- if(state.ruleForm.configId!==0){
|
|
|
- //修改
|
|
|
- api.config.edit(state.ruleForm).then(()=>{
|
|
|
- ElMessage.success('参数修改成功');
|
|
|
- closeDialog(); // 关闭弹窗
|
|
|
- emit('dataList')
|
|
|
- })
|
|
|
- }else{
|
|
|
- //添加
|
|
|
- api.config.add(state.ruleForm).then(()=>{
|
|
|
- ElMessage.success('参数添加成功');
|
|
|
- closeDialog(); // 关闭弹窗
|
|
|
- emit('dataList')
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
+ const formWrap = unref(formRef) as any;
|
|
|
+ if (!formWrap) return;
|
|
|
+ formWrap.validate((valid: boolean) => {
|
|
|
+ if (valid) {
|
|
|
+ if (state.ruleForm.configId !== 0) {
|
|
|
+ //修改
|
|
|
+ api.config.edit(state.ruleForm).then(() => {
|
|
|
+ ElMessage.success('参数修改成功');
|
|
|
+ closeDialog(); // 关闭弹窗
|
|
|
+ emit('dataList');
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ //添加
|
|
|
+ api.config.add(state.ruleForm).then(() => {
|
|
|
+ ElMessage.success('参数添加成功');
|
|
|
+ closeDialog(); // 关闭弹窗
|
|
|
+ emit('dataList');
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
};
|
|
|
return {
|
|
|
openDialog,
|
|
|
closeDialog,
|
|
|
onCancel,
|
|
|
onSubmit,
|
|
|
- formRef,
|
|
|
+ formRef,
|
|
|
...toRefs(state),
|
|
|
};
|
|
|
},
|