fix: fileconfig 初始化表單

This commit is contained in:
xingyu4j 2022-12-14 13:47:09 +08:00
parent afa3e6dc96
commit 8a06d7e359

View File

@ -197,7 +197,7 @@ const dialogVisible = ref(false) // 是否显示弹出层
const dialogTitle = ref('edit') //
const formRef = ref<FormInstance>() // Ref
const detailData = ref() // Ref
let form = ref<FileConfigApi.FileConfigVO>({
const form = ref<FileConfigApi.FileConfigVO>({
id: 0,
name: '',
storage: 0,
@ -230,6 +230,28 @@ const setDialogTile = (type: string) => {
const handleCreate = (formEl: FormInstance | undefined) => {
setDialogTile('create')
formEl?.resetFields()
form.value = {
id: 0,
name: '',
storage: 0,
master: false,
visible: false,
config: {
basePath: '',
host: '',
port: 0,
username: '',
password: '',
mode: '',
endpoint: '',
bucket: '',
accessKey: '',
accessSecret: '',
domain: ''
},
remark: '',
createTime: new Date()
}
}
//