|
@@ -68,10 +68,10 @@
|
|
|
</view>
|
|
|
<!-- 服务 -->
|
|
|
<view class="serve" style="margin-top: 20rpx;">
|
|
|
- <view class="top u-flex u-row-between">
|
|
|
+ <view class="top u-flex u-row-between" @click="sele">
|
|
|
<view class="u-flex">
|
|
|
<view class="change">{{i18n.Sele}}</view>
|
|
|
- <view class="" style="margin-left: 20rpx;">{{i18n.Netcontent}}</view>
|
|
|
+ <view class="" style="margin-left: 20rpx;">{{selectArr.length>0?selectArr.join(','):i18n.Sele}}</view>
|
|
|
</view>
|
|
|
<view class="">
|
|
|
<u-icon name="arrow-right" size='16'></u-icon>
|
|
@@ -96,15 +96,21 @@
|
|
|
<u-icon name="arrow-right" size='16'></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="uesr u-flex u-row-between" style="margin-top: 36rpx;">
|
|
|
- <view class="u-flex">
|
|
|
- <image src="../static/images/logo.png" style="width: 52rpx;height: 52rpx;" mode=""></image>
|
|
|
- <text class="name">有**钱</text>
|
|
|
+ <view class="" v-for="(item,idx) in commentlist" :key="idx">
|
|
|
+ <view class="uesr u-flex u-row-between" style="margin-top: 36rpx;">
|
|
|
+ <view class="u-flex">
|
|
|
+ <image src="../static/images/logo.png" style="width: 52rpx;height: 52rpx;" mode="">
|
|
|
+ </image>
|
|
|
+ <text class="name">{{item.member.nickname}}</text>
|
|
|
+ </view>
|
|
|
+ <text class="strip">{{item.created_at}}</text>
|
|
|
</view>
|
|
|
- <text class="strip">2023.11.23</text>
|
|
|
- </view>
|
|
|
- <view class="content">
|
|
|
- 回购了不知道第几次了,家里猫还没吃腻呢,
|
|
|
+ <view class="content">
|
|
|
+ {{item.content}}
|
|
|
+ </view>
|
|
|
+ <view class="sku" style="margin-top: 16rpx;">{{
|
|
|
+ item.sku_item.item
|
|
|
+ }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 店铺 -->
|
|
@@ -113,10 +119,13 @@
|
|
|
<image :src='goodinfo.merchant.image' style="width: 112rpx;height: 112rpx;" mode=""></image>
|
|
|
<view class="" style="margin-left: 20rpx;">
|
|
|
<view class="title">{{goodinfo.merchant.merchant_name}}</view>
|
|
|
+ <uni-rate network allow-half :readonly="true" color="red" :size='8' :value="5"
|
|
|
+ v-model="rate" />
|
|
|
<view class="" style='margin-top:20rpx'></view>
|
|
|
<view class="u-flex" style='margin-top:20rpx'>
|
|
|
<text class='num'>{{i18n.Salesvolume}} 2384w+</text>
|
|
|
<view class="line"></view>
|
|
|
+ <!-- 评价总数 -->
|
|
|
<text class='num'>{{i18n.Salesvolume}} 2384w+</text>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -133,8 +142,7 @@
|
|
|
<swiper-item v-for="(parent,index) in swiptlist" :key="index">
|
|
|
<view class="u-flex swiper-item u-row-between">
|
|
|
<view class="" v-for="(child,idx) in parent" @click="toinfo(child.id)" :key="idx">
|
|
|
- <image :src="child.image" style="width: 214rpx;height: 214rpx;"
|
|
|
- mode="">
|
|
|
+ <image :src="child.image" style="width: 214rpx;height: 214rpx;" mode="">
|
|
|
</image>
|
|
|
<view class="u-line-1"
|
|
|
style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;"
|
|
@@ -159,7 +167,7 @@
|
|
|
<view class="" style="margin-top: 12rpx;">
|
|
|
<span
|
|
|
style="color:rgba(204, 51, 0, 1) ;font-size: 26rpx;">¥{{child.price}}</span>
|
|
|
- </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</swiper-item>
|
|
@@ -169,14 +177,15 @@
|
|
|
<view class="recommend">
|
|
|
<view class="title">{{i18n.Productdetails}}</view>
|
|
|
<view class="" style="margin-top: 32rpx;margin-bottom:28rpx">{{i18n.Specification}}</view>
|
|
|
- <view class="specification" >
|
|
|
- <view class="item u-flex" style='margin-bottom:28rpx' v-for="(item,idx) in goodinfo.parameter" :key="idx">
|
|
|
+ <view class="specification">
|
|
|
+ <view class="item u-flex" style='margin-bottom:28rpx' v-for="(item,idx) in goodinfo.parameter"
|
|
|
+ :key="idx">
|
|
|
<view style='width:150rpx;'>{{item.name}}</view>
|
|
|
<text style='margin-left:58rpx'>{{item.value}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="">
|
|
|
- <image :src="goodinfo.image" style="width: 710rpx;height: 580rpx;" mode=""></image>
|
|
|
+ <image :src="goodinfo.image" style="width: 100%;height: 580rpx;" mode=""></image>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
@@ -188,18 +197,20 @@
|
|
|
</image>
|
|
|
<view class="ke">{{i18n.Customer}}</view>
|
|
|
</view>
|
|
|
- <view class="u-flex" style="justify-content: center;flex-direction: column;" @click="join">
|
|
|
+ <view class="u-flex" style="justify-content: center;flex-direction: column;" @click="shopping">
|
|
|
<image src="../static/cart1.png" style='width:40rpx;height:40rpx' mode=""></image>
|
|
|
<view class="ke">{{i18n.Shopping}}</view>
|
|
|
</view>
|
|
|
- <view class="u-flex" style="justify-content: center;flex-direction: column;">
|
|
|
- <image src="../static/images/index/attention.png" style='width:40rpx;height:40rpx' mode="">
|
|
|
+ <view class="u-flex" style="justify-content: center;flex-direction: column;" @click="">
|
|
|
+ <!-- <image src="../static/images/index/attention.png" style='width:40rpx;height:40rpx' mode=""> -->
|
|
|
+ <image src="../static/images/index/bottom1.png" style='width:40rpx;height:40rpx' mode="">
|
|
|
</image>
|
|
|
- <view class="ke">{{i18n.follow}}</view>
|
|
|
+ <!-- <view class="ke">{{i18n.follow}}</view> -->
|
|
|
+ <view class="ke" style="color: rgba(248, 50, 36, 1);">已关注</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="join" @click="join">加入购物车</view>
|
|
|
- <view class="pin" @click="order">立即拼团</view>
|
|
|
+ <view class="join" @click="join(0)">加入购物车</view>
|
|
|
+ <view class="pin" @click="join(1)">立即拼团</view>
|
|
|
<!-- <view class="tongzhi" @click="inform">
|
|
|
{{i18n.notification}}
|
|
|
</view> -->
|
|
@@ -210,34 +221,33 @@
|
|
|
<u-popup :round="10" :show="show">
|
|
|
<view style="padding:48rpx 28rpx;box-sizing: border-box;position: relative;">
|
|
|
<view class="u-flex">
|
|
|
- <image src="../static/images/logo.png" style="width: 192rpx;height: 192rpx;" mode=""></image>
|
|
|
+ <image :src="goodinfo.image" style="width: 192rpx;height: 192rpx;" mode=""></image>
|
|
|
<view class="" style="margin-left: 20rpx;">
|
|
|
<view class="">
|
|
|
<text class="read">¥</text>
|
|
|
- <text class="read" style="font-size: 40rpx;">168</text>
|
|
|
- <text class="read">.00</text>
|
|
|
+ <text class="read" style="font-size: 40rpx;"
|
|
|
+ v-if="goodinfo.is_discount==0">{{(Number(sku_info.discount_price)*Number(value)) || (Number(goodinfo.discount_price) * Number(value))}}</text>
|
|
|
+ <!-- <text class="read" v-if="goodinfo.is_discount==0">{{(goodinfo.discount_price * value).slice(-3)}}</text> -->
|
|
|
+ <text class="read" style="font-size: 40rpx;"
|
|
|
+ v-if="goodinfo.is_discount==1">{{(Number(sku_info.price)*Number(value))|| (Number(goodinfo.price) * Number(value))}}</text>
|
|
|
+ <!-- <text class="read" v-if="goodinfo.is_discount==1">{{(goodinfo.price * value).slice(-3)}}</text> -->
|
|
|
+ <!-- <text class="read" style="font-size: 40rpx;" >{{(Number(goodinfo.price) * Number(value)).toString()}}</text> -->
|
|
|
</view>
|
|
|
- <text class="guige">已选:鸡肉;2kg【单包装】</text>
|
|
|
+ <text class="guige">已选:{{selectArr.join(',')||i18n.selection}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="" style="position: absolute;top: 48rpx;right: 28rpx;">
|
|
|
+ <view class="" style="position: absolute;top: 48rpx;right: 28rpx;" @click="show=false">
|
|
|
<u-icon name="close" @click="show==false" color="#000" size="28"></u-icon>
|
|
|
</view>
|
|
|
- <view class="title1" style="margin-top: 40rpx;margin-bottom: 32rpx;">
|
|
|
- 食品口味
|
|
|
- </view>
|
|
|
- <view class="u-flex" style="column-gap: 18rpx;flex-wrap: wrap;">
|
|
|
- <view class="" :class="idx==actab?'acttab':'tabs'" v-for="(item,idx) in 4" :key="idx"
|
|
|
- @click="actabs(idx)">
|
|
|
- 鸡肉
|
|
|
+ <view class="" v-for="(item,index) in goodinfo.sku">
|
|
|
+ <view class="title1" style="margin-top: 40rpx;margin-bottom: 32rpx;">
|
|
|
+ {{item.name}}
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <view class="title1" style="margin-top: 40rpx;margin-bottom: 32rpx;">
|
|
|
- 净含量
|
|
|
- </view>
|
|
|
- <view class="u-flex" style="column-gap: 18rpx;flex-wrap: wrap;">
|
|
|
- <view class="tabs">
|
|
|
- 鸡肉
|
|
|
+ <view class="u-flex" style="column-gap: 18rpx;flex-wrap: wrap;">
|
|
|
+ <view class="" :class="selectArr[index]==child?'acttab':'tabs'"
|
|
|
+ v-for="(child,idx) in item.values" :key="idx" @click="actabs(index,child,item)">
|
|
|
+ {{child}}
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="u-flex u-row-between" style="margin-top: 30rpx;">
|
|
@@ -246,9 +256,15 @@
|
|
|
</view>
|
|
|
<view class="" style="height: 200rpx;"></view>
|
|
|
<view class="bottoma">
|
|
|
- <view class="btn" @click="joincart">
|
|
|
+ <view v-if="shopcar==0" class="btn" @click="joincart">
|
|
|
加入购物车
|
|
|
</view>
|
|
|
+ <view v-if="shopcar==1" class="btn" @click="order">
|
|
|
+ 立即购买
|
|
|
+ </view>
|
|
|
+ <view v-if="shopcar==2" class="btn" @click="show = false">
|
|
|
+ 确定
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</u-popup>
|
|
@@ -339,12 +355,10 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import {
|
|
|
- detail
|
|
|
- } from "@/network/shopApi.js";
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
+ rate: '', //星级
|
|
|
imagea: false,
|
|
|
list1: [{
|
|
|
name: '商品',
|
|
@@ -360,13 +374,19 @@
|
|
|
serve: false,
|
|
|
//分享
|
|
|
share: false,
|
|
|
- value: 0, //步进器的值
|
|
|
+ value: 1, //步进器的值
|
|
|
swiptlist: [], //推荐列表
|
|
|
actab: 0,
|
|
|
id: '', //商品id
|
|
|
language: '',
|
|
|
goodinfo: {}, //商品详情
|
|
|
duration: 0, //tabs选项
|
|
|
+ actidx: 0,
|
|
|
+ subIndex: [],
|
|
|
+ selectArr: [],
|
|
|
+ shopcar: '',
|
|
|
+ sku_info: {},
|
|
|
+ commentlist: []
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -376,6 +396,7 @@
|
|
|
},
|
|
|
onLoad(options) {
|
|
|
this.id = options.id
|
|
|
+ this.comment()
|
|
|
},
|
|
|
onShow() {
|
|
|
if (uni.getStorageSync('language') != '') {
|
|
@@ -383,23 +404,37 @@
|
|
|
}
|
|
|
this.detail(this.id)
|
|
|
this.recommend()
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
+ sele(){
|
|
|
+ this.shopcar = 2
|
|
|
+ this.show = true
|
|
|
+ },
|
|
|
+ //跳转到购物车
|
|
|
+ shopping() {
|
|
|
+ uni.switchTab({
|
|
|
+ url: "/pages/cart/cart"
|
|
|
+ })
|
|
|
+ },
|
|
|
//评论接口
|
|
|
- comment(){
|
|
|
- uni.$u.http.post('/api/goods/goods_comment',{
|
|
|
- merchant_goods_id:this.goodinfo.merchant_goods_id,
|
|
|
- page:1,
|
|
|
- limit:2
|
|
|
- } ).then((res) => {
|
|
|
- console.log('comment',res);
|
|
|
+ comment() {
|
|
|
+ uni.$u.http.post('/api/goods/goods_comment', {
|
|
|
+ merchant_goods_id: this.goodinfo.merchant_goods_id,
|
|
|
+ page: 1,
|
|
|
+ limit: 2
|
|
|
+ }).then((res) => {
|
|
|
+ console.log('comment', res);
|
|
|
+ this.commentlist = res.data
|
|
|
}).catch(() => {
|
|
|
-
|
|
|
+
|
|
|
})
|
|
|
},
|
|
|
//商品推荐
|
|
|
recommend() {
|
|
|
- uni.$u.http.post('/api/goods/recommend').then((res) => {
|
|
|
+ uni.$u.http.post('/api/goods/recommend', {
|
|
|
+ keyword: '',
|
|
|
+ }).then((res) => {
|
|
|
this.swiptlist = res.reduce((a, b) => {
|
|
|
let lastIndex = a.length - 1
|
|
|
if (a[lastIndex].length < 3) {
|
|
@@ -437,13 +472,32 @@
|
|
|
// 调用scrollToView方法滚动到目标位置
|
|
|
this.$refs.scrollView.scrollToView('targetPosition');
|
|
|
},
|
|
|
- actabs(idx) {
|
|
|
- this.actab = idx
|
|
|
+ actabs(index, child, idx) {
|
|
|
+ // this.actidx = index
|
|
|
+ // this.actab = child
|
|
|
+ console.log(this.selectArr);
|
|
|
+ if (this.selectArr[index] != child) {
|
|
|
+ this.$set(this.selectArr, index, child);
|
|
|
+ this.$set(this.subIndex, index, idx);
|
|
|
+ } else {
|
|
|
+ this.$set(this.selectArr, index, '');
|
|
|
+ this.$set(this.subIndex, index, -1); //去掉选中颜色
|
|
|
+ }
|
|
|
+ this.goodinfo.sku_item.forEach(ite => {
|
|
|
+ console.log(ite.item);
|
|
|
+ console.log(this.selectArr.join(','));
|
|
|
+ if (ite.item == this.selectArr.join(',')) {
|
|
|
+ this.sku_info = ite
|
|
|
+ }
|
|
|
+ })
|
|
|
+ console.log(this.sku_info);
|
|
|
},
|
|
|
order() {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pageA/order'
|
|
|
+ url: '/pageA/order?sku=' + encodeURIComponent(JSON.stringify(this.sku_info)) + '&value=' + this
|
|
|
+ .value + '&goodinfo=' + encodeURIComponent(JSON.stringify(this.goodinfo))
|
|
|
})
|
|
|
+ // console.log(JSON.stringify(this.sku_info));
|
|
|
},
|
|
|
//生成图片弹窗
|
|
|
builder() {
|
|
@@ -453,9 +507,22 @@
|
|
|
//加入购物车
|
|
|
joincart() {
|
|
|
this.show = false
|
|
|
+ uni.$u.http.post('/api/cart/save', {
|
|
|
+ goods_id: this.id, //63 是 String 商品id
|
|
|
+ goods_num: this.value, //1 是 String 商品数量
|
|
|
+ sku_item_id: this.sku_info.id, //38 是 String 规格详情id
|
|
|
+ merchant_goods_id: this.goodinfo.merchant_goods_id, //38 是 String 团长商品id
|
|
|
+ belong: this.goodinfo.source, //是 String 商品归属 0 团长 1 平台自营 2 团长发布或者分享的平台自营商品、 供应链商品
|
|
|
+ share_merchant_id: '', //是 String 分享团长id
|
|
|
+ }).then((res) => {
|
|
|
+ console.log(res);
|
|
|
+ this.$u.toast('添加成功')
|
|
|
+ }).catch(() => {
|
|
|
+
|
|
|
+ })
|
|
|
},
|
|
|
valChange(e) {
|
|
|
- console.log('当前值为: ' + e.value)
|
|
|
+ return e.value
|
|
|
},
|
|
|
navigateBack() {
|
|
|
uni.navigateBack()
|
|
@@ -467,8 +534,9 @@
|
|
|
this.scrollToPosition()
|
|
|
}
|
|
|
},
|
|
|
- join() {
|
|
|
+ join(index) {
|
|
|
this.show = true
|
|
|
+ this.shopcar = index
|
|
|
},
|
|
|
//通知
|
|
|
inform() {
|
|
@@ -506,6 +574,16 @@
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+ .sku {
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 20rpx;
|
|
|
+ color: #888888;
|
|
|
+ line-height: 28rpx;
|
|
|
+ text-align: left;
|
|
|
+ font-style: normal;
|
|
|
+ }
|
|
|
+
|
|
|
.acttab {
|
|
|
height: 68rpx;
|
|
|
padding: 14rpx 30rpx;
|
|
@@ -616,6 +694,9 @@
|
|
|
border-radius: 6rpx;
|
|
|
box-sizing: border-box;
|
|
|
display: inline;
|
|
|
+ font-size: 28rpx;
|
|
|
+ border: 2rpx solid rgba(151, 151, 151, 0);
|
|
|
+ line-height: 40rpx;
|
|
|
// line-height: 68rpx;
|
|
|
}
|
|
|
|
|
@@ -766,6 +847,10 @@
|
|
|
padding: 24rpx 22rpx;
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
+ view:last-of-type {
|
|
|
+ margin-bottom: 0rpx !important;
|
|
|
+ }
|
|
|
+
|
|
|
.item {
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
|
font-weight: 400;
|
|
@@ -845,7 +930,7 @@
|
|
|
// 评论
|
|
|
.comment {
|
|
|
width: 710rpx;
|
|
|
- height: 356rpx;
|
|
|
+ // height: 356rpx;
|
|
|
background: #FFFFFF;
|
|
|
border-radius: 16rpx;
|
|
|
margin-top: 20rpx;
|
|
@@ -861,7 +946,7 @@
|
|
|
line-height: 36rpx;
|
|
|
text-align: left;
|
|
|
font-style: normal;
|
|
|
- height: 112rpx;
|
|
|
+ max-height: 112rpx;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
white-space: wrap;
|