Commit bf638dc27fc582de5ddffac60d3a5470a4399357
1 parent
568ab546
积分购,预售,拼团,幸运购在获取市场价的时候,goods_market_price要改成market_price
Showing
4 changed files
with
4 additions
and
4 deletions
packageC/pages/luckyGo/luckyGo_cart_ct/luckyGo_cart_ct.js
... | ... | @@ -2173,7 +2173,7 @@ Page({ |
2173 | 2173 | |
2174 | 2174 | let pk_ord_map=order_prom_map_ck[pickid]; |
2175 | 2175 | pk_ord_map.shop_price_all += item.shop_price_y * item.buynum; |
2176 | - pk_ord_map.market_price_all += item.goods_market_price * item.buynum; | |
2176 | + pk_ord_map.market_price_all += item.market_price * item.buynum; | |
2177 | 2177 | |
2178 | 2178 | }, |
2179 | 2179 | ... | ... |
packageC/pages/presell/cart/cart2.js
... | ... | @@ -3268,7 +3268,7 @@ Page({ |
3268 | 3268 | |
3269 | 3269 | let pk_ord_map=order_prom_map_ck[pickid]; |
3270 | 3270 | pk_ord_map.shop_price_all += item.shop_price_y * item.buynum; |
3271 | - pk_ord_map.market_price_all += item.goods_market_price * item.buynum; | |
3271 | + pk_ord_map.market_price_all += item.market_price * item.buynum; | |
3272 | 3272 | |
3273 | 3273 | }, |
3274 | 3274 | ... | ... |
packageE/pages/cart/cart2_inte/cart2_inte.js
... | ... | @@ -1840,7 +1840,7 @@ Page({ |
1840 | 1840 | |
1841 | 1841 | let pk_ord_map=order_prom_map_ck[pickid]; |
1842 | 1842 | pk_ord_map.shop_price_all += item.shop_price_y * item.buynum; |
1843 | - pk_ord_map.market_price_all += item.goods_market_price * item.buynum; | |
1843 | + pk_ord_map.market_price_all += item.market_price * item.buynum; | |
1844 | 1844 | |
1845 | 1845 | }, |
1846 | 1846 | ... | ... |
packageE/pages/cart/cart2_pt/cart2_pt.js
... | ... | @@ -2345,7 +2345,7 @@ Page({ |
2345 | 2345 | |
2346 | 2346 | let pk_ord_map=order_prom_map_ck[pickid]; |
2347 | 2347 | pk_ord_map.shop_price_all += item.shop_price_y * item.buynum; |
2348 | - pk_ord_map.market_price_all += item.goods_market_price * item.buynum; | |
2348 | + pk_ord_map.market_price_all += item.market_price * item.buynum; | |
2349 | 2349 | |
2350 | 2350 | }, |
2351 | 2351 | ... | ... |