Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing
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
marketing-web
marketing
Commits
7a3469a1
Commit
7a3469a1
authored
Jul 07, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: errorCode
parent
c3e71199
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
index.vue
src/components/dm-new-member-group/index.vue
+1
-1
table.vue
src/components/dm-new-member-group/table.vue
+1
-1
conversion.vue
src/views/ai/ai-data-report/conversion.vue
+1
-1
No files found.
src/components/dm-new-member-group/index.vue
View file @
7a3469a1
...
...
@@ -184,7 +184,7 @@ export default {
methods
:
{
getDefaultSelected
(
val
)
{
this
.
axios
.
get
(
`
${
this
.
baseUrl
}
/gic-member-tag-web/member-tag-group/queryGroupByIds?requestProject=
${
this
.
projectName
}
&memberTagGroupIds=
${
val
}
`
).
then
(
res
=>
{
if
(
res
.
data
.
errorCode
==
1
)
{
if
(
res
.
data
.
errorCode
==
0
)
{
this
.
defaultSelected
=
res
.
data
.
result
;
this
.
handleSelectionChange
(
this
.
defaultSelected
);
}
...
...
src/components/dm-new-member-group/table.vue
View file @
7a3469a1
...
...
@@ -172,7 +172,7 @@ export default {
this
.
axios
.
get
(
url
)
.
then
(
res
=>
{
if
(
res
.
data
.
errorCode
==
1
)
{
if
(
res
.
data
.
errorCode
==
0
)
{
res
.
data
.
result
.
result
.
forEach
(
item
=>
(
item
.
activeName
=
this
.
activeName
));
this
.
tableData
=
res
.
data
.
result
.
result
;
this
.
totalCount
=
res
.
data
.
result
.
totalCount
;
...
...
src/views/ai/ai-data-report/conversion.vue
View file @
7a3469a1
...
...
@@ -245,7 +245,7 @@ export default {
}
else
if
(
this
.
memberType
==
1
)
{
this
.
axios
.
get
(
`/gic-member-tag-web/member-tag-group/queryGroupByIds?requestProject=memberTag&memberTagGroupIds=
${
this
.
filterJson
}
`
).
then
(
res
=>
{
const
{
errorCode
,
result
}
=
res
.
data
;
if
(
errorCode
==
1
&&
Array
.
isArray
(
result
))
{
if
(
errorCode
==
0
&&
Array
.
isArray
(
result
))
{
this
.
comparative
.
options
=
[
{
label
:
'客户分组'
,
...
...
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