|
@@ -15,11 +15,7 @@
|
|
|
|
|
|
namespace app\store\controller;
|
|
|
|
|
|
-use app\common\model\Config;
|
|
|
-use app\common\model\Message;
|
|
|
use library\Controller;
|
|
|
-use think\Db;
|
|
|
-use app\common\model\User;
|
|
|
|
|
|
/**
|
|
|
* 会员信息管理
|
|
@@ -32,7 +28,7 @@ class Member extends Controller
|
|
|
* 绑定数据表
|
|
|
* @var string
|
|
|
*/
|
|
|
- protected $table = 'User';
|
|
|
+ protected $table = 'StoreMember';
|
|
|
|
|
|
/**
|
|
|
* 会员信息管理
|
|
@@ -47,570 +43,8 @@ class Member extends Controller
|
|
|
public function index()
|
|
|
{
|
|
|
$this->title = '会员信息管理';
|
|
|
- $query = $this->_query($this->table)->like('phone')->equal('sex,status,is_cancellation_account,is_home');
|
|
|
- if (isset($_GET['keyword']) && $_GET['keyword']){
|
|
|
- $query->where('id|nickname|wechat_id|household|education|graduated_from|province|city|area','like','%'.$_GET['keyword'].'%');
|
|
|
- }
|
|
|
- if (isset($_GET['real_auth_status']) && $_GET['real_auth_status']!=''){
|
|
|
- if ($_GET['real_auth_status']==-1){
|
|
|
- $query->where('real_auth_status',0)->whereNull('real_auth_name');
|
|
|
- }elseif ($_GET['real_auth_status']==0){
|
|
|
- $query->where('real_auth_status',0)->whereNotNull('real_auth_name');
|
|
|
- }else{
|
|
|
- $query->where('real_auth_status',$_GET['real_auth_status']);
|
|
|
- }
|
|
|
- }
|
|
|
- if (isset($_GET['work_auth_status']) && $_GET['work_auth_status']!=''){
|
|
|
- if ($_GET['work_auth_status']==-1){
|
|
|
- //$query->where('work_auth_status',0)->whereNull('work_auth_company_name');
|
|
|
- $query->where('work_auth_status',0)->where('work_auth_company_name','');
|
|
|
- }elseif ($_GET['work_auth_status']==0){
|
|
|
- // $query->where('work_auth_status',0)->whereNotNull('work_auth_company_name');
|
|
|
- $query->where('work_auth_status',0)->where('work_auth_company_name','neq','');
|
|
|
- }else{
|
|
|
- $query->where('work_auth_status',$_GET['work_auth_status']);
|
|
|
- }
|
|
|
- }
|
|
|
- if (isset($_GET['education_auth_status']) && $_GET['education_auth_status']!=''){
|
|
|
- if ($_GET['education_auth_status']==-1){
|
|
|
- $query->where('education_auth_status',0)->whereNull('education_auth_school');
|
|
|
- }elseif ($_GET['education_auth_status']==0){
|
|
|
- $query->where('education_auth_status',0)->whereNotNull('education_auth_school');
|
|
|
- }else{
|
|
|
- $query->where('education_auth_status',$_GET['education_auth_status']);
|
|
|
- }
|
|
|
- }
|
|
|
- $query->where('is_del',1)->dateBetween('create_at')
|
|
|
- ->order('id desc')->page();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 列表数据处理
|
|
|
- * @param array $data
|
|
|
- */
|
|
|
- protected function _index_page_filter(&$data)
|
|
|
- {
|
|
|
-
|
|
|
- }
|
|
|
- /**
|
|
|
- * 更新用户余额
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function edit_money()
|
|
|
- {
|
|
|
- $id = $this->app->request->get('id');
|
|
|
- $this->assign('id',$id);
|
|
|
- $post = $this->app->request->post();
|
|
|
- if (isset($post['id']) && $post['id']){
|
|
|
- $user = Db::name('user')->where('id',$post['id'])->find();
|
|
|
- $pm = $post['integral']>0 ? 1 : 0;
|
|
|
- $title = $post['integral']>0 ? '系统增加' : '系统减少';
|
|
|
- $money = str_replace("-", "", $post['integral']);
|
|
|
- if ($post['integral']<0){
|
|
|
- if ($money>$user['integral']){
|
|
|
- $this->error('金额超出范围!');
|
|
|
- }
|
|
|
- }
|
|
|
- User::integral($money,$post['id'],$title.$money.'积分',$pm);
|
|
|
- $this->success('编辑成功!');
|
|
|
- }else{
|
|
|
- $this->fetch('form');
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 禁用用户
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function forbid()
|
|
|
- {
|
|
|
- $id = $this->app->request->get('id');
|
|
|
- $this->assign('id',$id);
|
|
|
- $post = $this->app->request->post();
|
|
|
-
|
|
|
- if (isset($post['id']) && $post['id']){
|
|
|
- Db::name($this->table)->where('id',$post['id'])->update(['status'=>0,'disable_reason'=>$post['disable_reason'],'due_time'=>$post['due_time'],'disable_time'=>date('Y-m-d H:i:s')]);
|
|
|
- $this->success('成功!');
|
|
|
- }else{
|
|
|
- $this->_form($this->table, 'forbid');
|
|
|
- }
|
|
|
-
|
|
|
- //$this->_save($this->table, ['status' => '0']);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 启用用户
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function resume()
|
|
|
- {
|
|
|
- $this->_save($this->table, ['status' => '1']);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 取消置顶
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function forbid2()
|
|
|
- {
|
|
|
- $this->_save($this->table, ['is_home' => '0']);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 置顶用户
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function resume2()
|
|
|
- {
|
|
|
- $this->_save($this->table, ['is_home' => '1']);
|
|
|
+ $query = $this->_query($this->table)->like('nickname,phone')->equal('vip_level');
|
|
|
+ $query->dateBetween('create_at')->order('id desc')->page();
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 表单数据处理
|
|
|
- * @param array $data
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- protected function _form_filter(&$data)
|
|
|
- {
|
|
|
- if ($this->request->isGet()) {
|
|
|
- if (isset($data['id'])){
|
|
|
- $money_log = Db::name('UserIntegralLog')->where('user_id',$data['id'])->order('id desc')->select();
|
|
|
- $data['money_log'] = $money_log;
|
|
|
- $img = $data['imgs'];
|
|
|
- $data['imgs'] = explode(',',$img);
|
|
|
- $data['imgss'] = implode('|',explode(',',$img));
|
|
|
- $label = $data['label'];
|
|
|
- $data['label'] = $label;
|
|
|
- $label = explode(',',$label);
|
|
|
- $real_auth_img = $data['real_auth_img'];
|
|
|
- $data['real_auth_img'] = explode(',', $real_auth_img);
|
|
|
- $data['real_auth_imgs'] = implode('|',explode(',',$real_auth_img));
|
|
|
- $work_auth_img = $data['work_auth_img'];
|
|
|
- $data['work_auth_img'] = explode(',', $work_auth_img);
|
|
|
- $data['work_auth_imgs'] = implode('|',explode(',',$work_auth_img));
|
|
|
- $education_auth_img = $data['education_auth_img'];
|
|
|
- $data['education_auth_img'] = explode(',', $education_auth_img);
|
|
|
- $data['education_auth_imgs'] = implode('|',explode(',',$education_auth_img));
|
|
|
-
|
|
|
- $introduce_myself_imgs = $data['introduce_myself_imgs'];
|
|
|
- $data['introduce_myself_imgs'] = explode(',',$introduce_myself_imgs);
|
|
|
- $data['introduce_myself_imgss'] = implode('|',explode(',',$introduce_myself_imgs));
|
|
|
- $family_background_imgs = $data['family_background_imgs'];
|
|
|
- $data['family_background_imgs'] = explode(',',$family_background_imgs);
|
|
|
- $data['family_background_imgss'] = implode('|',explode(',',$family_background_imgs));
|
|
|
- $interests_hobbies_imgs = $data['interests_hobbies_imgs'];
|
|
|
- $data['interests_hobbies_imgs'] = explode(',',$interests_hobbies_imgs);
|
|
|
- $data['interests_hobbies_imgss'] = implode('|',explode(',',$interests_hobbies_imgs));
|
|
|
- $love_imgs = $data['love_imgs'];
|
|
|
- $data['love_imgs'] = explode(',',$love_imgs);
|
|
|
- $data['love_imgss'] = implode('|',explode(',',$love_imgs));
|
|
|
- $other_half_imgs = $data['other_half_imgs'];
|
|
|
- $data['other_half_imgs'] = explode(',',$other_half_imgs);
|
|
|
- $data['other_half_imgss'] = implode('|',explode(',',$other_half_imgs));
|
|
|
- $why_single_imgs = $data['why_single_imgs'];
|
|
|
- $data['why_single_imgs'] = explode(',',$why_single_imgs);
|
|
|
- $data['why_single_imgss'] = implode('|',explode(',',$why_single_imgs));
|
|
|
- $look_life_imgs = $data['look_life_imgs'];
|
|
|
- $data['look_life_imgs'] = explode(',',$look_life_imgs);
|
|
|
- $data['look_life_imgss'] = implode('|',explode(',',$look_life_imgs));
|
|
|
- if ($data['hope_age']){
|
|
|
- $data['hope_age1'] = explode(',',$data['hope_age'])[0];
|
|
|
- $data['hope_age2'] = explode(',',$data['hope_age'])[1];
|
|
|
- }
|
|
|
- if ($data['hope_height']){
|
|
|
- $data['hope_height1'] = explode(',',$data['hope_height'])[0];
|
|
|
- $data['hope_height2'] = explode(',',$data['hope_height'])[1];
|
|
|
- }
|
|
|
- $all = ['all'];
|
|
|
- $education_list = explode(',',Config::get_values('education'));
|
|
|
- $data['education_list'] = array_merge($all,$education_list);
|
|
|
-// dump($data);
|
|
|
- $this->data = $data;
|
|
|
- //加入的互选池
|
|
|
- $join_pool = Db::name('ElectPoolMembers')->alias('a')
|
|
|
- ->where('a.user_id',$data['id'])
|
|
|
- ->where('b.is_dissolution',1)
|
|
|
- ->field('a.user_id,a.create_at,b.user_id as pool_user_id,b.name,b.type,b.imgs')
|
|
|
- ->join('ElectPool b','a.pool_id=b.id')
|
|
|
- ->order('a.id desc')
|
|
|
- ->select();
|
|
|
- //dump($join_pool);
|
|
|
- $this->join_pool = $join_pool;
|
|
|
- //想认识我会员列表
|
|
|
- $want_to_me = Db::name('UserWantKnow')->alias('a')
|
|
|
- ->where('a.to_user_id',$data['id'])
|
|
|
- ->field('a.user_id,a.create_at,b.id as uid,b.nickname,b.headimgurl,b.sex,b.wechat_id')
|
|
|
- ->join('User b','a.user_id=b.id')
|
|
|
- ->order('a.id desc')
|
|
|
- ->select();
|
|
|
-// dump($want_to_me);
|
|
|
- $this->want_to_me = $want_to_me;
|
|
|
- //特权开通记录
|
|
|
- $privilege_log = Db::name('PrivilegeLog')
|
|
|
- ->where('user_id',$data['id'])
|
|
|
- ->order('id desc')
|
|
|
- ->select();
|
|
|
- $this->privilege_log = $privilege_log;
|
|
|
- //标签列表
|
|
|
- $label_list = explode(',',Config::get_values('label'));
|
|
|
- $label_list = array_unique(array_merge($label_list,$label));
|
|
|
- $labellists = array();
|
|
|
- foreach ($label_list as $k=>$v){
|
|
|
- if ($label){
|
|
|
- foreach ($label as $a=>$b){
|
|
|
- if ($b==$v){
|
|
|
- $is_hive = 1;
|
|
|
- break 1;
|
|
|
- }else{
|
|
|
- $is_hive = 0;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- $labellist['is_hive'] = $is_hive;
|
|
|
- $labellist['name'] = $v;
|
|
|
- array_push($labellists,$labellist);
|
|
|
- }
|
|
|
- $this->label_list = $labellists;
|
|
|
- //市
|
|
|
- $pid = Db::name('Area')->where('name',$data['province'])->value('id');
|
|
|
- $city = Db::name('Area')->where('level',2)->where('pid',$pid)->select();
|
|
|
- $this->city = $city;
|
|
|
- //区
|
|
|
- $pid2 = Db::name('Area')->where('name',$data['city'])->value('id');
|
|
|
- $area = Db::name('Area')->where('level',3)->where('pid',$pid2)->select();
|
|
|
- $this->area = $area;
|
|
|
- }else{
|
|
|
- //标签列表
|
|
|
- $label_list = explode(',',Config::get_values('label'));
|
|
|
- $labellists = array();
|
|
|
- foreach ($label_list as $k=>$v){
|
|
|
- $labellist['is_hive'] = 0;
|
|
|
- $labellist['name'] = $v;
|
|
|
- array_push($labellists,$labellist);
|
|
|
- }
|
|
|
- $this->label_list = $labellists;
|
|
|
- }
|
|
|
- //省
|
|
|
- $province = Db::name('Area')->where('level',1)->select();
|
|
|
- $this->province = $province;
|
|
|
- }elseif ($this->request->isPost()) {
|
|
|
-
|
|
|
- if (isset($data['date_of_birth'])){
|
|
|
- //计算年龄
|
|
|
- $data['age'] = date('Y',time())-date('Y',strtotime($data['date_of_birth']));
|
|
|
- }
|
|
|
- if (isset($data['province'])){
|
|
|
- $data['province'] = Db::name('Area')->where('id',$data['province'])->value('name');
|
|
|
- }
|
|
|
- if (isset($data['city'])){
|
|
|
- $data['city'] = Db::name('Area')->where('id',$data['city'])->value('name');
|
|
|
- }
|
|
|
- if (isset($data['area'])){
|
|
|
- $data['area'] = Db::name('Area')->where('id',$data['area'])->value('name');
|
|
|
- }
|
|
|
- if (isset($data['label'])){
|
|
|
- $data['label'] = implode(',',$data['label']);
|
|
|
- }
|
|
|
- if (isset($data['imgs'])){
|
|
|
- $im = explode('|',$data['imgs']);
|
|
|
- $data['headimgurl'] = $im[0];
|
|
|
- $data['imgs'] = implode(',',$im);
|
|
|
- }
|
|
|
- if (isset($data['introduce_myself_imgs'])){
|
|
|
- $data['introduce_myself_imgs'] = implode(',',explode('|',$data['introduce_myself_imgs']));
|
|
|
- }
|
|
|
- if (isset($data['family_background_imgs'])){
|
|
|
- $data['family_background_imgs'] = implode(',',explode('|',$data['family_background_imgs']));
|
|
|
- }
|
|
|
- if (isset($data['interests_hobbies_imgs'])){
|
|
|
- $data['interests_hobbies_imgs'] = implode(',',explode('|',$data['interests_hobbies_imgs']));
|
|
|
- }
|
|
|
- if (isset($data['love_imgs'])){
|
|
|
- $data['love_imgs'] = implode(',',explode('|',$data['love_imgs']));
|
|
|
- }
|
|
|
- if (isset($data['other_half_imgs'])){
|
|
|
- $data['other_half_imgs'] = implode(',',explode('|',$data['other_half_imgs']));
|
|
|
- }
|
|
|
- if (isset($data['why_single_imgs'])){
|
|
|
- $data['why_single_imgs'] = implode(',',explode('|',$data['why_single_imgs']));
|
|
|
- }
|
|
|
- if (isset($data['look_life_imgs'])){
|
|
|
- $data['look_life_imgs'] = implode(',',explode('|',$data['look_life_imgs']));
|
|
|
- }
|
|
|
- if (isset($data['hope_age1']) && isset($data['hope_age2'])){
|
|
|
- $data['hope_age'] = $data['hope_age1'].','.$data['hope_age2'];
|
|
|
- unset($data['hope_age1']); unset($data['hope_age2']);
|
|
|
- }
|
|
|
- if (isset($data['hope_height1']) && isset($data['hope_height2'])){
|
|
|
- $data['hope_height'] = $data['hope_height1'].','.$data['hope_height2'];
|
|
|
- unset($data['hope_height1']); unset($data['hope_height2']);
|
|
|
- }
|
|
|
-
|
|
|
- if (isset($data['real_auth_img'])){
|
|
|
- $data['real_auth_img'] = implode(',',explode('|',$data['real_auth_img']));
|
|
|
- }
|
|
|
- if (isset($data['work_auth_img'])){
|
|
|
- $data['work_auth_img'] = implode(',',explode('|',$data['work_auth_img']));
|
|
|
- }
|
|
|
- if (isset($data['education_auth_img'])){
|
|
|
- $data['education_auth_img'] = implode(',',explode('|',$data['education_auth_img']));
|
|
|
- }
|
|
|
-
|
|
|
- if (isset($data['id'])){
|
|
|
- $data['update_at'] = date('Y-m-d H:i:s');
|
|
|
- }else{
|
|
|
- $data['create_at'] = date('Y-m-d H:i:s');
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取市
|
|
|
- */
|
|
|
- public function get_city(){
|
|
|
- $id = $this->app->request->get('id');
|
|
|
- $city_list = Db::name('Area')->where('pid',$id)->where('level',2)->select();
|
|
|
- $this->success('成功',$city_list);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 获取区
|
|
|
- */
|
|
|
- public function get_area(){
|
|
|
- $id = $this->app->request->get('id');
|
|
|
- $area_list = Db::name('Area')->where('pid',$id)->where('level',3)->select();
|
|
|
- $this->success('成功',$area_list);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 会员详情
|
|
|
- * @auth true
|
|
|
- * @menu true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function userinfo()
|
|
|
- {
|
|
|
- $this->title = '会员详情';
|
|
|
- $this->_form($this->table, 'userinfo');
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 警告消息
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function warning()
|
|
|
- {
|
|
|
- $id = $this->app->request->get('id');
|
|
|
- $this->assign('id',$id);
|
|
|
- $post = $this->app->request->post();
|
|
|
- if (isset($post['id']) && $post['id']){
|
|
|
- Message::create_message($post['id'],$post['warnimg'],$post['title'],1);
|
|
|
- $this->success('成功!');
|
|
|
- }else{
|
|
|
- $this->fetch('warning');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 实名认证审核
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function real_audit()
|
|
|
- {
|
|
|
- $id = $this->app->request->get('id');
|
|
|
- $this->assign('id',$id);
|
|
|
- $post = $this->app->request->post();
|
|
|
- if (isset($post['id']) && $post['id']){
|
|
|
- if (Db::name($this->table)->where('id',$post['id'])->update(['real_auth_status'=>$post['real_auth_status'],'real_auth_why'=>$post['real_auth_why'],'real_auth_time'=>date('Y-m-d H:i:s')])){
|
|
|
- $this->success('成功!');
|
|
|
- }else{
|
|
|
- $this->error('失败');
|
|
|
- }
|
|
|
- }else{
|
|
|
- $data = Db::name($this->table)->where('id',$id)->find();
|
|
|
- $data['real_auth_img'] = explode(',',$data['real_auth_img']);
|
|
|
- $this->data = $data;
|
|
|
- $this->fetch('real_audit');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 工作认证审核
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function work_audit()
|
|
|
- {
|
|
|
- $id = $this->app->request->get('id');
|
|
|
- $this->assign('id',$id);
|
|
|
- $post = $this->app->request->post();
|
|
|
- if (isset($post['id']) && $post['id']){
|
|
|
- if (Db::name($this->table)->where('id',$post['id'])->update(['work_auth_status'=>$post['work_auth_status'],'work_auth_why'=>$post['work_auth_why'],'work_auth_time'=>date('Y-m-d H:i:s')])){
|
|
|
- $this->success('成功!');
|
|
|
- }else{
|
|
|
- $this->error('失败');
|
|
|
- }
|
|
|
- }else{
|
|
|
- $data = Db::name($this->table)->where('id',$id)->find();
|
|
|
- $data['work_auth_img'] = explode(',',$data['work_auth_img']);
|
|
|
- $this->data = $data;
|
|
|
- $this->fetch('work_audit');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 工作认证审核
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function education_audit()
|
|
|
- {
|
|
|
- $id = $this->app->request->get('id');
|
|
|
- $this->assign('id',$id);
|
|
|
- $post = $this->app->request->post();
|
|
|
- if (isset($post['id']) && $post['id']){
|
|
|
- if (Db::name($this->table)->where('id',$post['id'])->update(['education_auth_status'=>$post['education_auth_status'],'education_auth_why'=>$post['education_auth_why'],'education_time'=>date('Y-m-d H:i:s')])){
|
|
|
- $this->success('成功!');
|
|
|
- }else{
|
|
|
- $this->error('失败');
|
|
|
- }
|
|
|
- }else{
|
|
|
- $data = Db::name($this->table)->where('id',$id)->find();
|
|
|
- $data['education_auth_img'] = explode(',',$data['education_auth_img']);
|
|
|
- $this->data = $data;
|
|
|
- $this->fetch('education_audit');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 添加信息
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function add()
|
|
|
- {
|
|
|
- $this->title = '添加信息';
|
|
|
- $this->_form($this->table, 'edit');
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 编辑信息
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function edit()
|
|
|
- {
|
|
|
- $this->title = '编辑信息';
|
|
|
- $this->_form($this->table, 'edit');
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 对另一半的要求
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function hope()
|
|
|
- {
|
|
|
- $this->title = '对另一半的要求';
|
|
|
- $this->_form($this->table, 'hope');
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 认证信息编辑
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function auth()
|
|
|
- {
|
|
|
- $this->title = '认证信息编辑';
|
|
|
- $this->_form($this->table, 'auth');
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 表单结果处理
|
|
|
- * @param boolean $result
|
|
|
- */
|
|
|
- protected function _form_result($result)
|
|
|
- {
|
|
|
- if ($result && $this->request->isPost()) {
|
|
|
- $this->success('编辑成功!', 'javascript:history.back()');
|
|
|
- }
|
|
|
- }
|
|
|
- /**
|
|
|
- * 软删除
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function del()
|
|
|
- {
|
|
|
- $this->_save($this->table, ['is_del' => '0']);
|
|
|
- }
|
|
|
}
|