|
@@ -637,13 +637,13 @@ function doAjaxGetHistoryList() {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
-function goToDetail(item) {
|
|
|
|
|
|
+function goToDetail(item, isMore = false) {
|
|
savePageState()
|
|
savePageState()
|
|
const query = {}
|
|
const query = {}
|
|
if (item.splitKeys) {
|
|
if (item.splitKeys) {
|
|
query.keywords = item.splitKeys.join(' ')
|
|
query.keywords = item.splitKeys.join(' ')
|
|
}
|
|
}
|
|
- trickClick('点击跳转详情页', {
|
|
|
|
|
|
+ trickClick(isMore ? '查看更多列表点击跳转详情页' : '点击跳转详情页', {
|
|
title: item.title,
|
|
title: item.title,
|
|
id: item.id
|
|
id: item.id
|
|
})
|
|
})
|
|
@@ -712,7 +712,7 @@ function doCellAction(item, type, isMore = false) {
|
|
}).then((res) => {
|
|
}).then((res) => {
|
|
// that.$toast('感谢')
|
|
// that.$toast('感谢')
|
|
})
|
|
})
|
|
- trickClick(isMore ? 'cell-action-点赞' : 'cell-action-list-点赞', {
|
|
|
|
|
|
+ trickClick(isMore ? 'cell-action-list-点赞' : 'cell-action-点赞', {
|
|
message: item.message,
|
|
message: item.message,
|
|
id: item.id
|
|
id: item.id
|
|
})
|
|
})
|
|
@@ -1293,7 +1293,7 @@ init()
|
|
:keys="cell.splitKeys"
|
|
:keys="cell.splitKeys"
|
|
:left-top-badge-text="cell.leftTopBadgeText"
|
|
:left-top-badge-text="cell.leftTopBadgeText"
|
|
:tags="cell.tagList"
|
|
:tags="cell.tagList"
|
|
- @click="goToDetail(cell)"
|
|
|
|
|
|
+ @click="goToDetail(cell, 'more')"
|
|
>
|
|
>
|
|
<template slot="icon">
|
|
<template slot="icon">
|
|
<div @click.stop="doCollection(cell, index)">
|
|
<div @click.stop="doCollection(cell, index)">
|