diff --git a/app/common/logic/vehicle/VehicleLogic.php b/app/common/logic/vehicle/VehicleLogic.php
index cf6975468..dbb71f960 100644
--- a/app/common/logic/vehicle/VehicleLogic.php
+++ b/app/common/logic/vehicle/VehicleLogic.php
@@ -4,15 +4,13 @@ namespace app\common\logic\vehicle;
 
 use app\common\logic\BaseLogic;
 use app\common\model\Company;
-use app\common\model\contract\Contract;
 use app\common\model\contract\VehicleContract;
-use Exception;
-use think\facade\Db;
+
 
 class VehicleLogic extends BaseLogic
 {
-//    public static string $url = 'http://logistics.lihaink.cn';
-    public static string $url = 'http://www.lst.local';
+    public static string $url = 'http://logistics.lihaink.cn';
+//    public static string $url = 'http://www.lst.local';
     public static function initiate_contract($data):array|bool {
         //查找乙方公司信息
         $party_b = Company::field('id,company_name,organization_code,master_name,master_phone,master_email,company_type')->where('id',$data['party_b'])->find();