Merge branch 'dev' into 'master'

修复【uniapp】:商品详情页面,如果未登录状态下,也可以进行分享

See merge request jianweie/coreshoppro!105
This commit is contained in:
bob bob
2024-12-08 09:11:45 +00:00

View File

@@ -26,7 +26,8 @@
</view>
<!-- 积分兑换价格 -->
<Point v-if="!props.isActivityGoods" :flex="true" :data="props.goodsDetailData?.product" fontSize="24rpx"></Point>
<Point v-if="!props.isActivityGoods" :flex="true" :data="props.goodsDetailData?.product" fontSize="24rpx">
</Point>
<view class="name-box" v-if="props.goodsDetailData?.name || props.goodsDetailData?.brief">
<view class="name">{{ props.goodsDetailData?.name }}</view>
@@ -124,9 +125,7 @@
/** 分享弹框显示与否 */
const handleToggleShowShare = () => {
_useLoginStore.checkLogin(() => {
state.showShare = !state.showShare;
});
}
</script>