| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import {
- preOrderApi
- } from '@/api/order.js';
- import util from 'utils/util'
- /**
- * 去商品详情
- */
- export function goShopDetail(item, uid) {
- return new Promise(resolve => {
- if (item.activityH5 && item.activityH5.type === "1") {
- uni.navigateTo({
- url: `/pages/activity/goods_seckill_details/index?id=${item.activityH5.id}`
- })
- } else if (item.activityH5 && item.activityH5.type === "2") {
- uni.navigateTo({
- url: `/pages/activity/goods_bargain_details/index?id=${item.activityH5.id}&startBargainUid=${uid}`
- })
- } else if (item.activityH5 && item.activityH5.type === "3") {
- uni.navigateTo({
- url: `/pages/activity/goods_combination_details/index?id=${item.activityH5.id}`
- })
- } else {
- resolve(item);
- }
- });
- }
- /**
- * 活动商品、普通商品、购物车、再次购买预下单
- */
- export function getPreOrder(preOrderType, orderDetails) {
- return new Promise((resolve, reject) => {
- preOrderApi({
- "preOrderType": preOrderType,
- "orderDetails": orderDetails
- }).then(res => {
- uni.navigateTo({
- url: '/pages/users/order_confirm/index?preOrderNo=' + res.data.preOrderNo
- });
- }).catch(err => {
- return util.Tips({
- title: err
- });
- })
- });
- }
|