Member.php 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. use think\Db;
  17. use think\Exception;
  18. /**
  19. * 会员信息管理
  20. * Class Member
  21. * @package app\store\controller
  22. */
  23. class Member extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. protected $table = 'StoreMember';
  30. /**
  31. * 会员信息管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '会员信息管理';
  43. $input = input();
  44. $where = [];
  45. if(isset($input['city_id'])) {
  46. if ($input['city_id'] != 0) {
  47. $where[] = ['city_id', '=', $input['city_id']];
  48. }
  49. }
  50. if(isset($input['area_id'])) {
  51. if ($input['area_id'] != 0) {
  52. $where[] = ['area_id', '=', $input['area_id']];
  53. }
  54. }
  55. if(isset($input['sex'])) {
  56. if ($input['sex'] != 0) {
  57. $where[] = ['sex', '=', $input['sex']];
  58. }
  59. }
  60. if(isset($input['education'])) {
  61. if ($input['education'] != '不限') {
  62. $where[] = ['education', '=', $input['education']];
  63. }
  64. }
  65. if(isset($input['nature'])) {
  66. if ($input['nature'] != 0) {
  67. $where[] = ['nature', '=', $input['nature']];
  68. }
  69. }
  70. if(isset($input['status'])) {
  71. if ($input['status'] != 0) {
  72. $where[] = ['status', '=', $input['status']];
  73. }
  74. }
  75. if(isset($input['vip_level'])) {
  76. if ($input['vip_level'] != '') {
  77. $where[] = ['vip_level', '=', $input['vip_level']];
  78. }
  79. }
  80. $query = $this->_query($this->table)->like('nickname,phone,age')->where($where);
  81. if(!empty($input['type']) && $input['type'] == 2 && (!empty($input['sex']) || !empty($input['nature']) || !empty($input['city_id']) || !empty($input['area_id']) || !empty($input['age']))){
  82. if(isset($input['sex']) && !empty($input['sex']))$condition['sex'] = $input['sex'];
  83. if(isset($input['nature']) && !empty($input['nature']))$condition['nature'] = $input['nature'];
  84. if(isset($input['city_id']) && !empty($input['city_id']))$condition['city_id'] = $input['city_id'];
  85. if(isset($input['area_id']) && !empty($input['area_id']))$condition['area_id'] = $input['area_id'];
  86. if(isset($input['age']) && !empty($input['age']))$condition['age'] = $input['age'];
  87. $result = [];
  88. $data = Db::name('StoreMember')
  89. ->where($condition)
  90. // ->where('id','<',20)
  91. // ->field('id,username,sex,age,height,phone,education,province_id,city_id,area_id,position,nature')
  92. ->field('id,username,sex,age,height,phone,education,position,nature')
  93. ->cursor();
  94. foreach ($data as $value){
  95. // print_r($value);
  96. if($value['sex'] == 1){
  97. $value['sex'] = '男';
  98. }else{
  99. $value['sex'] = '女';
  100. }
  101. // $value['province_id'] = Db::name('store_area')->where('id',$value['province_id'])->value('name');
  102. // $value['city_id'] = Db::name('store_area')->where('id',$value['city_id'])->value('name');
  103. // $value['area_id'] = Db::name('store_area')->where('id',$value['area_id'])->value('name');
  104. // $fname=array("序号","姓名","性别","年龄","身高","手机号","学历","省","市","区","工作职业","工作性质");
  105. $fname=array("序号","姓名","性别","年龄","身高","手机号","学历","工作职业","工作性质");
  106. $value = array_combine($fname,$value);
  107. array_push($result,$value);
  108. }
  109. $field =[
  110. 'A'=>['序号'],
  111. 'B'=>['姓名'],
  112. 'C'=>['性别'],
  113. 'D'=>['年龄'],
  114. 'E'=>['身高'],
  115. 'F'=>['手机号'],
  116. 'G'=>['学历'],
  117. // 'H'=>['省'],
  118. // 'I'=>['市'],
  119. // 'J'=>['区'],
  120. 'K'=>['工作职业'],
  121. 'L'=>['工作性质']
  122. ];
  123. phpExcelListNew($field,$result);
  124. }
  125. $query->dateBetween('create_at')->order('id desc')->page();
  126. }
  127. /**
  128. * 数据列表处理
  129. * @auth true
  130. * @menu true
  131. * @param array $data
  132. * @throws \think\db\exception\DataNotFoundException
  133. * @throws \think\db\exception\ModelNotFoundException
  134. * @throws \think\exception\DbException
  135. */
  136. protected function _index_page_filter(&$data)
  137. {
  138. $nature = Db::name('store_work_nature')->where('is_deleted', 0)->column('name', 'id');
  139. $province = ['' => '全部'] + db('store_area')->where('level',1)->column('name', 'id');
  140. $category_one = db('store_area')->where('id', 1479)->select();
  141. $category_two = db('store_area')->where('pid', 1479)->select();
  142. $this->fetch('index',['province'=>$province,'list'=>$data,
  143. 'pro' => $category_one,
  144. 'xian' => $category_two,
  145. 'nature'=>$nature]);
  146. }
  147. public function detail(){
  148. $id = input('id');
  149. $info =Db::name('store_member')->where('id',$id)->find();
  150. $one = Db::name('store_member_image')->where(array('type' => 1, 'mid' => $id))->field('show_image')->select();
  151. $two = Db::name('store_member_image')->where(array('type' => 2, 'mid' => $id))->field('show_image')->select();
  152. $info['one'] = $one;
  153. $info['two'] = $two;
  154. $info['danwei']=Db::name('store_company')->where('id',$info['working'])->value('name');
  155. $info['xingzhi']=Db::name('store_work_nature')->where('id',$info['nature'])->value('name');
  156. // print_r($info);die;
  157. $this->assign('info',$info);
  158. $this->fetch();
  159. }
  160. function getpor()
  161. {
  162. $id=input('id');//一级菜单的id
  163. $list=$this->get_address($id);
  164. return json_encode($list);
  165. }
  166. function get_address($id){
  167. $add = Db::name('store_area')->where('pid', $id)->select();
  168. return $add;
  169. }
  170. public function examine(){
  171. $id=input('id');
  172. Db::name('store_member')->where('id',$id)->update(['vip_level'=>1]);
  173. $this->success('已认证会员');
  174. }
  175. public function member_log(){
  176. $info =Db::name('store_member')->where('vip_level',3)->select();
  177. $this->assign('list',$info);
  178. $this->fetch();
  179. }
  180. public function member_delete()
  181. {
  182. $id = input('id');
  183. Db::startTrans();
  184. try {
  185. Db::name('store_member')->where('id',$id)->delete();
  186. Db::name('store_member_basic')->where('mid',$id)->delete();
  187. Db::name('store_examine')->where('mid',$id)->delete();
  188. Db::name('store_member_interested')->where('i_id',$id)->delete();
  189. Db::name('store_member_follow')->where('fid',$id)->delete();
  190. Db::commit();
  191. $this->success('会员删除成功');
  192. }catch (Exception $e){
  193. Db::rollback();
  194. $this->error('会员删除出问题了');
  195. }
  196. }
  197. /**
  198. * 编辑会员
  199. * @auth true
  200. * @menu true
  201. * @throws \think\Exception
  202. * @throws \think\db\exception\DataNotFoundException
  203. * @throws \think\db\exception\ModelNotFoundException
  204. * @throws \think\exception\DbException
  205. * @throws \think\exception\PDOException
  206. */
  207. function edit()
  208. {
  209. $this->_form($this->table, 'form');
  210. }
  211. /**
  212. * 表单数据处理
  213. * @auth true
  214. * @menu true
  215. * @param array $data
  216. */
  217. protected function _form_filter(&$data)
  218. {
  219. if ($this->request->isPost()) {
  220. if(empty(input('province_id')) || empty(input('city_id')) || empty(input('area_id')))$this->error(input('area_id'));
  221. } else {
  222. $province_id = db('store_area')->where('level',1)->select();
  223. $city_id = db('store_area')->where('level',2)->where('pid',$data['province_id'])->select();
  224. $area_id = db('store_area')->where('level',3)->where('pid',$data['city_id'])->select();
  225. $this->assign('province_id',$province_id);
  226. $this->assign('city_id',$city_id);
  227. $this->assign('area_id',$area_id);
  228. }
  229. }
  230. }