Commit 3c4ab13c7027f84bf4fdce017d6a3416f62554b2

Authored by yvan.ni
1 parent 53412218

尾款同步的时候,bug优化

packageE/pages/cart/cart_wk/cart_wk.js
... ... @@ -1557,7 +1557,7 @@ Page({
1557 1557 pageSize: 100,
1558 1558 };
1559 1559  
1560   - if(th.data.ckeck_quan_price>=th.data.check_quan_price_scj){
  1560 + if(parseFloat(th.data.ckeck_quan_price)>=parseFloat(th.data.check_quan_price_scj)){
1561 1561 quan_rq.BuyPosSum=th.data.ckeck_quan_price;
1562 1562 quan_rq.PosWareIds=encodeURIComponent(th.data.check_quan_ware_list)
1563 1563 }
... ...
packageE/pages/cart/cart_wk/cart_wk.wxml
1 1 <wxs module="filters" src="../../../../utils/filter.wxs"></wxs>
2 2 <wxs module="filter" src="../cart2/c_filter.wxs"></wxs>
  3 +<wxs src="../cart2/filter.wxs" module="util"></wxs>
3 4  
4 5 <!-- 先选择配送方式,2021.7修改 -->
5 6 <block wx:if="{{show_submit}}">
... ... @@ -292,7 +293,7 @@
292 293 </view>
293 294 </view>
294 295 <!-- 打开是说明 -->
295   - <include src="../cart2/remark_part.wxml" />
  296 + <include src="../cart2/remark_part_qj.wxml" />
296 297 </view>
297 298 <!-- 包邮券的显示,立即购买 -->
298 299 <block wx:if="{{get_by_quan_list && get_by_quan_list.length}}">
... ...