Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
quantum-blocks
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ui
quantum-blocks
Commits
8bdd66ab
Commit
8bdd66ab
authored
May 28, 2022
by
xuguangxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 升级组件库
parent
523630bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
index.vue
...ponent/DynamicForm/component/BatchGoodsSelector/index.vue
+3
-1
index.vue
...t/DynamicForm/component/DiscountGoodsSelectorV2/index.vue
+3
-1
No files found.
app/web/page/editor/component/DynamicForm/component/BatchGoodsSelector/index.vue
View file @
8bdd66ab
...
...
@@ -105,7 +105,9 @@ export default {
// }, 1000)
},
changeIds
()
{
const
skus
=
this
.
data
.
ids
?
this
.
data
.
ids
.
split
(
'
,
'
)
:
[];
const
ids
=
this
.
data
&&
this
.
data
.
ids
?
this
.
data
.
ids
.
trim
()
:
''
;
this
.
data
.
ids
=
ids
;
const
skus
=
ids
?
ids
.
split
(
'
,
'
)
:
[];
if
(
skus
.
length
)
{
if
(
skus
.
length
>
15
)
{
this
.
$toast
(
'
最多填入15个商品
'
);
...
...
app/web/page/editor/component/DynamicForm/component/DiscountGoodsSelectorV2/index.vue
View file @
8bdd66ab
...
...
@@ -121,7 +121,9 @@ export default {
// }, 1000)
},
changeIds
()
{
const
skus
=
this
.
data
.
ids
?
this
.
data
.
ids
.
split
(
'
,
'
)
:
[];
const
ids
=
this
.
data
&&
this
.
data
.
ids
?
this
.
data
.
ids
.
trim
()
:
''
;
this
.
data
.
ids
=
ids
;
const
skus
=
ids
?
ids
.
split
(
'
,
'
)
:
[];
if
(
skus
.
length
)
{
if
(
skus
.
length
>
15
)
{
this
.
$toast
(
'
最多填入15个商品
'
);
...
...
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