mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-11-13 22:23:48 +08:00
100 lines
3.0 KiB
Vue
100 lines
3.0 KiB
Vue
<!--
|
||
* 系统设置表单
|
||
*
|
||
* @Author: 1024创新实验室-主任:卓大
|
||
* @Date: 2022-06-08 21:50:41
|
||
* @Wechat: zhuda1024
|
||
* @Email: lab1024@163.com
|
||
* @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012
|
||
-->
|
||
<template>
|
||
<a-modal :visible="visible" :title="form.configId ? '编辑' : '添加'" ok-text="确认" cancel-text="取消" @ok="onSubmit" @cancel="onClose">
|
||
<a-form ref="formRef" :model="form" :rules="rules" :label-col="{ span: 5 }">
|
||
<a-form-item label="参数Key" name="configKey">
|
||
<a-input v-model:value="form.configKey" placeholder="请输入参数Key" />
|
||
</a-form-item>
|
||
<a-form-item label="参数名称" name="configName">
|
||
<a-input v-model:value="form.configName" placeholder="请输入参数名称" />
|
||
</a-form-item>
|
||
<a-form-item label="参数值" name="configValue">
|
||
<a-input v-model:value="form.configValue" placeholder="请输入参数值" />
|
||
</a-form-item>
|
||
<a-form-item label="备注" name="remark">
|
||
<textarea v-model="form.remark" style="width: 100%; height: 100px; outline: none"></textarea>
|
||
</a-form-item>
|
||
</a-form>
|
||
</a-modal>
|
||
</template>
|
||
<script setup>
|
||
import { message } from 'ant-design-vue';
|
||
import { reactive, ref } from 'vue';
|
||
import { configApi } from '/@/api/support/config/config-api';
|
||
import { smartSentry } from '/@/lib/smart-sentry';
|
||
import { SmartLoading } from '/@/components/framework/smart-loading';
|
||
|
||
// emit
|
||
const emit = defineEmits('reloadList');
|
||
|
||
// 组件
|
||
const formRef = ref();
|
||
|
||
const formDefault = {
|
||
configId: undefined,
|
||
configKey: '',
|
||
configName: '',
|
||
configValue: '',
|
||
remark: '',
|
||
};
|
||
let form = reactive({ ...formDefault });
|
||
const rules = {
|
||
configKey: [{ required: true, message: '请输入参数key' }],
|
||
configName: [{ required: true, message: '请输入参数名称' }],
|
||
configValue: [{ required: true, message: '请输入参数值' }],
|
||
};
|
||
// 是否展示
|
||
const visible = ref(false);
|
||
|
||
function showModal(rowData) {
|
||
Object.assign(form, formDefault);
|
||
if (rowData) {
|
||
Object.assign(form, rowData);
|
||
}
|
||
visible.value = true;
|
||
}
|
||
|
||
function onClose() {
|
||
Object.assign(form, formDefault);
|
||
visible.value = false;
|
||
}
|
||
|
||
function onSubmit() {
|
||
formRef.value
|
||
.validate()
|
||
.then(async () => {
|
||
SmartLoading.show();
|
||
try {
|
||
if (form.configId) {
|
||
await configApi.updateConfig(form);
|
||
} else {
|
||
await configApi.addConfig(form);
|
||
}
|
||
message.success(`${form.configId ? '修改' : '添加'}成功`);
|
||
emit('reloadList');
|
||
onClose();
|
||
} catch (error) {
|
||
smartSentry.captureError(error);
|
||
} finally {
|
||
SmartLoading.hide();
|
||
}
|
||
})
|
||
.catch((error) => {
|
||
console.log('error', error);
|
||
message.error('参数验证错误,请仔细填写表单数据!');
|
||
});
|
||
}
|
||
|
||
defineExpose({
|
||
showModal,
|
||
});
|
||
</script>
|