Authored by bevishuang

增加跳转详情

... ... @@ -6,7 +6,8 @@ import Taro from '@tarojs/taro'
const ACTION_TYPE = {
h5: 'go.h5',
ufo: 'go.ufo'
ufo: 'go.ufo',
productDetail: 'go.ufoProductDetail',
}
const OPEN_BY_TYPE = {
... ... @@ -56,6 +57,10 @@ export default {
this.handleUFOJumpPage(yoho);
break;
}
case ACTION_TYPE.productDetail: {
this.handleUFOJumpPage(yoho);
break;
}
}
},
handleUFOJumpPage(yoho) {
... ...