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
962ed5a6
Commit
962ed5a6
authored
Apr 07, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 兼容接口异常数据
parent
f427480c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
ai-data-detail.vue
src/views/ai/ai-data-detail.vue
+1
-1
activity-info.vue
src/views/ai/ai-data-report/activity-info.vue
+1
-1
logs-runed.vue
src/views/ai/logs-runed.vue
+1
-1
logs-unrun.vue
src/views/ai/logs-unrun.vue
+1
-1
manage.vue
src/views/ai/manage.vue
+1
-1
No files found.
src/views/ai/ai-data-detail.vue
View file @
962ed5a6
...
...
@@ -71,7 +71,7 @@ export default {
this
.
loading
=
true
;
getCustomDetail
(
this
.
search
)
.
then
(
res
=>
{
const
{
result
,
totalCount
}
=
res
.
result
;
const
{
result
,
totalCount
}
=
res
.
result
||
{}
;
this
.
total
=
totalCount
;
this
.
tableData
=
result
;
})
...
...
src/views/ai/ai-data-report/activity-info.vue
View file @
962ed5a6
...
...
@@ -71,7 +71,7 @@ export default {
const
activityId
=
this
.
$route
.
params
.
id
;
const
planId
=
this
.
$route
.
query
.
planId
;
getActivityInfo
({
activityId
,
planId
}).
then
(
res
=>
{
this
.
activityInfo
=
res
.
result
;
this
.
activityInfo
=
res
.
result
||
{}
;
this
.
$emit
(
'flag'
,
{
memberType
:
this
.
activityInfo
.
memberType
,
analyseFlag
:
this
.
activityInfo
.
analyseFlag
,
//1开0关 开启活动分析开关
...
...
src/views/ai/logs-runed.vue
View file @
962ed5a6
...
...
@@ -83,7 +83,7 @@ export default {
this
.
loading
=
true
;
getLogs
(
params
)
.
then
(
res
=>
{
const
{
result
,
totalCount
}
=
res
.
result
;
const
{
result
,
totalCount
}
=
res
.
result
||
{}
;
this
.
tableData
=
result
;
this
.
total
=
totalCount
;
})
...
...
src/views/ai/logs-unrun.vue
View file @
962ed5a6
...
...
@@ -66,7 +66,7 @@ export default {
this
.
loading
=
true
;
getLogs
(
params
)
.
then
(
res
=>
{
const
{
result
,
totalCount
}
=
res
.
result
;
const
{
result
,
totalCount
}
=
res
.
result
||
{}
;
this
.
tableData
=
result
;
this
.
total
=
totalCount
;
})
...
...
src/views/ai/manage.vue
View file @
962ed5a6
...
...
@@ -105,7 +105,7 @@ export default {
methods
:
{
getTempList
()
{
tempPageStatistics
(
this
.
search
).
then
(
res
=>
{
const
{
list
,
pageNum
,
total
}
=
res
.
result
;
const
{
list
,
pageNum
,
total
}
=
res
.
result
||
{}
;
this
.
tempList
=
list
;
this
.
search
.
pageNum
=
pageNum
;
this
.
total
=
total
;
...
...
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