Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
7540a4e2
authored
Mar 09, 2023
by
YunaiV
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1. 修复化配置管理的 formRef 有问题的逻辑
parent
6f7a785c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
38 deletions
+14
-38
src/views/infra/config/form.vue
+14
-38
No files found.
src/views/infra/config/form.vue
View file @
7540a4e2
<
template
>
<Dialog
:title=
"modelTitle"
v-model=
"modelVisible"
>
<el-form
ref=
"
ruleF
ormRef"
ref=
"
f
ormRef"
:model=
"formData"
:rules=
"formRules"
label-width=
"80px"
...
...
@@ -33,24 +33,20 @@
<template
#
footer
>
<div
class=
"dialog-footer"
>
<el-button
@
click=
"submitForm"
type=
"primary"
:disabled=
"formLoading"
>
确 定
</el-button>
<el-button
@
click=
"
colseForm(ruleFormRef)
"
>
取 消
</el-button>
<el-button
@
click=
"
modelVisible = false
"
>
取 消
</el-button>
</div>
</
template
>
</Dialog>
</template>
<
script
setup
lang=
"ts"
>
import
*
as
ConfigApi
from
'@/api/infra/config'
// import type { FormExpose } from '@/components/Form'
import
type
{
FormInstance
}
from
'element-plus'
const
{
t
}
=
useI18n
()
// 国际化
const
message
=
useMessage
()
// 消息弹窗
// const { proxy } = getCurrentInstance()
const
modelVisible
=
ref
(
false
)
// 弹窗的是否展示
const
modelTitle
=
ref
(
''
)
// 弹窗的标题
const
formLoading
=
ref
(
false
)
// 表单的 Loading 加载:1)修改时的数据加载;2)提交的按钮禁用
const
formType
=
ref
(
''
)
// 表单的类型:create - 新增;update - 修改
// let formRef = ref() // 表单的 Ref
const
formData
=
reactive
({
id
:
undefined
,
category
:
''
,
...
...
@@ -67,9 +63,7 @@ const formRules = reactive({
value
:
[{
required
:
true
,
message
:
'参数键值不能为空'
,
trigger
:
'blur'
}],
visible
:
[{
required
:
true
,
message
:
'是否可见不能为空'
,
trigger
:
'blur'
}]
})
let
ruleFormRef
=
ref
<
FormInstance
>
()
// 表单 Ref
const
{
proxy
}
=
getCurrentInstance
()
as
any
const
formRef
=
ref
()
// 表单 Ref
/** 打开弹窗 */
const
openModal
=
async
(
type
:
string
,
id
?:
number
)
=>
{
...
...
@@ -94,15 +88,9 @@ defineExpose({ openModal }) // 提供 openModal 方法,用于打开弹窗
/** 提交表单 */
const
emit
=
defineEmits
([
'success'
])
// 定义 success 事件,用于操作成功后的回调
const
submitForm
=
async
()
=>
{
if
(
true
)
{
formLoading
.
value
=
true
console
.
log
(
'1111'
)
return
}
const
formRef
=
proxy
.
$refs
[
'formRef'
]
// 校验表单
if
(
!
formRef
)
return
const
valid
=
await
formRef
.
validate
()
const
valid
=
await
formRef
.
val
ue
.
val
idate
()
if
(
!
valid
)
return
// 提交请求
formLoading
.
value
=
true
...
...
@@ -124,27 +112,15 @@ const submitForm = async () => {
/** 重置表单 */
const
resetForm
=
()
=>
{
formData
.
id
=
undefined
formData
.
category
=
''
formData
.
name
=
''
formData
.
key
=
''
formData
.
value
=
''
formData
.
visible
=
true
formData
.
remark
=
''
// 重置表单
console
.
log
(
ruleFormRef
)
console
.
log
(
ruleFormRef
.
value
)
// proxy.$refs['ruleFormRef'].resetFields()
// setTimeout(() => {
// console.log(ruleFormRef.value, 'formRef.value')
// formRef.value.resetFields() // TODO 芋艿:为什么拿不到 formRef 呢? 表单还没加载出来
// ruleFormRef.value?.resetFields()
// }, 100)
}
/** 取消添加 */
const
colseForm
=
(
formEl
:
FormInstance
|
undefined
)
=>
{
if
(
!
formEl
)
return
formEl
.
resetFields
()
modelVisible
.
value
=
false
Object
.
assign
(
formData
,
{
id
:
undefined
,
category
:
''
,
name
:
''
,
key
:
''
,
value
:
''
,
visible
:
true
,
remark
:
''
})
formRef
.
value
?.
resetFields
()
}
</
script
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment