This commit is contained in:
yuanteng0011 2025-03-26 11:46:32 +08:00
parent 5281ab7122
commit 9681c3a572
2 changed files with 21 additions and 4 deletions

View File

@ -28,7 +28,7 @@
@font-face {
font-family: 'FangZhengFonts';
src: url('https://www.carboner.cn:8888/api/file/download/FangZhengFonts.ttf') format('truetype');
src: url('https://carboner.cn:8888/api/file/download/FangZhengFonts.ttf') format('truetype');
}
view {

View File

@ -7,7 +7,7 @@
/> -->
<swiper class="swiper-box">
<swiper-item v-for="(item,index) in imgArr" :key="index" >
<image mode="aspectFill" class="self-stretch image" :src="publicPath + item" @tap="previewImage(index)"></image>
<image mode="aspectFill" class="self-stretch image" :src="item" @tap="previewImage(index)"></image>
</swiper-item>
</swiper>
<view class="flex-col self-stretch section_2">
@ -126,6 +126,7 @@ const closeHandler = () => {
}
onMounted(()=>{
limitedTimeOffer()
emitter.on('close', closeHandler)
})
@ -149,6 +150,9 @@ const getProduct = async (gid) =>{ //根据商品获取商品信息
richTextcontent.value = goodObject.value.richText
console.log(richTextcontent.value)
imgArr.value = res.data.data.goodImg.split(';') //
imgArr.value = imgArr.value.map((e)=>{
return publicPath + e
})
labelList.value = goodObject.value.label.split(';') //
labelList.value = labelList.value.filter((s)=>{ //使filter
return s
@ -183,13 +187,26 @@ const jump_buy = async ()=> {
//
const previewImage = (index) => {
console.log(index);
// console.log(url);
uni.previewImage({
current: index,
urls: imgArr.value
})
}
const limitedTimeOffer = async () => { //
const res = await uni.request({
url: baseUrl + '/global/query/coupon/price',
method: 'GET',
header: {
cookie
}
})
console.log('res--->',res.data);
if(res.data.code === 1) {
coupon.value = res.data.data
}
}