Browse Source

每公斤运费

shish 4 years ago
parent
commit
86fd959a9d
1 changed files with 3 additions and 0 deletions
  1. 3 0
      app-hd/controllers/GhsController.php

+ 3 - 0
app-hd/controllers/GhsController.php

@@ -52,6 +52,9 @@ class GhsController extends BaseController
         $info['xrFlAmount'] = $ghsShop->xrFlAmount ?? 0;
         $info['tjFl'] = $ghsShop->tjFl ?? 0;
         $info['tjFlAmount'] = $ghsShop->tjFlAmount ?? 0;
+        //预订单的最低公斤数和每公斤服务费
+        $info['kiloFee'] = $ghsShop->kiloFee ?? 0;
+        $info['miniKilo'] = $ghsShop->miniKilo ?? 0;
 
         util::success($info);
     }