|
@@ -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();
|
|
|
+ }
|
|
|
}
|