合并
This commit is contained in:
parent
5281ab7122
commit
9681c3a572
2
App.vue
2
App.vue
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'FangZhengFonts';
|
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 {
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
/> -->
|
/> -->
|
||||||
<swiper class="swiper-box">
|
<swiper class="swiper-box">
|
||||||
<swiper-item v-for="(item,index) in imgArr" :key="index" >
|
<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-item>
|
||||||
</swiper>
|
</swiper>
|
||||||
<view class="flex-col self-stretch section_2">
|
<view class="flex-col self-stretch section_2">
|
||||||
|
@ -126,6 +126,7 @@ const closeHandler = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(()=>{
|
onMounted(()=>{
|
||||||
|
limitedTimeOffer()
|
||||||
emitter.on('close', closeHandler)
|
emitter.on('close', closeHandler)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -149,6 +150,9 @@ const getProduct = async (gid) =>{ //根据商品获取商品信息
|
||||||
richTextcontent.value = goodObject.value.richText
|
richTextcontent.value = goodObject.value.richText
|
||||||
console.log(richTextcontent.value)
|
console.log(richTextcontent.value)
|
||||||
imgArr.value = res.data.data.goodImg.split(';') //将后端传来的图片字符串转为图片数组
|
imgArr.value = res.data.data.goodImg.split(';') //将后端传来的图片字符串转为图片数组
|
||||||
|
imgArr.value = imgArr.value.map((e)=>{
|
||||||
|
return publicPath + e
|
||||||
|
})
|
||||||
labelList.value = goodObject.value.label.split(';') //分割字符串,生成标签数组
|
labelList.value = goodObject.value.label.split(';') //分割字符串,生成标签数组
|
||||||
labelList.value = labelList.value.filter((s)=>{ //使用filter将最后一个空值去掉
|
labelList.value = labelList.value.filter((s)=>{ //使用filter将最后一个空值去掉
|
||||||
return s
|
return s
|
||||||
|
@ -183,13 +187,26 @@ const jump_buy = async ()=> {
|
||||||
|
|
||||||
//点击查看图片详情方法
|
//点击查看图片详情方法
|
||||||
const previewImage = (index) => {
|
const previewImage = (index) => {
|
||||||
console.log(index);
|
// console.log(url);
|
||||||
uni.previewImage({
|
uni.previewImage({
|
||||||
current: index,
|
current: index,
|
||||||
urls: imgArr.value
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user