jiangchengfeiyi-xiaochengxu/pages/store-home/ProductDetails/ProductDetails.vue

371 lines
8.9 KiB
Vue
Raw Normal View History

2024-10-18 14:49:08 +00:00
<template>
<view class="flex-col page">
2024-12-12 02:14:25 +00:00
<image
mode="aspectFit"
class="self-stretch image"
:src="goodObject.goodImg"
/>
<view class="flex-col self-stretch section_2">
<view class="self-start group">
<text class="font text_2"></text>
<text class="text">{{ goodObject.price }}</text>
</view>
2024-12-12 02:14:25 +00:00
<view class="flex-row justify-between items-center self-stretch group_2">
<text class="text_4">{{ goodObject.name }}</text>
<view class="flex-row items-center group_3">
<image
2024-12-12 02:14:25 +00:00
class="image_2"
src="https://ide.code.fun/api/image?token=675941ee797f850011f20adf&name=189b2a683cb0df7c43650ce019ff639d.png"
/>
2024-12-12 02:14:25 +00:00
<text class="font text_3 ml-5">中秋节限定</text>
</view>
</view>
2024-12-12 02:14:25 +00:00
<view class="self-stretch divider view"></view>
<view class="flex-col self-stretch group_4">
<text class="self-stretch font_2">
商品简介{{ goodObject.introDetail }}
<br/>
</text>
</view>
<view class="self-stretch divider view_2"></view>
<view class="flex-row items-center self-stretch group_5">
<text class="font text_5">商品标签:</text>
<view class="flex-col justify-start items-center text-wrapper ml-8" v-for="(item,index) in labelList" :key="index">
<text class="font_3 text_6">#{{ item }}</text>
</view>
</view>
</view>
2024-12-12 02:14:25 +00:00
<view class="flex-col self-stretch section_3">
<text class="self-start font_4 text_10">用户须知</text>
<text class="self-start font text_11">1.发货后不接受退货不接受7天无理由退货</text>
<text class="self-start font text_12">2.商品购买后无法自主退款需联系客服进行退款处理</text>
<text class="self-stretch font_2 text_13">
3.定制款商品购买后不接受退货退款包售后需要录制开箱视频并且开箱视频需要从拆包装开始
</text>
<text class="self-start font text_14">4.商品售罄后的款式也可以重新预定需等待并联系客服</text>
<text class="self-start font text_15">5.定制商品的具体发货日期根据制作团队制作情况而定</text>
<text class="self-start font text_16">6.只售后邮寄破损</text>
</view>
<image
class="self-start image_3"
:src="goodObject.detailImg"
/>
<view class="flex-row items-center self-stretch section_4">
<view class="flex-col items-center">
<image
class="image_4"
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FbTRAhIQz-kefu.png"
/>
<text class="text_19 mt-3">客服</text>
</view>
<view class="flex-row flex-1 ml-34">
<view class="flex-col justify-start items-center text-wrapper_4" @click="loadPop">
<text class="font_4 text_17">加入购物车</text>
</view>
<view class="flex-col justify-start items-center text-wrapper_5 ml-9" @click="jump_buy">
<text class="font_4 text_18">立即购买</text>
</view>
</view>
</view>
</view>
2024-11-09 15:05:41 +00:00
<uni-popup ref="popup" background-color="#fff">
<view>
<addProduct></addProduct>
</view>
</uni-popup>
2024-10-18 14:49:08 +00:00
</template>
2024-11-03 23:34:53 +00:00
<script setup >
import {onMounted, ref} from 'vue'
import { onLoad , onShow } from "@dcloudio/uni-app";
2024-11-09 15:05:41 +00:00
import { baseUrl } from '../../../api/request';
import emitter from '../../../utils/emitter'
import addProduct from '../../Shopping-cart/component/addProduct.vue';
const popup = ref(null) //弹窗对象
const goodObject = ref({}) //商品对象
// const checkedData = ref([{}]) //对齐批量购买
const idInfo = ref([]) //数量 + 商品id
const userInfo = ref({}) //用户信息
const labelList = ref([]) //标签
2024-11-03 23:34:53 +00:00
//转换上一页面传来的商品
onLoad((options) => {
goodObject.value = JSON.parse(options.info) //将string转为objec赋值给商品对象
idInfo.value = [{
goodId: goodObject.value.id,
quantity: 1 //暂时为1
}]
labelList.value = goodObject.value.label.split(";") //分割字符串,生成标签数组
2024-11-03 23:34:53 +00:00
labelList.value = labelList.value.filter((s)=>{ //使用filter将最后一个空值去掉
return s
})
})
onShow(()=>{
userInfo.value = wx.getStorageSync('userInfo') //获取用户信息
console.log('商品对象--->',goodObject.value)
2024-11-09 15:05:41 +00:00
})
onMounted(()=>{
emitter.on('close',()=>{ //将关闭弹窗方法传入组件
close()
})
getFonts()
2024-11-03 23:34:53 +00:00
})
2024-11-09 15:05:41 +00:00
const loadPop =()=>{
popup.value.open('bottom') //从底部弹出
emitter.emit('product',goodObject.value)
2024-11-09 15:05:41 +00:00
}
//关闭弹窗
const close =()=>{
popup.value.close()
}
2024-11-07 11:54:27 +00:00
//将商品对象发送到下一个页面
2024-11-03 23:34:53 +00:00
const jump_buy =()=> {
uni.navigateTo({
url: '../../../pages/order/product-waitpay/product-waitpay?cartInfo=' + JSON.stringify(idInfo.value)
2024-11-03 23:34:53 +00:00
})
}
//获取字体
const getFonts =()=>{
uni.loadFontFace({
family: 'FangZhengFonts',
source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/FangZhengFonts.TTF")`,
success:(res) =>{
console.log('success',res);
},
fail:(err) => {
console.log('err',err);
}
})
}
2024-10-18 14:49:08 +00:00
</script>
<style lang="scss" scoped>
2024-12-12 02:14:25 +00:00
.ml-5 {
margin-left: 9.38rpx;
}
.mt-3 {
margin-top: 5.63rpx;
}
.ml-9 {
margin-left: 16.88rpx;
}
.page {
background-image: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FQfLHXSAU-feiyigongfangbeijin.png');
2024-12-12 02:14:25 +00:00
background-size: 100% 100%;
background-repeat: no-repeat;
height: 100%;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
}
2024-12-12 02:14:25 +00:00
.image {
width: 100vw;
height: 72vw;
}
.section_2 {
margin-top: 20.63rpx;
padding-left: 18.75rpx;
padding-top: 19.2rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
.group {
2024-12-12 02:14:25 +00:00
margin-left: 14.16rpx;
line-height: 30.06rpx;
}
.font {
2024-12-12 02:14:25 +00:00
font-size: 26.25rpx;
font-family: 'FangZhengFonts';
2024-12-12 02:14:25 +00:00
line-height: 25.84rpx;
color: #323232;
}
.text_2 {
2024-12-12 02:14:25 +00:00
color: #ff0000;
line-height: 16.91rpx;
}
2024-12-12 02:14:25 +00:00
.text {
color: #ff0000;
font-size: 45rpx;
font-family: 'FangZhengFonts';
2024-12-12 02:14:25 +00:00
line-height: 30.06rpx;
}
.group_2 {
2024-12-12 02:14:25 +00:00
margin-top: 19.11rpx;
}
2024-12-12 02:14:25 +00:00
.text_4 {
color: #323232;
font-size: 33.75rpx;
font-family: 'FangZhengFonts';
2024-12-12 02:14:25 +00:00
line-height: 32.7rpx;
}
.group_3 {
2024-12-12 02:14:25 +00:00
margin-right: 19.63rpx;
}
.image_2 {
width: 33.75rpx;
height: 33.75rpx;
}
2024-12-12 02:14:25 +00:00
.text_3 {
font-size: 28.13rpx;
line-height: 27.24rpx;
}
.divider {
2024-12-12 02:14:25 +00:00
background-color: #cdcdcd;
height: 1.88rpx;
}
.view {
2024-12-12 02:14:25 +00:00
margin-right: 41.27rpx;
margin-top: 18.28rpx;
}
2024-12-12 02:14:25 +00:00
.group_4 {
padding: 10.56rpx 0 32.04rpx;
}
2024-12-12 02:14:25 +00:00
.font_2 {
font-size: 26.25rpx;
font-family: 'FangZhengFonts';
line-height: 31.88rpx;
color: #323232;
}
.view_2 {
2024-12-12 02:14:25 +00:00
margin-right: 41.27rpx;
}
2024-12-12 02:14:25 +00:00
.group_5 {
padding: 16.88rpx 0 20.63rpx;
}
2024-12-12 02:14:25 +00:00
.text_5 {
color: #000000;
2024-12-12 02:14:25 +00:00
line-height: 24.62rpx;
}
.text-wrapper {
2024-12-12 02:14:25 +00:00
padding: 7.26rpx 10rpx 10.31rpx 10rpx;
background-color: #fbdedf;
border-radius: 9.38rpx;
2024-12-12 02:14:25 +00:00
// width: 90rpx;
height: 39.38rpx;
}
2024-12-12 02:14:25 +00:00
.font_3 {
font-size: 22.5rpx;
font-family: 'FangZhengFonts';
2024-12-12 02:14:25 +00:00
line-height: 21.71rpx;
color: #323232;
}
2024-12-12 02:14:25 +00:00
.text_6 {
line-height: 21.81rpx;
}
.text-wrapper_2 {
2024-12-12 02:14:25 +00:00
padding: 7.35rpx 0 10.31rpx;
background-color: #fbdedf;
border-radius: 9.38rpx;
height: 39.38rpx;
}
2024-12-12 02:14:25 +00:00
.text_7 {
margin-left: 11.78rpx;
margin-right: 8.83rpx;
}
2024-12-12 02:14:25 +00:00
.text-wrapper_1 {
padding: 9.22rpx 0 9.15rpx;
background-color: #fbdedf;
border-radius: 9.38rpx;
width: 105rpx;
height: 39.38rpx;
}
.text_8 {
line-height: 21rpx;
}
.text-wrapper_3 {
2024-12-12 02:14:25 +00:00
padding: 9.13rpx 0 8.27rpx;
background-color: #fbdedf;
border-radius: 9.38rpx;
width: 105rpx;
height: 39.38rpx;
}
2024-12-12 02:14:25 +00:00
.text_9 {
line-height: 21.98rpx;
}
.section_3 {
margin-top: 35.63rpx;
padding: 18.51rpx 11.72rpx 43.29rpx;
background-color: #ffffff;
border-radius: 18.75rpx;
}
2024-12-12 02:14:25 +00:00
.font_4 {
font-size: 30rpx;
font-family: 'FangZhengFonts';
2024-12-12 02:14:25 +00:00
color: #ffffff;
}
.text_10 {
color: #000000;
2024-12-12 02:14:25 +00:00
line-height: 28.01rpx;
text-decoration: underline;
}
2024-12-12 02:14:25 +00:00
.text_11 {
margin-left: 10.14rpx;
margin-top: 21.23rpx;
line-height: 25.74rpx;
}
.text_12 {
margin-left: 9.53rpx;
margin-top: 19.46rpx;
line-height: 25.54rpx;
}
.text_13 {
2024-12-12 02:14:25 +00:00
margin: 16.44rpx 15.69rpx 0 9.62rpx;
}
.text_14 {
2024-12-12 02:14:25 +00:00
margin-left: 9.41rpx;
margin-top: 21.36rpx;
}
.text_15 {
2024-12-12 02:14:25 +00:00
margin-left: 9.62rpx;
margin-top: 24.9rpx;
line-height: 25.63rpx;
}
.text_16 {
2024-12-12 02:14:25 +00:00
margin-left: 10.14rpx;
margin-top: 23.01rpx;
}
.image_3 {
2024-12-12 02:14:25 +00:00
margin: 20.88rpx 0 120rpx;
width: 100vw;
height: 100vw;
}
.section_4 {
position: fixed;
left: 0;
right: 0;
bottom: 0;
margin-top: 31.88rpx;
padding: 13.13rpx 26.25rpx 16.88rpx;
background-color: #ffffff;
}
.image_4 {
width: 46.88rpx;
height: 46.88rpx;
}
2024-12-12 02:14:25 +00:00
.text_19 {
color: #9d2624;
font-size: 22.5rpx;
font-family: Open Sans;
line-height: 20.72rpx;
}
.text-wrapper_4 {
2024-12-12 02:14:25 +00:00
padding: 20.38rpx 0 22.63rpx;
flex: 1 1 283.13rpx;
2024-12-12 02:14:25 +00:00
background-color: #e79ea1;
border-radius: 93.75rpx;
height: 71.25rpx;
}
2024-12-12 02:14:25 +00:00
.text_17 {
line-height: 28.24rpx;
}
.text-wrapper_5 {
2024-12-12 02:14:25 +00:00
padding: 20.51rpx 0 22.97rpx;
flex: 1 1 283.13rpx;
2024-12-12 02:14:25 +00:00
background-color: #c35c5d;
border-radius: 93.75rpx;
height: 71.25rpx;
}
2024-12-12 02:14:25 +00:00
.text_18 {
line-height: 27.77rpx;
}
@import url(../../../common/css/global.css);
2024-10-18 14:49:08 +00:00
</style>