jufubao-mall 2.0.76 → 2.0.77-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/get.package.path.js
CHANGED
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
*/
|
|
9
9
|
const getPackagePath = (threePackagePath, packname = 'gxd-commands-bussiness')=>{
|
|
10
10
|
if(packname === 'gxd-commands-bussiness') {
|
|
11
|
-
return `/Users/shiyonggao/
|
|
11
|
+
return `/Users/shiyonggao/Desktop/code/BASE/UNIAPP/xd-commands-bussiness/${threePackagePath}`;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
if (packname === 'gxd-uni-library-editx') {
|
|
15
|
-
return `/Users/shiyonggao/
|
|
15
|
+
return `/Users/shiyonggao/Desktop/code/BASE/UNIAPP/xd-uni-library-editx/${threePackagePath}`;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
};
|
package/package.json
CHANGED
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
<xd-list-item v-if="shop.takeoutTimeList" :label="shop.time_label" show-right :paddingLR="isCardLayout ? '32rpx' : '48rpx'" paddingTB="24rpx" @click="toSetTakeoutTime(shopIndex,shop)" class="xd-my-list-item">
|
|
103
103
|
<view style="">{{shop.takeoutTime ? shop.takeoutTime.dateTime : '请选择'}}</view>
|
|
104
104
|
</xd-list-item>
|
|
105
|
-
</template>
|
|
105
|
+
</template>
|
|
106
106
|
</template>
|
|
107
107
|
</view>
|
|
108
108
|
<!-- <xd-list-item v-if="shop.delivery_message" :label="shop.delivery_message" paddingLR="48rpx" size="large"></xd-list-item> -->
|
|
@@ -132,6 +132,9 @@
|
|
|
132
132
|
<xd-list-item v-if="showLogisticsAmount&&main_show_delivery_price==='Y'" label="商品运费" :paddingLR="isCardLayout ? '32rpx' : '48rpx'">
|
|
133
133
|
<xd-unit :price="orderFee.user_logistics_amount_origin" :isOld="false" :fontSize="28" :iconSize="0.3"></xd-unit>
|
|
134
134
|
</xd-list-item>
|
|
135
|
+
<xd-list-item v-if="orderFee.main_user_server_amount" label="平台服务费" :paddingLR="isCardLayout ? '32rpx' : '48rpx'">
|
|
136
|
+
<xd-unit :price="orderFee.main_user_server_amount" :isOld="false" :fontSize="28" :iconSize="0.3"></xd-unit>
|
|
137
|
+
</xd-list-item>
|
|
135
138
|
</view>
|
|
136
139
|
<view v-if="showPrice === 'Y' || otherPayMethod.filter(it => it.method!=='third').length" class="money_box">
|
|
137
140
|
<template v-if="showPrice === 'Y'">
|
|
@@ -1554,6 +1557,7 @@
|
|
|
1554
1557
|
product_amount: res.product_amount,
|
|
1555
1558
|
plus_saving_money: res.plus_saving_money,
|
|
1556
1559
|
origin_amount: res.origin_amount,
|
|
1560
|
+
main_user_server_amount: res.main_user_server_amount,
|
|
1557
1561
|
}
|
|
1558
1562
|
//支付方式跟用户相关,与订单无关。
|
|
1559
1563
|
//只获取一次。
|