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
0e9fde1f
authored
Aug 14, 2024
by
黄兆琦
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 添加商品属性值时增加校验,如果是已存在的属性发出警告且不提交
parent
bcb4fc30
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
13 deletions
+12
-13
src/views/mall/product/spu/form/ProductPropertyAddForm.vue
+12
-13
No files found.
src/views/mall/product/spu/form/ProductPropertyAddForm.vue
View file @
0e9fde1f
...
...
@@ -85,19 +85,9 @@ defineExpose({ open }) // 提供 open 方法,用于打开弹窗
/** 提交表单 */
const
submitForm
=
async
()
=>
{
// 情况一:如果是已存在的属性,直接结束,不提交表单新增
for
(
const
option
of
attributeOptions
.
value
)
{
if
(
option
.
name
===
formData
.
value
.
name
)
{
// 添加到属性列表
attributeList
.
value
.
push
({
id
:
option
.
id
,
...
formData
.
value
,
values
:
[]
})
// 触发属性列表的加载
emit
(
'success'
,
option
.
id
,
option
.
id
)
// 关闭弹窗
dialogVisible
.
value
=
false
return
for
(
const
attrItem
of
attributeList
.
value
)
{
if
(
attrItem
.
name
===
formData
.
value
.
name
)
{
return
message
.
error
(
'该属性已存在,请勿重复添加'
)
}
}
...
...
@@ -117,6 +107,15 @@ const submitForm = async () => {
...
formData
.
value
,
values
:
[]
})
// 判断最终提交的属性名称是否是用户下拉选择的 自己手动输入的属性名称就不执行emit获取该属性名下属性值列表
for
(
const
element
of
attributeOptions
.
value
)
{
if
(
element
.
name
===
formData
.
value
.
name
)
{
emit
(
'success'
,
propertyId
,
element
.
id
)
message
.
success
(
t
(
'common.createSuccess'
))
dialogVisible
.
value
=
false
return
}
}
// 关闭弹窗
message
.
success
(
t
(
'common.createSuccess'
))
dialogVisible
.
value
=
false
...
...
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