Authored by 邱骏

Merge branch 'master' into hotfix/change-skupAllowType

... ... @@ -140,7 +140,7 @@ export default {
let temp = util.clone(m);
for (const i of Object.keys(temp)) {
if (['go.pool', 'go.detail', 'go.list', 'go.calendar', 'go.hotlist'].includes(temp[i].url.action)) {
if (['go.pool', 'go.detail', 'go.list', 'go.calendar', 'go.hotlist', 'go.identifyList'].includes(temp[i].url.action)) {
temp[i].url.action = 'go.ufo';
}
... ...
... ... @@ -65,6 +65,10 @@
{
value: 'go.bargainlist',
label: '砍价列表页'
},
{
value: 'go.identifyList',
label: '鉴定服务'
}
]
};
... ... @@ -104,6 +108,8 @@
this.url_ = 'https://m.yohobuy.com/?pagename=hotSale';
} else if (newVal === 'go.bargainlist') { // 砍价列表
this.url_ = 'https://m.yohobuy.com/';
} else if('go.identifyList') {
this.url_ = 'https://m.yohobuy.com/?pagename=identifyList';
}
this.updateStatus();
... ...