jufubao-food 1.0.13-beta1 → 1.0.13-beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
<view style="display:flex;align-items:center">
|
|
71
71
|
<CusPrice :isPlus="is_plus_site" :isShowIcon="false" salePriceFontSize="32" :showPrice="item.show_prices"></CusPrice>
|
|
72
72
|
</view>
|
|
73
|
-
<view style="font-size: 28rpx;color:#999">
|
|
73
|
+
<view class="p_r" style="font-size: 28rpx;color:#999">
|
|
74
74
|
<view v-if="item.has_choose" class="chose_spu" @click="toProductDetail(item)">
|
|
75
75
|
选规格
|
|
76
76
|
<view v-if="item.num" class="cart_edg">{{ item.num }}</view>
|
|
@@ -314,6 +314,8 @@
|
|
|
314
314
|
num: val,
|
|
315
315
|
category_id: prod.category_id
|
|
316
316
|
}
|
|
317
|
+
if(prod.product_sku) product.product_sku = prod.product_sku;
|
|
318
|
+
if(prod.specs) product.specs = prod.specs;
|
|
317
319
|
jfbRootExec("setFoodCartNum", {
|
|
318
320
|
vm: this,
|
|
319
321
|
data: {
|
|
@@ -342,7 +344,7 @@
|
|
|
342
344
|
},
|
|
343
345
|
handleSwitchShop(){
|
|
344
346
|
this.$xdUniHelper.navigateTo({
|
|
345
|
-
url: this.switchStorePath + "?brand_id=" + this.shopInfo.brand_id,
|
|
347
|
+
url: this.switchStorePath + "?brand_id=" + this.shopInfo.brand_id + "&resource_shop_id=" + this.resource_shop_id,
|
|
346
348
|
})
|
|
347
349
|
},
|
|
348
350
|
p_getFoodShopDetail(){
|
|
@@ -947,6 +949,13 @@
|
|
|
947
949
|
display: flex;
|
|
948
950
|
align-items: flex-end;
|
|
949
951
|
justify-content: space-between;
|
|
952
|
+
position: relative;
|
|
953
|
+
|
|
954
|
+
.p_r{
|
|
955
|
+
position: absolute;
|
|
956
|
+
right: 0;
|
|
957
|
+
bottom: 0;
|
|
958
|
+
}
|
|
950
959
|
|
|
951
960
|
.icon_add_cart{
|
|
952
961
|
background-color: var(--main-color);
|