38 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

2024-02-19 10:44:33 +08:00
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
2024-03-16 13:50:57 +08:00
export function goShopDetail(item,uid,sale_type=1) {
2024-02-19 10:44:33 +08:00
return new Promise(resolve => {
if (item.product_type === 1) {
uni.navigateTo({
2024-03-16 13:50:57 +08:00
url: `/pages/activity/goods_seckill_details/index?id=${item.product_id}&time=${item.stop_time}&sale_type=${sale_type}`
2024-02-19 10:44:33 +08:00
})
} else if (item.product_type === 2) {
uni.navigateTo({
2024-03-16 13:50:57 +08:00
url: `/pages/activity/presell_details/index?id=${item.activity_id}&sale_type=${sale_type}`
2024-02-19 10:44:33 +08:00
})
} else if (item.product_type === 0 || item.product_type === 10) {
uni.navigateTo({
2024-03-16 13:50:57 +08:00
url: `/pages/goods_details/index?id=${item.product_id}&sale_type=${sale_type}`
2024-02-19 10:44:33 +08:00
})
}else if (item.product_type === 4) {
uni.navigateTo({
2024-03-16 13:50:57 +08:00
url: `/pages/activity/combination_details/index?id=${item.activity_id}&sale_type=${sale_type}`
2024-02-19 10:44:33 +08:00
})
}else if (item.product_type === 40) {
uni.navigateTo({
2024-03-16 13:50:57 +08:00
url: `/pages/activity/combination_status/index?id=${item.activity_id}&sale_type=${sale_type}`
2024-02-19 10:44:33 +08:00
})
}else {
resolve(item);
}
});
}