Commit 625724a3 by caoyanzhi

update: 智能营销-单次、触点的提交日志页面不显示发送时间

parent 79ffbf0c
......@@ -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();
......
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment