jufubao-base 1.0.237-beta12 → 1.0.237-beta13
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
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
boxShadow: shadowBox,
|
|
141
141
|
marginBottom: padding + 'rpx',
|
|
142
142
|
}"
|
|
143
|
-
v-if="info.film_show.detail && info.film_show.detail !== null"
|
|
143
|
+
v-if="info.film_show&&info.film_show.detail && info.film_show.detail !== null"
|
|
144
144
|
>
|
|
145
145
|
<view class="jfb-base-order-detail__body-delivery-info-title">
|
|
146
146
|
<view :style="{background:mainColor}" class="line"></view>
|
|
@@ -24,7 +24,7 @@ export default {
|
|
|
24
24
|
let differ = getContainerPropsValue(container, 'content.differ', 1);
|
|
25
25
|
let showActivityPrice = getContainerPropsValue(container, 'content.showActivityPrice', 'N');
|
|
26
26
|
let isShowExchange = getContainerPropsValue(container, 'content.isShowExchange', 'N');
|
|
27
|
-
let isShowIcon = this.siteInfo.mapping.is_show_coin_icon==='Y'
|
|
27
|
+
let isShowIcon = this.siteInfo && this.siteInfo.mapping.is_show_coin_icon==='Y'
|
|
28
28
|
this.productConfig = {is_show_brand, isPrice, isShowTag, isShowDiscount, isAddCart, differ, showActivityPrice, isShowExchange,is_plus_site: this.is_plus_site,isShowIcon};
|
|
29
29
|
|
|
30
30
|
//内容
|