|
@@ -0,0 +1,351 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+// +----------------------------------------------------------------------
|
|
|
+// | ThinkAdmin
|
|
|
+// +----------------------------------------------------------------------
|
|
|
+// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
|
|
+// +----------------------------------------------------------------------
|
|
|
+// | 官方网站: http://demo.thinkadmin.top
|
|
|
+// +----------------------------------------------------------------------
|
|
|
+// | 开源协议 ( https://mit-license.org )
|
|
|
+// +----------------------------------------------------------------------
|
|
|
+// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
|
|
+// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
|
|
+// +----------------------------------------------------------------------
|
|
|
+
|
|
|
+namespace app\store\controller;
|
|
|
+
|
|
|
+use app\common\model\Config;
|
|
|
+use app\common\model\User;
|
|
|
+use library\Controller;
|
|
|
+use think\Db;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 会员信息管理
|
|
|
+ * Class Member
|
|
|
+ * @package app\store\controller
|
|
|
+ */
|
|
|
+class Member1 extends Controller
|
|
|
+{
|
|
|
+ /**
|
|
|
+ * 绑定数据表
|
|
|
+ * @var string
|
|
|
+ */
|
|
|
+ protected $table = 'q_user';
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 会员信息管理
|
|
|
+ * @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 index()
|
|
|
+ {
|
|
|
+ $this->title = '会员信息管理';
|
|
|
+ $query = $this->_query($this->table)->like('phone')->equal('status,type');
|
|
|
+ if (isset($_GET['keyword']) && $_GET['keyword']){
|
|
|
+ $query->where('id|nickname','like','%'.$_GET['keyword'].'%');
|
|
|
+ }
|
|
|
+ $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()) {
|
|
|
+ $money_log = Db::name('q_user_money_log')->where('user_id',$data['id'])->order('id desc')->select();
|
|
|
+ $data['money_log'] = $money_log;
|
|
|
+
|
|
|
+
|
|
|
+ //设计分类
|
|
|
+ $designclassifi = Config::get_values('designclassifi');
|
|
|
+ $data['designclassifi_list'] = explode(',',$designclassifi);
|
|
|
+
|
|
|
+ //技能标签
|
|
|
+ $skillslabel_list = explode(',',Config::get_values('skillslabel'));
|
|
|
+ $skills_label = explode(',',$data['skills_label']);
|
|
|
+ $label_list = array_unique(array_merge($skillslabel_list,$skills_label));
|
|
|
+ $labellists = array();
|
|
|
+ foreach ($label_list as $k=>$v){
|
|
|
+ if ($skills_label){
|
|
|
+ foreach ($skills_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->skills_label = $labellists;
|
|
|
+
|
|
|
+ //擅长类型
|
|
|
+ $goodtype_list = explode(',',Config::get_values('goodtype'));
|
|
|
+ $goodtype_label = explode(',',$data['good_type']);
|
|
|
+ $good_type_list = array_unique(array_merge($goodtype_list,$goodtype_label));
|
|
|
+ $labellistss = array();
|
|
|
+ foreach ($good_type_list as $k=>$v){
|
|
|
+ if ($goodtype_label){
|
|
|
+ foreach ($goodtype_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($labellistss,$labellist);
|
|
|
+ }
|
|
|
+ $this->good_type_label = $labellistss;
|
|
|
+
|
|
|
+ //擅长风格
|
|
|
+ $goodstyle_list = explode(',',Config::get_values('goodstyle'));
|
|
|
+ $good_style_label = explode(',',$data['good_style']);
|
|
|
+ $goodstyle_list = array_unique(array_merge($goodstyle_list,$good_style_label));
|
|
|
+ $labellistsss = array();
|
|
|
+ foreach ($goodstyle_list as $k=>$v){
|
|
|
+ if ($good_style_label){
|
|
|
+ foreach ($good_style_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($labellistsss,$labellist);
|
|
|
+ }
|
|
|
+ $this->good_style_label = $labellistsss;
|
|
|
+
|
|
|
+ $this->data = $data;
|
|
|
+ //省
|
|
|
+ $province = Db::name('q_area')->where('level',1)->select();
|
|
|
+ $this->province = $province;
|
|
|
+ //市
|
|
|
+ $pid = Db::name('q_area')->where('name',$data['province'])->value('id');
|
|
|
+ $city = Db::name('q_area')->where('level',2)->where('pid',$pid)->select();
|
|
|
+ $this->city = $city;
|
|
|
+ //区
|
|
|
+ $pid2 = Db::name('q_area')->where('name',$data['city'])->value('id');
|
|
|
+ $area = Db::name('q_area')->where('level',3)->where('pid',$pid2)->select();
|
|
|
+ $this->area = $area;
|
|
|
+ }elseif ($this->request->isPost()) {
|
|
|
+
|
|
|
+ if (isset($data['province'])){
|
|
|
+ $data['province'] = Db::name('q_area')->where('id',$data['province'])->value('name');
|
|
|
+ }
|
|
|
+ if (isset($data['city'])){
|
|
|
+ $data['city'] = Db::name('q_area')->where('id',$data['city'])->value('name');
|
|
|
+ }
|
|
|
+ if (isset($data['area'])){
|
|
|
+ $data['area'] = Db::name('q_area')->where('id',$data['area'])->value('name');
|
|
|
+ }
|
|
|
+ if (isset($data['skills_label'])){
|
|
|
+ $data['skills_label'] = implode(',',$data['skills_label']);
|
|
|
+ }
|
|
|
+ if (isset($data['good_type'])){
|
|
|
+ $data['good_type'] = implode(',',$data['good_type']);
|
|
|
+ }
|
|
|
+ if (isset($data['good_style'])){
|
|
|
+ $data['good_style'] = implode(',',$data['good_style']);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (isset($data['zheng'])){
|
|
|
+ $data['identity_card_zheng'] = $data['zheng'];
|
|
|
+ unset($data['zheng']);
|
|
|
+ }
|
|
|
+ if (isset($data['fan'])){
|
|
|
+ $data['identity_card_fan'] = $data['fan'];
|
|
|
+ unset($data['fan']);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 会员详情
|
|
|
+ * @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');
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取市
|
|
|
+ */
|
|
|
+ public function get_city(){
|
|
|
+ $id = $this->app->request->get('id');
|
|
|
+ $city_list = Db::name('q_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('q_area')->where('pid',$id)->where('level',3)->select();
|
|
|
+ $this->success('成功',$area_list);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 编辑信息
|
|
|
+ * @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 edit_price()
|
|
|
+ {
|
|
|
+ $id = $this->app->request->get('id');
|
|
|
+ $this->assign('id',$id);
|
|
|
+ $price = $this->app->request->get('price');
|
|
|
+ $this->assign('price',$price);
|
|
|
+ $post = $this->app->request->post();
|
|
|
+ if (isset($post['id']) && $post['id']){
|
|
|
+ Db::name($this->table)->where('id',$post['id'])->update(['price'=>$post['price']]);
|
|
|
+ $this->success('设置成功!');
|
|
|
+ }else{
|
|
|
+ $this->fetch('form2');
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新设计师收益百分比
|
|
|
+ * @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 earnings_ratio()
|
|
|
+ {
|
|
|
+ $id = $this->app->request->get('id');
|
|
|
+ $this->assign('id',$id);
|
|
|
+ $price = $this->app->request->get('earnings_ratio');
|
|
|
+ $this->assign('price',$price);
|
|
|
+ $post = $this->app->request->post();
|
|
|
+ if (isset($post['id']) && $post['id']){
|
|
|
+ Db::name($this->table)->where('id',$post['id'])->update(['earnings_ratio'=>$post['price']]);
|
|
|
+ $this->success('设置成功!');
|
|
|
+ }else{
|
|
|
+ $this->fetch('form3');
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新用户余额
|
|
|
+ * @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($this->table)->where('id',$post['id'])->find();
|
|
|
+ $pm = $post['money']>0 ? 1 : 0;
|
|
|
+ $title = $post['money']>0 ? '系统增加' : '系统减少';
|
|
|
+ $money = str_replace("-", "", $post['money']);
|
|
|
+ if ($post['money']<0){
|
|
|
+ if ($money>$user['money']){
|
|
|
+ $this->error('金额超出范围!');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ User::money($money,$post['id'],$title,$pm);
|
|
|
+ $this->success('编辑成功!');
|
|
|
+ }else{
|
|
|
+ $this->fetch('form');
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 禁用用户
|
|
|
+ * @auth true
|
|
|
+ * @throws \think\Exception
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
+ */
|
|
|
+ public function 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 del()
|
|
|
+ {
|
|
|
+ $this->_save($this->table, ['is_del' => '0']);
|
|
|
+ }
|
|
|
+}
|