Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
saas-manage
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chehuidong
saas-manage
Commits
6c6c8b3c
Commit
6c6c8b3c
authored
Aug 26, 2025
by
qinjianhui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 添加排序
parent
c12a01a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
4 deletions
+21
-4
.eslintrc.js
+3
-0
src/views/operation/amazon/amazonAttributeGrouping.vue
+18
-4
No files found.
.eslintrc.js
View file @
6c6c8b3c
...
...
@@ -18,6 +18,9 @@ module.exports = {
'multiline-ternary'
:
'off'
,
'vue/multi-word-component-names'
:
'off'
,
'eol-last'
:
0
,
'node/no-callback-literal'
:
'off'
,
'no-trailing-spaces'
:
'off'
,
'no-unused-vars'
:
'off'
,
'vue/no-mutating-props'
:
'off'
}
}
src/views/operation/amazon/amazonAttributeGrouping.vue
View file @
6c6c8b3c
...
...
@@ -180,7 +180,9 @@
</div>
</div>
<div
class=
"attribute-footer"
>
<el-button
type=
"info"
size=
"small"
>
重置
</el-button>
<el-button
type=
"info"
size=
"small"
@
click=
"resetGrouping"
>
重置
</el-button>
<el-button
type=
"success"
size=
"small"
@
click=
"saveGrouping"
>
保存
</el-button>
...
...
@@ -209,6 +211,12 @@
v-model=
"addForm.nameEn"
placeholder=
"请输入英文名称"
></el-input>
</el-form-item>
<el-form-item
label=
"排序"
>
<el-input
v-model=
"addForm.sort"
clearable
placeholder=
"请输入排序"
></el-input>
</el-form-item>
<el-form-item
label=
"备注"
>
<el-input
v-model=
"addForm.remark"
...
...
@@ -274,7 +282,8 @@ export default {
addForm
:
{
cnName
:
''
,
enName
:
''
,
remark
:
''
remark
:
''
,
sort
:
''
},
addLoading
:
false
,
groupSearchForm
:
{
...
...
@@ -363,7 +372,8 @@ export default {
this
.
addForm
=
{
name
:
''
,
nameEn
:
''
,
remark
:
''
remark
:
''
,
sort
:
''
}
this
.
$nextTick
(()
=>
{
this
.
$refs
.
addFormRef
.
clearValidate
()
...
...
@@ -375,7 +385,8 @@ export default {
name
:
item
.
name
,
nameEn
:
item
.
nameEn
,
remark
:
item
.
remark
,
id
:
item
.
id
id
:
item
.
id
,
sort
:
item
.
sort
}
this
.
$nextTick
(()
=>
{
this
.
$refs
.
addFormRef
.
clearValidate
()
...
...
@@ -822,6 +833,9 @@ export default {
},
clearAllGroups
()
{
this
.
selectedGroups
=
[]
},
resetGrouping
()
{
this
.
dataGroupForm
=
{}
}
}
}
...
...
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