isAjax()) return (new userModel($this->site_id))->getList(); $this->forthMenu(); return $this->fetch('user/index'); } /** * Common: 特殊身份变更 * Author: wu-hui * Time: 2023/02/23 9:33 * @return array */ public function changeSpecial(){ return (new userModel($this->site_id))->changeSpecial(); } /** * Common: 商品赠送 * Author: wu-hui * Time: 2023/02/23 14:01 * @return array|mixed */ public function sendGoods(){ if(request()->isAjax()) return (new userModel($this->site_id))->sendGoods(); $this->assign('member_id',input('member_id',0)); return $this->fetch('user/send_goods'); } // 违规记录 public function violationRecords(){ if(request()->isAjax()) return (new userModel($this->site_id))->violationRecords(); $this->assign('member_id',input('member_id',0)); return $this->fetch('user/record'); } }