panlumeng 3 years ago
parent
commit
fb096a97ef
1 changed files with 3 additions and 3 deletions
  1. 3 3
      app/admin/controller/Customar.php

+ 3 - 3
app/admin/controller/Customar.php

@@ -35,7 +35,7 @@ class Customar extends BaseController
 //        if ($parent === "") {
 //            return error_show(1002, "参数parent不能为空");
 //        }
-        $itemid = isset($this->post['itemid']) && $this->post['itemid'] !== "" ? intval($this->post['itemid'] ) : "";
+        //$itemid = isset($this->post['itemid']) && $this->post['itemid'] !== "" ? intval($this->post['itemid'] ) : "";
         $customer_member = isset($this->post['customer_member']) && $this->post['customer_member'] !== "" ? $this->post['customer_member'] : "";
         if ($customer_member == "") {
             return error_show(1002, "参数customer_member不能为空");
@@ -56,7 +56,7 @@ class Customar extends BaseController
                 "companyNo" => $companyNo,
                 "companyName" => $companyName,
                 "parent" => $parent,
-                "itemid" => $itemid,
+                "itemid" => $parent,
                 "area" => "",
                 "comdepart" => "",
                 "commobile" => "",
@@ -283,7 +283,7 @@ class Customar extends BaseController
         if ($id == "") {
             return error_show(1002, "参数id不能为空");
         }
-        $idinfo = Db::name('customer_info')->where(['id' => $id, 'is_del' => 0])->field("companyNo,companyName,parent")->find();
+        $idinfo = Db::name('customer_info')->where(['id' => $id, 'is_del' => 0])->field("companyNo,companyName,itemid as parent")->find();
         if ($idinfo == "") {
             return error_show(1002, "未找到数据");
         }