This commit is contained in:
DESKTOP-GMUNQ1B\k 2024-04-18 16:58:44 +08:00
parent 2e758796ff
commit eb839dcbce
2 changed files with 67 additions and 9 deletions

View File

@ -75,6 +75,19 @@
{{goods.productAttr.sku}} {{goods.productAttr.sku}}
<text class="iconfont icon-xiala1"></text> <text class="iconfont icon-xiala1"></text>
</view> </view>
<!-- 标签 -->
<view class="tag"
v-if="goods.product && goods.product.mer_label_name && goods.product.mer_label_name.length > 0">
<view class="tag-item" v-for="(ii,indx) in goods.product.mer_label_name">{{ii}}
</view>
</view>
<!-- 规格产地 -->
<!-- <view class="shop-detail" v-if="goods.product && goods.product.store_info">
{{goods.product.store_info}}
</view> -->
<view v-if="goods.product.once_max_count>0 && goods.product.once_min_count>0" <view v-if="goods.product.once_max_count>0 && goods.product.once_min_count>0"
class="buy_limit"> class="buy_limit">
<text <text
@ -82,7 +95,6 @@
v-if="goods.product.once_max_count>0">最多{{goods.product.once_max_count}}</text> v-if="goods.product.once_max_count>0">最多{{goods.product.once_max_count}}</text>
</view> </view>
<view class='money acea-row row-middle'> <view class='money acea-row row-middle'>
<view> <view>
<text class="money-price">{{goods.productAttr.price}}</text> <text class="money-price">{{goods.productAttr.price}}</text>
@ -231,7 +243,9 @@
import { import {
toLogin toLogin
} from '@/libs/login.js'; } from '@/libs/login.js';
import { Toast } from '../../libs/uniApi'; import {
Toast
} from '../../libs/uniApi';
const app = getApp(); const app = getApp();
export default { export default {
props: { props: {
@ -504,12 +518,12 @@ import { Toast } from '../../libs/uniApi';
// // // //
// that.DefaultSelect(goods) // that.DefaultSelect(goods)
cartProductAttr(id).then(res => { cartProductAttr(id).then(res => {
if(res.data.attr.length==0)return Toast('此商品为单规格商品'); if (res.data.attr.length == 0) return Toast('此商品为单规格商品');
const sku = {} const sku = {}
res.data.attrValue.forEach((itemn) => { res.data.attrValue.forEach((itemn) => {
if(this.tabsCurr==2) itemn.price = itemn.wholesale_price; // if (this.tabsCurr == 2) itemn.price = itemn.wholesale_price; //
sku[itemn.sku] = itemn; sku[itemn.sku] = itemn;
}) })
goods.attr = res.data.attr; goods.attr = res.data.attr;
goods.attrValue = res.data.attrValue goods.attrValue = res.data.attrValue
that.attrValue = goods.productAttr.sku that.attrValue = goods.productAttr.sku
@ -1231,6 +1245,51 @@ import { Toast } from '../../libs/uniApi';
color: #282828; color: #282828;
} }
.tag {
margin-bottom: 10rpx;
display: flex;
flex-wrap: wrap;
.tag-item {
padding: 2rpx 6rpx;
border-radius: 6rpx;
border: 1rpx solid #40AE36;
font-size: 18rpx;
margin-right: 7rpx;
color: #40AE36;
}
}
.shop-detail {
display: flex;
align-items: center;
width: 100%;
font-size: 22rpx;
line-height: 28rpx;
color: #999999;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 3;
white-space: pre-wrap;
margin-top: 4rpx;
.brand {
&::after {
content: "";
display: inline-block;
width: 0rpx;
height: 12rpx;
margin: 0 8rpx;
border: 1rpx solid #A1A1A1;
border-radius: 1rpx;
background-color: #A1A1A1;
opacity: .5;
}
}
}
.shoppingCart .list .item .picTxt .buy_limit { .shoppingCart .list .item .picTxt .buy_limit {
margin-top: 10rpx; margin-top: 10rpx;
color: #E93323; color: #E93323;

View File

@ -1794,7 +1794,6 @@
display: flex; display: flex;
align-items: center; align-items: center;
width: 100%; width: 100%;
// margin-bottom: 28rpx;
font-size: 22rpx; font-size: 22rpx;
line-height: 28rpx; line-height: 28rpx;
color: #999999; color: #999999;