Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
memberTag-web
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
memberTag
memberTag-web
Commits
df7100f8
Commit
df7100f8
authored
Oct 20, 2022
by
huaying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 创建会员分组提示改弹框
parent
374c790c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
index.js
src/request/index.js
+2
-0
member-tag.vue
src/view/platformTag/member-tag.vue
+7
-2
No files found.
src/request/index.js
View file @
df7100f8
...
...
@@ -26,6 +26,8 @@ server.interceptors.response.use(
const
data
=
response
.
data
;
if
(
data
.
errorCode
==
0
)
{
return
data
;
}
else
if
(
data
.
errorCode
==
'200009'
)
{
return
data
;
}
else
{
// 根据不同的状态码来做一些操作 例如 token不合法 token过期 没有权限之类的'
Message
({
...
...
src/view/platformTag/member-tag.vue
View file @
df7100f8
...
...
@@ -519,13 +519,18 @@ export default {
addNewGroup
(
param
)
.
then
(
res
=>
{
if
(
res
.
errorCode
==
0
)
{
console
.
log
(
this
.
tagConfig
.
fixedType
);
//
console.log(this.tagConfig.fixedType);
const
type
=
this
.
tagConfig
.
fixedType
?
'fixed'
:
''
;
this
.
$router
.
push
({
path
:
'memberGroupList'
,
query
:
{
type
}
});
}
else
if
(
res
.
errorCode
==
'200009'
){
this
.
$alert
(
res
.
message
,
'提示'
,
{
confirmButtonText
:
'知道了'
,
type
:
'warning'
})
}
})
.
catch
(
err
=>
{
console
.
log
(
err
);
console
.
log
(
err
,
'oooo'
);
});
},
expendsGroupList
()
{
...
...
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