Browse Source

购物车

zhaoxiaohai 2 years ago
parent
commit
cb1736b9df

+ 17 - 0
packageA/shopping/index.js

@@ -1,3 +1,5 @@
+const _Http = getApp().globalData.http;
+
 Page({
     data: {
         loading: false,
@@ -8,6 +10,21 @@ Page({
             tabActive: options.type
         })
         this.getList()
+
+        //获取企业免邮额度
+        _Http.basic({
+            "id": 20220920084001,
+            "content": {},
+        }).then(res => {
+            console.log("查询企业档案", res)
+            if (res.msg != '成功') return wx.showToast({
+                title: res.msg,
+                icon: "none"
+            })
+            this.setData({
+                freefreightamount: res.data.freefreightamount
+            })
+        })
     },
     tabChange(e) {
         this.setData({

+ 2 - 2
packageA/shopping/index.wxml

@@ -2,9 +2,9 @@
 <template is="skeleton" wx:if="{{loading}}" />
 <van-tabs color='var(--assist)' active="{{tabActive}}" border='{{true}}' sticky bind:change='tabChange'>
 	<van-tab title="商品" name="Standard">
-		<Standard id='Standard' />
+		<Standard id='Standard' figure="{{freefreightamount}}" />
 	</van-tab>
 	<van-tab title="工具" name="Tool">
-		<Tool id="Tool" />
+		<Tool id="Tool" figure="{{freefreightamount}}" />
 	</van-tab>
 </van-tabs>

+ 2 - 2
packageA/shopping/modules/standard/index.js

@@ -2,7 +2,7 @@ const _Http = getApp().globalData.http;
 let downCount = {};
 Component({
   properties: {
-
+    figure: Number
   },
   data: {
     isGet: false,
@@ -76,7 +76,7 @@ Component({
       }).then(res => {
         console.log("转化订单", res)
         if (res.msg != '成功') return wx.showToast({
-          title: 'res.msg',
+          title: res.msg,
           icon: "none"
         });
         wx.showModal({

+ 2 - 2
packageA/shopping/modules/standard/index.wxml

@@ -1,4 +1,3 @@
-
 <navigator url="#" wx:for="{{list}}" wx:key="itemid" class="item-box">
     <view class="top" bindtap="changeResults" data-item="{{item}}">
         <view class="image">
@@ -38,7 +37,8 @@
             商品合计:<text>¥{{sum}}</text>
         </view>
         <view class="transport">
-            运费(预估):<text>¥{{yfsum}}</text>
+            <!-- 运费(预估):<text>¥{{yfsum}}</text> -->
+            订单满{{figure}}免运费,当前{{sum>=figure?'已满足':'还差'+(figure-sum)+'元'}}
         </view>
     </view>
     <picker wx:if="{{classList.length>=2}}" range='{{classList}}' range-key='name' disabled='{{!results.length}}' bindchange="submit">