This commit is contained in:
parent
a9071886cc
commit
c85cb68f7a
|
@ -3,3 +3,8 @@ import request from '@/utils/request';
|
|||
export const shopListApi = (data) => {
|
||||
return request.get('/store/store/lists', data);
|
||||
}
|
||||
|
||||
// 店铺详情
|
||||
export const shopDetailApi = (data) => {
|
||||
return request.get('/store/store/detail', data);
|
||||
}
|
|
@ -164,12 +164,14 @@
|
|||
<script setup>
|
||||
import {
|
||||
onLoad,
|
||||
onShow
|
||||
onShow,
|
||||
onShareAppMessage,
|
||||
onShareTimeline
|
||||
} from "@dcloudio/uni-app"
|
||||
import {
|
||||
reactive,
|
||||
ref,
|
||||
onMounted
|
||||
onMounted,
|
||||
} from "vue"
|
||||
import {
|
||||
goodListApi,
|
||||
|
@ -190,9 +192,18 @@
|
|||
import {
|
||||
getCurrentInstance
|
||||
} from 'vue';
|
||||
import {
|
||||
shopDetailApi
|
||||
} from "@/api/multipleShop.js";
|
||||
|
||||
import useUserStore from "@/store/user";
|
||||
const userStore = useUserStore();
|
||||
const STORE_INFO = ref({
|
||||
name: '',
|
||||
id: '',
|
||||
detailed_address: '',
|
||||
image: ''
|
||||
});
|
||||
|
||||
const test = () => {
|
||||
uni.navigateTo({
|
||||
|
@ -200,18 +211,28 @@
|
|||
})
|
||||
}
|
||||
|
||||
// 分享给好友
|
||||
onShareAppMessage(() => {
|
||||
let shareInfo = {
|
||||
title: STORE_INFO.value.name,
|
||||
path: '/pages/index/index?id=' + STORE_INFO.value.id,
|
||||
imageUrl: STORE_INFO.value.image,
|
||||
success() {
|
||||
uni.$u.toast('分享成功');
|
||||
},
|
||||
fail() {
|
||||
uni.$u.toast('分享失败');
|
||||
}
|
||||
};
|
||||
return shareInfo;
|
||||
})
|
||||
|
||||
const navgo = (url) => {
|
||||
uni.navigateTo({
|
||||
url
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
// 用户选择的门店信息
|
||||
let STORE_INFO = uni.getStorageSync('STORE_INFO');
|
||||
if (STORE_INFO)
|
||||
STORE_INFO = JSON.parse(STORE_INFO)
|
||||
|
||||
/*商品列表滚动隐藏头部导航 */
|
||||
const instance = getCurrentInstance(); // 获取组件实例
|
||||
const targetHeight = ref(0)
|
||||
|
@ -261,7 +282,7 @@
|
|||
cart_num: cart_num,
|
||||
is_new: 0, // 是否直接购买0否1是
|
||||
// goods_id: id,
|
||||
store_id: where.value.store_id,
|
||||
store_id: STORE_INFO.value.id,
|
||||
product_id: product_id
|
||||
}).then(res => {
|
||||
getCartList();
|
||||
|
@ -289,10 +310,9 @@
|
|||
name: '',
|
||||
order: '',
|
||||
store_name: '',
|
||||
store_id: STORE_INFO.id || ''
|
||||
store_id: STORE_INFO.value.id || ''
|
||||
})
|
||||
|
||||
// console.log(JSON.parse(uni.getStorageSync('STORE_INFO')))
|
||||
const loading = ref(true);
|
||||
const goodList = ref([]);
|
||||
const getGoodList = (loadmore = false) => {
|
||||
|
@ -329,13 +349,12 @@
|
|||
const classMap = new Map();
|
||||
const getgoodClassList = (pid = 0, three = 1) => {
|
||||
let page_no = classMap.get(pid) || 1;
|
||||
// console.log(classMap.get(pid));
|
||||
goodClassListApi({
|
||||
pid: pid,
|
||||
page_no: page_no,
|
||||
page_size: 30,
|
||||
level: three,
|
||||
store_id: STORE_INFO.id || '' // 店铺id,用于获取店铺分类列表,如果为空则获取全部分类列表,否则获取店铺分类列表。
|
||||
store_id: STORE_INFO.value.id || '' // 店铺id,用于获取店铺分类列表,如果为空则获取全部分类列表,否则获取店铺分类列表。
|
||||
}).then(res => {
|
||||
if (pid == 0) { // 加载一级分类时设置全部分类
|
||||
if (!res.data?.lists?.length) return;
|
||||
|
@ -443,7 +462,7 @@
|
|||
productLogApi({
|
||||
product_id: item.product_id,
|
||||
cate_id: item.cate_id,
|
||||
store_id: STORE_INFO.id || ''
|
||||
store_id: STORE_INFO.value.id || ''
|
||||
});
|
||||
};
|
||||
const changeGood = (data) => { // 确定选择商品重量
|
||||
|
@ -491,8 +510,22 @@
|
|||
})
|
||||
}
|
||||
|
||||
onLoad((opt) => {
|
||||
if (opt.id) where.value.store_id = opt.id;
|
||||
onLoad(async (opt) => {
|
||||
// 店铺id
|
||||
if (opt.id) {
|
||||
where.value.store_id = opt.id;
|
||||
|
||||
const info = await shopDetailApi({
|
||||
store_id: opt.id
|
||||
});
|
||||
STORE_INFO.value = info.data;
|
||||
uni.setStorageSync('STORE_INFO', JSON.stringify(info.data));
|
||||
} else {
|
||||
const info = uni.getStorageSync('STORE_INFO');
|
||||
if (info)
|
||||
STORE_INFO.value = JSON.parse(info);
|
||||
}
|
||||
|
||||
getgoodClassList(0);
|
||||
getGoodList();
|
||||
})
|
||||
|
|
|
@ -132,7 +132,6 @@
|
|||
|
||||
const showWeixin = ref(true); //是否显示微信登录
|
||||
const isAgree = ref(false); //是否同意协议
|
||||
const tempUser = ref(null);
|
||||
|
||||
const weixinLogin = () => {
|
||||
if (!isAgree.value) return uni.$u.toast('请先阅读并同意协议');
|
||||
|
@ -149,7 +148,6 @@
|
|||
userStore.setToken(res.data.token);
|
||||
|
||||
if (!res.data.mobile) { //未绑定手机号
|
||||
// tempUser.value = res.data;
|
||||
return showBind.value = true;
|
||||
} else {
|
||||
userStore.setUserInfo(res.data);
|
||||
|
@ -161,13 +159,23 @@
|
|||
uni.reLaunch({
|
||||
url: "/multipleShop/verificationOrder/index"
|
||||
})
|
||||
} else { // 直接选择门店
|
||||
} else {
|
||||
// 授权成功 是否是通过分享进来的,如果是缓存有门店信息
|
||||
let storeInfo = uni.getStorageSync('STORE_INFO');
|
||||
if (storeInfo) {
|
||||
storeInfo = JSON.parse(storeInfo);
|
||||
// 直接选择门店
|
||||
uni.reLaunch({
|
||||
url: "/pages/index/index?id=" + storeInfo.id
|
||||
})
|
||||
} else {
|
||||
// 直接选择门店
|
||||
uni.reLaunch({
|
||||
url: "/multipleShop/index/index"
|
||||
})
|
||||
}
|
||||
}
|
||||
// navToIndex();
|
||||
}
|
||||
})
|
||||
},
|
||||
fail: (err) => {
|
||||
|
@ -177,7 +185,6 @@
|
|||
})
|
||||
}
|
||||
|
||||
|
||||
const showBind = ref(false); //是否显示绑定手机号弹窗
|
||||
const getPhoneNumber = (e) => {
|
||||
if (e.detail?.errMsg == 'getPhoneNumber:ok') {
|
||||
|
@ -192,11 +199,22 @@
|
|||
uni.reLaunch({
|
||||
url: "/multipleShop/verificationOrder/index"
|
||||
})
|
||||
} else { // 直接选择门店
|
||||
} else {
|
||||
// 授权成功 是否是通过分享进来的,如果是缓存有门店信息
|
||||
let storeInfo = uni.getStorageSync('STORE_INFO');
|
||||
if (storeInfo) {
|
||||
storeInfo = JSON.parse(storeInfo);
|
||||
// 直接选择门店
|
||||
uni.reLaunch({
|
||||
url: "/pages/index/index?id=" + storeInfo.id
|
||||
})
|
||||
} else {
|
||||
// 直接选择门店
|
||||
uni.reLaunch({
|
||||
url: "/multipleShop/index/index"
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
} else {
|
||||
console.log("用户拒绝授权");
|
||||
|
|
|
@ -308,10 +308,11 @@ const goPay = () => {
|
|||
|
||||
// 提交订单
|
||||
const submitOrder = () => {
|
||||
// if (!shopInfo.value.mer_id) {
|
||||
// uni.$u.toast('请先选择提货点');
|
||||
// return shopListShow.value = true;
|
||||
// }
|
||||
if (orderInfo.value.pay_price == 0) {
|
||||
pay_type.value = 3;
|
||||
return uni.$u.toast('当前支付金额为0,暂不能使用微信支付')
|
||||
}
|
||||
|
||||
if (!isAddress.value && orderInfo.value.shipping_type == 1) return toastAddressShow.value = true;
|
||||
createOrder();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue