|
@@ -44,8 +44,10 @@ class Member extends Controller
|
|
*/
|
|
*/
|
|
public function index()
|
|
public function index()
|
|
{
|
|
{
|
|
|
|
+
|
|
$this->title = '会员信息管理';
|
|
$this->title = '会员信息管理';
|
|
$input = input();
|
|
$input = input();
|
|
|
|
+
|
|
$where = [];
|
|
$where = [];
|
|
if(isset($input['city_id'])) {
|
|
if(isset($input['city_id'])) {
|
|
if ($input['city_id'] != 0) {
|
|
if ($input['city_id'] != 0) {
|
|
@@ -82,8 +84,58 @@ class Member extends Controller
|
|
$where[] = ['vip_level', '=', $input['vip_level']];
|
|
$where[] = ['vip_level', '=', $input['vip_level']];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- $query = $this->_query($this->table)->like('nickname,phone')->where($where);
|
|
|
|
|
|
+
|
|
|
|
+ $query = $this->_query($this->table)->like('nickname,phone,age')->where($where);
|
|
|
|
+
|
|
|
|
+ if(!empty($input['type']) && $input['type'] == 2 && (!empty($input['sex']) || !empty($input['nature']) || !empty($input['city_id']) || !empty($input['area_id']) || !empty($input['age']))){
|
|
|
|
+ if(isset($input['sex']) && !empty($input['sex']))$condition['sex'] = $input['sex'];
|
|
|
|
+ if(isset($input['nature']) && !empty($input['nature']))$condition['nature'] = $input['nature'];
|
|
|
|
+ if(isset($input['city_id']) && !empty($input['city_id']))$condition['city_id'] = $input['city_id'];
|
|
|
|
+ if(isset($input['area_id']) && !empty($input['area_id']))$condition['area_id'] = $input['area_id'];
|
|
|
|
+ if(isset($input['age']) && !empty($input['age']))$condition['age'] = $input['age'];
|
|
|
|
+ $result = [];
|
|
|
|
+
|
|
|
|
+ $data = Db::name('StoreMember')
|
|
|
|
+ ->where($condition)
|
|
|
|
+// ->where('id','<',20)
|
|
|
|
+// ->field('id,username,sex,age,height,phone,education,province_id,city_id,area_id,position,nature')
|
|
|
|
+ ->field('id,username,sex,age,height,phone,education,position,nature')
|
|
|
|
+ ->cursor();
|
|
|
|
+ foreach ($data as $value){
|
|
|
|
+// print_r($value);
|
|
|
|
+
|
|
|
|
+ if($value['sex'] == 1){
|
|
|
|
+ $value['sex'] = '男';
|
|
|
|
+ }else{
|
|
|
|
+ $value['sex'] = '女';
|
|
|
|
+ }
|
|
|
|
+// $value['province_id'] = Db::name('store_area')->where('id',$value['province_id'])->value('name');
|
|
|
|
+// $value['city_id'] = Db::name('store_area')->where('id',$value['city_id'])->value('name');
|
|
|
|
+// $value['area_id'] = Db::name('store_area')->where('id',$value['area_id'])->value('name');
|
|
|
|
+// $fname=array("序号","姓名","性别","年龄","身高","手机号","学历","省","市","区","工作职业","工作性质");
|
|
|
|
+ $fname=array("序号","姓名","性别","年龄","身高","手机号","学历","工作职业","工作性质");
|
|
|
|
+ $value = array_combine($fname,$value);
|
|
|
|
+ array_push($result,$value);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $field =[
|
|
|
|
+ 'A'=>['序号'],
|
|
|
|
+ 'B'=>['姓名'],
|
|
|
|
+ 'C'=>['性别'],
|
|
|
|
+ 'D'=>['年龄'],
|
|
|
|
+ 'E'=>['身高'],
|
|
|
|
+ 'F'=>['手机号'],
|
|
|
|
+ 'G'=>['学历'],
|
|
|
|
+// 'H'=>['省'],
|
|
|
|
+// 'I'=>['市'],
|
|
|
|
+// 'J'=>['区'],
|
|
|
|
+ 'K'=>['工作职业'],
|
|
|
|
+ 'L'=>['工作性质']
|
|
|
|
+ ];
|
|
|
|
+ phpExcelListNew($field,$result);
|
|
|
|
+ }
|
|
$query->dateBetween('create_at')->order('id desc')->page();
|
|
$query->dateBetween('create_at')->order('id desc')->page();
|
|
|
|
+
|
|
}
|
|
}
|
|
/**
|
|
/**
|
|
* 数据列表处理
|
|
* 数据列表处理
|
|
@@ -162,6 +214,43 @@ class Member extends Controller
|
|
$this->error('会员删除出问题了');
|
|
$this->error('会员删除出问题了');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ /**
|
|
|
|
+ * 编辑会员
|
|
|
|
+ * @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
|
|
|
|
+ */
|
|
|
|
+ function edit()
|
|
|
|
+ {
|
|
|
|
+ $this->_form($this->table, 'form');
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
|
|
+ * 表单数据处理
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @param array $data
|
|
|
|
+ */
|
|
|
|
+ protected function _form_filter(&$data)
|
|
|
|
+ {
|
|
|
|
+ if ($this->request->isPost()) {
|
|
|
|
+ if(empty(input('province_id')) || empty(input('city_id')) || empty(input('area_id')))$this->error(input('area_id'));
|
|
|
|
+ } else {
|
|
|
|
+ $province_id = db('store_area')->where('level',1)->select();
|
|
|
|
+ $city_id = db('store_area')->where('level',2)->where('pid',$data['province_id'])->select();
|
|
|
|
+ $area_id = db('store_area')->where('level',3)->where('pid',$data['city_id'])->select();
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ $this->assign('province_id',$province_id);
|
|
|
|
+ $this->assign('city_id',$city_id);
|
|
|
|
+ $this->assign('area_id',$area_id);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|