wupengfei 2 years ago
parent
commit
18a44991b3
1 changed files with 16 additions and 1 deletions
  1. 16 1
      application/store/controller/Goods.php

+ 16 - 1
application/store/controller/Goods.php

@@ -608,5 +608,20 @@ class Goods extends Controller
             $this->error($e->getMessage());
         }
     }
-
+    public function add_first()
+    {
+        if($this->request->post()){
+            $phone = input('post.phone');
+            $c_id = input('post.c_id');
+            $num = input('post.num');
+            $member = Db::name('store_member')->where('phone',$phone)->find();
+            if(!$member) $this->error('用户未注册');
+            //查询是否已经导入
+            $isAdd = Db::name('store_collection_first')->where(['phone'=>$phone,'c_id'=>$c_id])->count();
+            if($isAdd) $this->error('已经添加');
+            Db::name('store_collection_first')->insert(['uid'=>$member['id'],'phone'=>$phone,'num'=>$num,'c_id'=>$c_id]);
+            $this->success('添加成功');
+        }
+        $this->fetch();
+    }
 }