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
625724a3
Commit
625724a3
authored
Mar 03, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 智能营销-单次、触点的提交日志页面不显示发送时间
parent
79ffbf0c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
current-list.vue
src/views/ecm/current-list.vue
+4
-2
list.vue
src/views/ecm/list.vue
+1
-1
No files found.
src/views/ecm/current-list.vue
View file @
625724a3
...
...
@@ -58,7 +58,7 @@
<span
v-else
>
{{
scope
.
row
[
v
.
prop
]
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"发送时间"
align=
"left"
width=
"120"
prop=
"createTime"
>
<el-table-column
label=
"发送时间"
align=
"left"
width=
"120"
prop=
"createTime"
v-if=
"effectType != 0 && effectType != 2"
>
<
template
slot-scope=
"scope"
>
<p
class=
"cell-time"
>
{{
formatDateTimeByType
(
scope
.
row
.
createTime
,
'yyyy-MM-dd-HH-mm-ss'
,
true
).
y
}}
<br
/>
...
...
@@ -194,7 +194,8 @@ export default {
projectName
:
'marketing'
,
// 当前项目名
dialogVisible
:
false
,
excelUrl
:
''
,
// 下载数据的地址
params
:
{}
// 传递的参数
params
:
{},
// 传递的参数
effectType
:
0
};
},
mounted
()
{
...
...
@@ -206,6 +207,7 @@ export default {
}
},
async
created
()
{
this
.
effectType
=
this
.
$route
.
query
.
effectType
;
await
this
.
ecmCurrentSendInfos
();
this
.
$nextTick
(
_
=>
{
this
.
$refs
.
multipleTable
.
toggleAllSelection
();
...
...
src/views/ecm/list.vue
View file @
625724a3
...
...
@@ -390,7 +390,7 @@ export default {
// 记录
toRecord
(
row
)
{
const
prefix
=
row
.
effectType
==
1
?
'batchlist'
:
row
.
effectType
==
2
?
'oncelist'
:
'currentlist'
;
this
.
$router
.
push
({
path
:
`/ecm/
${
prefix
}
/
${
row
.
ecmPlanId
}
`
,
query
:
{
name
:
row
.
ecmPlanName
}
});
this
.
$router
.
push
({
path
:
`/ecm/
${
prefix
}
/
${
row
.
ecmPlanId
}
`
,
query
:
{
name
:
row
.
ecmPlanName
,
effectType
:
row
.
effectType
}
});
},
// 触达效果
toTouch
(
row
)
{
...
...
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