Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
soss
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hooloo
web
soss
Commits
f65252d5
Commit
f65252d5
authored
Jun 03, 2022
by
lixiaomin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改规格提示
parent
0e0cebea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
4 deletions
+18
-4
src/views/goods/category/index.vue
+9
-1
src/views/goods/spec/index.vue
+9
-3
No files found.
src/views/goods/category/index.vue
View file @
f65252d5
...
@@ -244,9 +244,13 @@ export default {
...
@@ -244,9 +244,13 @@ export default {
/** 提交按钮 */
/** 提交按钮 */
submitForm
()
{
submitForm
()
{
this
.
$refs
[
"form"
].
validate
((
valid
)
=>
{
this
.
$refs
[
"form"
].
validate
((
valid
)
=>
{
this
.
form
.
turn
=
this
.
form
.
turn
||
this
.
total
+
1
;
//
this.form.turn = this.form.turn || this.total + 1;
if
(
valid
)
{
if
(
valid
)
{
if
(
this
.
form
.
id
!=
null
)
{
if
(
this
.
form
.
id
!=
null
)
{
if
(
this
.
form
.
state
==
"1"
){
this
.
$message
.
error
(
"停用之后才可以修改"
);
return
;
}
updateClass
(
this
.
form
).
then
((
response
)
=>
{
updateClass
(
this
.
form
).
then
((
response
)
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
open
=
false
;
...
@@ -264,6 +268,10 @@ export default {
...
@@ -264,6 +268,10 @@ export default {
},
},
/** 删除按钮操作 */
/** 删除按钮操作 */
handleDelete
(
row
)
{
handleDelete
(
row
)
{
if
(
row
.
state
==
"1"
){
this
.
$message
.
error
(
"停用状态才能删除!"
);
return
;
}
const
ids
=
row
.
id
||
this
.
ids
;
const
ids
=
row
.
id
||
this
.
ids
;
this
.
$modal
this
.
$modal
.
confirm
(
'是否确认删除分类编码为'
+
row
.
code
+
'的数据项?'
)
.
confirm
(
'是否确认删除分类编码为'
+
row
.
code
+
'的数据项?'
)
...
...
src/views/goods/spec/index.vue
View file @
f65252d5
...
@@ -226,9 +226,7 @@ export default {
...
@@ -226,9 +226,7 @@ export default {
}
else
if
(
tag
==
'2'
){
}
else
if
(
tag
==
'2'
){
mess
=
"停用"
;
mess
=
"停用"
;
sta
=
"2"
;
sta
=
"2"
;
}
}
//let obj = JSON.parse(JSON.stringify(row));
//obj.state=sta;
this
.
$modal
this
.
$modal
.
confirm
(
'是否确认'
+
mess
+
'该数据项?'
)
.
confirm
(
'是否确认'
+
mess
+
'该数据项?'
)
.
then
(
function
()
{
.
then
(
function
()
{
...
@@ -267,6 +265,10 @@ export default {
...
@@ -267,6 +265,10 @@ export default {
}
}
this
.
form
.
specRules
=
specsSelectList
;
this
.
form
.
specRules
=
specsSelectList
;
if
(
this
.
form
.
id
!=
null
)
{
if
(
this
.
form
.
id
!=
null
)
{
if
(
this
.
form
.
state
==
1
){
this
.
$message
.
error
(
"停用之后才可以修改"
);
return
;
}
updateSpecs
(
this
.
form
).
then
((
response
)
=>
{
updateSpecs
(
this
.
form
).
then
((
response
)
=>
{
if
(
response
.
code
==
"200"
){
if
(
response
.
code
==
"200"
){
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
$modal
.
msgSuccess
(
"修改成功"
);
...
@@ -288,6 +290,10 @@ export default {
...
@@ -288,6 +290,10 @@ export default {
},
},
/** 删除按钮操作 */
/** 删除按钮操作 */
handleDelete
(
row
)
{
handleDelete
(
row
)
{
if
(
row
.
state
==
1
){
this
.
$message
.
error
(
"停用状态才能删除!"
);
return
;
}
const
ids
=
row
.
id
||
this
.
ids
;
const
ids
=
row
.
id
||
this
.
ids
;
this
.
$modal
this
.
$modal
.
confirm
(
'是否确认删除规格编码为'
+
row
.
code
+
'的数据项?'
)
.
confirm
(
'是否确认删除规格编码为'
+
row
.
code
+
'的数据项?'
)
...
...
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