This commit is contained in:
weipengfei 2024-04-17 18:11:48 +08:00
parent ce9f505750
commit 4d0b2e06ac
2 changed files with 11 additions and 8 deletions

View File

@ -2,8 +2,8 @@
"name" : "惠农生活", "name" : "惠农生活",
"appid" : "__UNI__3A527D1", "appid" : "__UNI__3A527D1",
"description" : "", "description" : "",
"versionName" : "2.0.33", "versionName" : "2.0.34",
"versionCode" : 2033, "versionCode" : 2034,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -88,9 +88,9 @@
<text class="money-price">{{goods.productAttr.price}}</text> <text class="money-price">{{goods.productAttr.price}}</text>
<text class="money-unit">/</text> <text class="money-unit">/</text>
</view> </view>
<view v-if="goods.productAttr.show_svip_price" class="vipImg"> <!-- <view v-if="goods.productAttr.show_svip_price" class="vipImg">
<image :src="`${domain}/static/images/svip.png`"></image> <image :src="`${domain}/static/images/svip.png`"></image>
</view> </view> -->
</view> </view>
</view> </view>
<view class='carnum acea-row row-center-wrapper'> <view class='carnum acea-row row-center-wrapper'>
@ -231,6 +231,7 @@
import { import {
toLogin toLogin
} from '@/libs/login.js'; } from '@/libs/login.js';
import { Toast } from '../../libs/uniApi';
const app = getApp(); const app = getApp();
export default { export default {
props: { props: {
@ -503,6 +504,12 @@
// // // //
// that.DefaultSelect(goods) // that.DefaultSelect(goods)
cartProductAttr(id).then(res => { cartProductAttr(id).then(res => {
if(res.data.attr.length==0)return Toast('此商品为单规格商品');
const sku = {}
res.data.attrValue.forEach((itemn) => {
if(this.tabsCurr==2) itemn.price = itemn.wholesale_price; //
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
@ -510,10 +517,6 @@
that.goods = JSON.parse((JSON.stringify(goods))); that.goods = JSON.parse((JSON.stringify(goods)));
that.currSku = goods.productAttr.sku.split(","); that.currSku = goods.productAttr.sku.split(",");
that.$set(that.attr, 'productAttr', res.data.attr); that.$set(that.attr, 'productAttr', res.data.attr);
const sku = {}
res.data.attrValue.forEach((itemn) => {
sku[itemn.sku] = itemn;
})
that.$set(that, 'productValue', sku); that.$set(that, 'productValue', sku);
let productSelect = sku[that.attrValue]; let productSelect = sku[that.attrValue];
that.isOpen = that.attr.cartAttr = true; that.isOpen = that.attr.cartAttr = true;