jufubao-base 1.0.243-beta1002 → 1.0.243-beta1003
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
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@click="handleChoseVip(item.vip_card_id)"
|
|
7
7
|
>
|
|
8
8
|
<view class="vip_name">{{ item.product_name}}</view>
|
|
9
|
-
<view class="vip_price">¥{{ $xdUniHelper.divisionFloatNumber(item.sale_price, 100) }}</view>
|
|
9
|
+
<view class="vip_price">¥{{ $xdUniHelper.divisionFloatNumber(item.sale_price, 100).toFixed(2) }}</view>
|
|
10
10
|
</view>
|
|
11
11
|
</view>
|
|
12
12
|
<view class="vip_pay">
|
|
@@ -460,7 +460,7 @@ export default {
|
|
|
460
460
|
},
|
|
461
461
|
},
|
|
462
462
|
computed: {
|
|
463
|
-
...mapState(["brandInfo", "siteInfo"]),
|
|
463
|
+
...mapState(["brandInfo", "siteInfo", "jfbAuthorize"]),
|
|
464
464
|
...styleForm.getComputedItem(),
|
|
465
465
|
},
|
|
466
466
|
created() {
|
|
@@ -598,6 +598,11 @@ export default {
|
|
|
598
598
|
},
|
|
599
599
|
|
|
600
600
|
handleOrderResolve(info) {
|
|
601
|
+
//#ifdef MP-WEIXIN
|
|
602
|
+
if(info.is_clear_vip_cookie && info.is_clear_vip_cookie === 'Y'){
|
|
603
|
+
this.jfbAuthorize.removeToken('access');
|
|
604
|
+
}
|
|
605
|
+
//#endif
|
|
601
606
|
info.btn = [
|
|
602
607
|
{ label: "返回首页", value: 1, type: "default", radius: "12rpx" },
|
|
603
608
|
{
|