Authored by huzhiming

feat(second):添加详情页数据埋点 reviewed by tao.huang

... ... @@ -76,7 +76,6 @@ export default {
return {
filterModalVisible: false, // 筛选modal控件 显示/隐藏
currentTab: null,
queryOptions: {
second_type: null, // 种类排序:5:全新瑕疵 6:二手
sort: null // 价格升降序:p_asc or p_desc
... ... @@ -126,8 +125,7 @@ export default {
* @ version: v1.0.0
*/
handleSortChange({ type= null, sort = null }){
if (type===null || this.currentTab===type) return false;
this.currentTab = type; // tab锁,防止重复点击
if (type===null) return false;
let queryOptions = this.queryOptions
... ...