Browse Source

管理后台首页数据男女统计只统计注册认证审核通过的
管理后台个人信息位置编辑功能
管理后台活动设置-学历多选的形式
首页-精准匹配中学历、工作性质、现住地等各选项增加“不限”选项。
个人中心-择偶标准-学历增加“不限”
精准配对和收入分为四个档位 (3000-6000,6000-10000,1万以上,不限)
精准匹配改为模糊匹配(匹配字段从高递减)
用户评论成功后需要后台审核,审核通过后才能在小程序端显示
根据多条件筛选(性别,年龄,居住地,工作性质,身高,学历,籍贯,现居地,单位,工作性质,电话

qifengquan 1 year ago
parent
commit
5c25c90e4a

+ 19 - 18
application/common.php

@@ -9,24 +9,25 @@ use OSS\OssClient;
  */
  */
 function phpExcelListNew($field = [], $list = [], $title = '文件')
 function phpExcelListNew($field = [], $list = [], $title = '文件')
 {
 {
-    $PHPExcel = new \PHPExcel();
-    $PHPSheet = $PHPExcel->getActiveSheet();
-    $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
-    foreach ($list as $key => $value) {
-        foreach ($field as $k => $v) {
-            if ($key == 0) {
-                $PHPSheet = $PHPExcel->getActiveSheet()->setCellValue($k . '1', $v[1]);
-            }
-            $i = $key + 2;
-            $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
+        $PHPExcel = new \PHPExcel();
+        $PHPSheet = $PHPExcel->getActiveSheet();
+        $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
+        foreach ($list as $key => $value) {
+            foreach ($field as $k => $v) {
+                if ($key == 0) {
+                    $PHPSheet = $PHPExcel->getActiveSheet()->setCellValue($k . '1', $v[0]);
+                }
+                $i = $key + 2;
+                $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
 
 
+            }
         }
         }
-    }
-    $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel, 'Excel2007'); //按照指定格式生成Excel文件,
-    header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
-    header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
-    header('Cache-Control: max-age=0'); //禁止缓存
-    $PHPWriter->save("php://output"); //输出到浏览器
+        $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel, 'Excel2007'); //按照指定格式生成Excel文件,
+        header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
+        header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
+        header('Cache-Control: max-age=0'); //禁止缓存
+        $PHPWriter->save("php://output"); //输出到浏览器
+
 }
 }
 
 
 /*
 /*
@@ -279,11 +280,11 @@ function education($education){
     }
     }
     if($education=='大专')
     if($education=='大专')
     {
     {
-        $data =array('大专','本科','研究生','博士');
+        $data =array('高中','大专','本科','研究生','硕士','博士');
     }
     }
     if($education=='本科')
     if($education=='本科')
     {
     {
-        $data =array('本科','研究生','博士');
+        $data =array('大专','本科','研究生','博士');
     }
     }
     if($education=='研究生')
     if($education=='研究生')
     {
     {

+ 28 - 1
application/store/controller/Activity.php

@@ -89,7 +89,6 @@ class Activity extends Controller
      */
      */
     function edit()
     function edit()
     {
     {
-
         $this->_form($this->table, 'form');
         $this->_form($this->table, 'form');
     }
     }
 
 
@@ -143,6 +142,34 @@ class Activity extends Controller
                 }
                 }
             }
             }
             $data['nature'] = implode(',',$nuture);
             $data['nature'] = implode(',',$nuture);
+            $education = [];
+            if(isset($data['education']) && !empty($data['education'])){
+                foreach ($data['education'] as $key=>$value){
+                    if($value){
+                        switch ($key){
+                            case 1:
+                                $education[] = '高中';
+                                break;
+                            case 2:
+                                $education[] = '大专';
+                                break;
+                            case 3:
+                                $education[] = '本科';
+                                break;
+                            case 4:
+                                $education[] = '研究生';
+                                break;
+                            case 5:
+                                $education[] = '硕士';
+                                break;
+                            case 6:
+                                $education[] = '博士';
+                        }
+
+                    }
+                }
+            }
+            $data['education'] = implode(',',$education);
             if(empty($data['id'])) {
             if(empty($data['id'])) {
                 $data['status']=1;
                 $data['status']=1;
                 $data['create_at'] = date('Y-m-d H:i:s');
                 $data['create_at'] = date('Y-m-d H:i:s');

+ 90 - 0
application/store/controller/ArticleComment.php

@@ -0,0 +1,90 @@
+<?php
+
+namespace app\store\controller;
+
+use library\Controller;
+use think\Db;
+
+/**
+ * 评论审核
+ * Class Auth
+ * @package app\store\controller
+ */
+class ArticleComment extends Controller
+{
+    /**
+     * 绑定数据表
+     * @var string
+     */
+    protected $table = 'store_article_comment';
+
+    /**
+     * 评论审核
+     * @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);
+        $query->dateBetween('create_time')->order('id desc')->page();
+    }
+    /**
+     * 数据列表处理
+     * @auth true
+     * @menu true
+     * @param array $data
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     */
+    protected function _index_page_filter(&$data)
+    {
+        foreach ($data as &$v){
+            if(!$v['username'] = Db::name('store_member')->where('id',$v['zid'])->value('username')){
+                $v['username'] = Db::name('store_member')->where('id',$v['uid'])->value('username');
+            }
+            $v['article_title'] = Db::name('store_article')->where('id',$v['articleid'])->value('title');
+
+        }
+
+    }
+
+    /**
+     * 表单数据处理
+     * @auth true
+     * @menu true
+     * @param array $data
+     */
+    public function audit()
+    {
+        $this->_save($this->table, ['audit' => '1','check_time'=>date('Y-m-d H:i:s')]);
+    }
+    /**
+     * 表单数据处理
+     * @auth true
+     * @menu true
+     * @param array $data
+     */
+    public function refuse()
+    {
+        $this->_save($this->table, ['audit' => '2','check_time'=>date('Y-m-d H:i:s')]);
+    }
+    /**
+     * 表单数据处理
+     * @auth true
+     * @menu true
+     * @param array $data
+     */
+    protected function _form_filter(&$data)
+    {
+        if ($this->request->isPost()) {
+            $data['check_time']=date('Y-m-d H:i:s');
+        }
+    }
+}

+ 90 - 1
application/store/controller/Member.php

@@ -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);
+        }
+    }
+
 
 
 
 
 }
 }

+ 6 - 5
application/store/view/activity/form.html

@@ -82,24 +82,25 @@
         <div class="layui-form-item">
         <div class="layui-form-item">
             <label class="layui-form-label">学历</label>
             <label class="layui-form-label">学历</label>
             <div class="layui-input-block">
             <div class="layui-input-block">
-                <select class="layui-select" name="education">
+<!--                <select class="layui-select" name="education">
                     {foreach ['0'=>'不限','1'=>'高中','2'=>'大专','3'=>'本科','4'=>'研究生','5'=>'博士'] as $k=>$v}
                     {foreach ['0'=>'不限','1'=>'高中','2'=>'大专','3'=>'本科','4'=>'研究生','5'=>'博士'] as $k=>$v}
                     {if isset($vo.education)&&$vo.education==$v}
                     {if isset($vo.education)&&$vo.education==$v}
                     <option selected value="{$vo.education}">{$vo.education|default=''}</option>
                     <option selected value="{$vo.education}">{$vo.education|default=''}</option>
                     {else}
                     {else}
                     <option value="{$v}">{$v}</option>
                     <option value="{$v}">{$v}</option>
                     {/if}
                     {/if}
-
                     {/foreach}
                     {/foreach}
-                </select>
+                </select>-->
+                    {foreach ['1'=>'高中','2'=>'大专','3'=>'本科','4'=>'研究生','5'=>'硕士','6'=>'博士'] as $key=>$value}
+                    <input type="checkbox" name="education[{$key}]" title="{$value}" {if isset($vo.education)&&$vo.education==$value} checked="checked" {/if}>
+                    {/foreach}
             </div>
             </div>
         </div>
         </div>
         <div class="layui-form-item">
         <div class="layui-form-item">
             <label class="layui-form-label">工作性质</label>
             <label class="layui-form-label">工作性质</label>
             <div class="layui-input-block" style="margin-left:10px;">
             <div class="layui-input-block" style="margin-left:10px;">
                 {foreach $nature as $key=>$value}
                 {foreach $nature as $key=>$value}
-                <input type="checkbox" name="nature[{$key}]" title="{$value}" {if isset($naturearr) &&
-                       in_array($key,$naturearr)} checked="checked" {/if}>
+                <input type="checkbox" name="nature[{$key}]" title="{$value}" {if isset($naturearr) && in_array($key,$naturearr)} checked="checked" {/if}>
                 {/foreach}
                 {/foreach}
             </div>
             </div>
 
 

+ 73 - 0
application/store/view/article_comment/index.html

@@ -0,0 +1,73 @@
+{extend name='admin@main'}
+
+{block name="content"}
+<div class="think-box-shadow">
+<!--    {include file='examine/index_search'}-->
+    <table class="layui-table margin-top-10" lay-skin="line">
+        {notempty name='list'}
+        <thead>
+        <tr>
+            <th class='list-table-check-td think-checkbox'>
+                <input data-auto-none data-check-target='.list-check-box' type='checkbox'>
+            </th>
+            <th class='text-left nowrap'>序号</th>
+            <th class='text-left nowrap'>姓名</th>
+            <th class='text-left nowrap'>评论文章</th>
+            <th class='text-left nowrap'>评论内容</th>
+            <th class='text-left nowrap'>提交时间</th>
+            <th class='text-left nowrap'>审核时间</th>
+            <th class='text-left nowrap'>操作</th>
+
+        </tr>
+        </thead>
+        {/notempty}
+        <tbody>
+        {foreach $list as $key=>$vo}
+        <tr>
+            <td class='list-table-check-td think-checkbox'>
+                <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
+            </td>
+            <td class='list-table-check-td think-checkbox'>
+                <div class="inline-block">{$vo.id|default='--'}</div>
+            </td>
+
+            <td class='text-left nowrap'>
+                <div class="inline-block">{$vo.username|default='--'}</div>
+            </td>
+            <td class='text-left'>{$vo.article_title|default='--'}</td>
+
+<!--            <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.c_show_image|default=''}" class="margin-right-5"></td>-->
+<!--            <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.n_show_image|default=''}" class="margin-right-5"></td>-->
+<!--            <td> <img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.image|default=''}" class="margin-right-5"></td>-->
+
+            <td class='text-left'>{$vo.content}</td>
+            <td class='text-left'>{$vo.create_time|format_datetime}</td>
+
+            {if $vo.audit==0}
+            <td class='text-left'>待审核</td>
+            {else}
+            <td class='text-left'>{$vo.check_time|format_datetime}</td>
+            {/if}
+
+            <td class='text-left'>
+                {if $vo.audit==0}
+                <a data-dbclick data-title="通过" class="layui-btn layui-btn-xs"  data-action="{:url('audit')}" data-value="id#{$vo.id}">通 过</a>
+                <a data-dbclick data-title="拒绝" class="layui-btn layui-btn-xs layui-btn-danger"  data-action="{:url('refuse')}" data-value="id#{$vo.id}">拒 绝</a>
+                {/if}
+                {if $vo.audit==1}
+                已通过
+                {/if}
+                {if $vo.audit==2}
+                已拒绝
+                {/if}
+
+            </td>
+
+
+        </tr>
+        {/foreach}
+        </tbody>
+    </table>
+    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
+</div>
+{/block}

+ 174 - 0
application/store/view/member/form.html

@@ -0,0 +1,174 @@
+<form onsubmit="return false;" action="{:request()->url()}" data-auto="true" method="post" class='layui-form layui-card' autocomplete="off" style="height: 400px">
+
+    <div class="layui-card-body">
+
+
+        <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">省</label>
+            <div class="layui-input-inline">
+                <select name="province_id" id="province_id" lay-filter="province">
+                    <option value="">请选择省</option>
+                    {foreach $province_id as $kc=>$vc}
+                        {if $vo['province_id'] == $vc.id}
+                            <option selected value="{$vc.id}">{$vc.name|default=''}</option>
+                        {else}
+                            <option value="{$vc.id}">{$vc.name}</option>
+                        {/if}
+                    {/foreach}
+                </select>
+            </div>
+        </div>
+
+
+
+
+        <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">市</label>
+            <div class="layui-input-inline">
+                <select name="city_id" id="city" lay-filter="city">
+                    <option value="">请选择市</option>
+                    {foreach $city_id as $kc=>$vc}
+                        {if $vo['city_id'] == $vc.id}
+                            <option selected value="{$vc.id}">{$vc.name|default=''}</option>
+                        {else}
+                            <option value="{$vc.id}">{$vc.name}</option>
+                        {/if}
+                    {/foreach}
+                </select>
+            </div>
+        </div>
+        <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">县/区</label>
+            <div class="layui-input-inline">
+                <select name="area_id" id="area" lay-filter="area">
+                    <option value="">请选择区</option>
+                    {foreach $area_id as $kc=>$vc}
+                        {if $vo['area_id'] == $vc.id}
+                            <option selected value="{$vc.id}">{$vc.name|default=''}</option>
+                        {else}
+                            <option value="{$vc.id}">{$vc.name}</option>
+                        {/if}
+                    {/foreach}
+                </select>
+            </div>
+        </div>
+    </div>
+
+    <div class="hr-line-dashed"></div>
+    {notempty name='vo.id'}<input type='hidden' value='{$vo.id}' name='id'>{/notempty}
+
+    <div class="layui-form-item text-center">
+        <button class="layui-btn" type='submit'>保存数据</button>
+        <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消编辑吗?" data-close>取消编辑</button>
+    </div>
+
+</form>
+<script type="text/javascript">
+    //三级联动
+    layui.use(['form'],function(){
+        form.on('select(province)',function(re){
+            if(re.value != ''){
+                var option = '<option value="' + 0 + '">' + "请选择市"+ '</option>';
+                $.ajax({
+                    url: 'store/member/getpor',
+                    dataType: 'json',
+                    type: 'post',
+                    data:  'id='+re.value,
+                    success:function(o){
+                        var data = JSON.parse(o);
+                        // alert(re.value)
+                        $('#city').empty();
+                        $('#area').empty();
+                        $('#city').append(option);
+                        // $('#area').append(option);
+                        $.each(data, function(index, quiz1) {
+                            $('#city').append('<option value="' + quiz1.id + '">' + quiz1.name + '</option>');
+                        })
+                        form.render('select')
+                    },
+                    error:function(o){
+                        console.log(o);
+                    }
+                })
+            }
+            else{
+                $('#city').empty();
+                $('#area').empty();
+                // $('#city').append(option);
+                // $('#addcheck').empty();
+                form.render();
+            }
+        });
+        form.on('select(city)',function(re){
+            var option1 = '';
+            if(re.value != ''){
+                var option1 = '<option value="' + 0 + '">' + "请选择县区"+ '</option>';
+                $.ajax({
+                    url:'store/member/getpor',
+                    dataType: 'json',
+                    type:'post',
+                    data:'id='+re.value,
+                    //问题是这里没获取到id.
+                    success:function(o){
+                        var data = JSON.parse(o);
+                        console.log(data);
+                        // alert(data)
+
+                        $('#area').empty();
+                        $('#area').append(option1);
+                        $.each(data,function(index,quiz1){
+                            $('#area').append('<option value="' + quiz1.id + '"  type="checkbox">' + quiz1.name + '</option>');
+
+                        });
+
+                        form.render()
+
+                    },
+                    error:function(o){
+
+                    }
+                })
+            }else{
+                $('#addcheck').empty();
+            }
+        });
+    });
+
+</script>
+<script>
+    window.form.render();
+    require(['ckeditor', 'angular'], function () {
+        window.createEditor('[name="content"]', {height: 150});
+    })
+</script>
+<script>
+    layui.form.render();
+    layui.use(['form', 'layedit', 'laydate'], function () {
+
+        var form = layui.form
+            , layer = layui.layer
+            , layedit = layui.layedit
+            , laydate = layui.laydate;
+        form.render();
+        laydate.render({
+            elem: '#av_statime'
+            , type: 'datetime'
+        });
+
+
+        //日期
+        laydate.render({
+            elem: '#av_endtime'
+            , type: 'datetime'
+        });
+        laydate.render({
+            elem: '#sig_statime'
+            , type: 'datetime'
+        });
+        laydate.render({
+            elem: '#sig_endtime'
+            , type: 'datetime'
+        });
+    });
+
+</script>

+ 5 - 1
application/store/view/member/index.html

@@ -1,6 +1,7 @@
 {extend name='admin@main'}
 {extend name='admin@main'}
 
 
 {block name="content"}
 {block name="content"}
+
 <div class="think-box-shadow">
 <div class="think-box-shadow">
     {include file='member/index_search'}
     {include file='member/index_search'}
     <table class="layui-table margin-top-10" lay-skin="line">
     <table class="layui-table margin-top-10" lay-skin="line">
@@ -29,7 +30,7 @@
                 {/notempty}
                 {/notempty}
                 <div class="inline-block">{$vo.nickname|default='--'}</div>
                 <div class="inline-block">{$vo.nickname|default='--'}</div>
             </td>
             </td>
-            <td class='text-left'>
+            <td class='text-left sex'>
                 {if $vo.sex eq 1} 男
                 {if $vo.sex eq 1} 男
                 {elseif $vo.sex eq 2} 女
                 {elseif $vo.sex eq 2} 女
                 {/if}
                 {/if}
@@ -47,6 +48,9 @@
             <td class='text-left'>
             <td class='text-left'>
                 <a class="layui-btn layui-btn-xs layui-btn-danger" data-confirm="确定要删除该会员账号?" data-action="{:url('member_delete')}" data-value="id#{$vo.id}">删除会员</a>
                 <a class="layui-btn layui-btn-xs layui-btn-danger" data-confirm="确定要删除该会员账号?" data-action="{:url('member_delete')}" data-value="id#{$vo.id}">删除会员</a>
                 <a data-title="个人信息" class="layui-btn layui-btn-xs" data-open='{:url("detail")}?id={$vo.id}'>个人信息</a>
                 <a data-title="个人信息" class="layui-btn layui-btn-xs" data-open='{:url("detail")}?id={$vo.id}'>个人信息</a>
+                {if auth("store/member/edit")}
+                <a data-dbclick data-title="编辑" class="layui-btn layui-btn-xs" data-modal='{:url("edit")}?id={$vo.id}'>编 辑</a>
+                {/if}
                 {if $vo.vip_level==0}
                 {if $vo.vip_level==0}
                 <a class="layui-btn layui-btn-xs layui-btn-danger" data-confirm="确定要直接认证该会员账号?" data-action="{:url('examine')}" data-value="id#{$vo.id}">认证会员</a>
                 <a class="layui-btn layui-btn-xs layui-btn-danger" data-confirm="确定要直接认证该会员账号?" data-action="{:url('examine')}" data-value="id#{$vo.id}">认证会员</a>
                 {/if}
                 {/if}

+ 21 - 3
application/store/view/member/index_search.html

@@ -8,6 +8,12 @@
             </div>
             </div>
         </div>
         </div>
         <div class="layui-form-item layui-inline">
         <div class="layui-form-item layui-inline">
+            <label class="layui-form-label">会员年龄</label>
+            <div class="layui-input-inline">
+                <input name="age" value="{$Think.get.age|default=''}" placeholder="请输入年龄" class="layui-input">
+            </div>
+        </div>
+        <div class="layui-form-item layui-inline">
             <label class="layui-form-label">会员手机</label>
             <label class="layui-form-label">会员手机</label>
             <div class="layui-input-inline">
             <div class="layui-input-inline">
                 <input name="phone" value="{$Think.get.phone|default=''}" placeholder="请输入会员手机" class="layui-input">
                 <input name="phone" value="{$Think.get.phone|default=''}" placeholder="请输入会员手机" class="layui-input">
@@ -113,7 +119,8 @@
                     {/foreach}
                     {/foreach}
                 </select>
                 </select>
             </div>
             </div>
-        </div>        <div class="layui-form-item layui-inline">
+        </div>
+        <div class="layui-form-item layui-inline">
             <label class="layui-form-label">注册时间</label>
             <label class="layui-form-label">注册时间</label>
             <div class="layui-input-inline">
             <div class="layui-input-inline">
                 <input name="create_at" value="{$Think.get.create_at|default=''}" placeholder="请选择发送时间" class="layui-input">
                 <input name="create_at" value="{$Think.get.create_at|default=''}" placeholder="请选择发送时间" class="layui-input">
@@ -121,10 +128,22 @@
         </div>
         </div>
         <div class="layui-form-item layui-inline">
         <div class="layui-form-item layui-inline">
             <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
             <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
-            <button type="button" data-export-list class="layui-btn layui-btn-primary layui-hide"><i class="layui-icon layui-icon-export"></i> 导 出</button>
+            <button class="layui-btn layui-btn-primary" type="button">
+<!--                <a href="{:url('index')}?type=2&nature=1"><i class="layui-icon layui-icon-export"></i> 导 出</a>-->
+            <a href="{:request()->url()}&type=2"><i class="layui-icon layui-icon-export"></i> 导 出</a>
+            </button>
+
         </div>
         </div>
+<!--                <div class="layui-form-item layui-inline">-->
+<!--                    <button type="submit" class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>-->
+<!--                    <button type="button" data-form-export="{:url('index')}?type={$type|default=''}" class="layui-btn layui-btn-primary">-->
+<!--                        <i class="layui-icon layui-icon-export"></i> 导 出-->
+<!--                    </button>-->
+<!--                </div>-->
     </form>
     </form>
     <script>
     <script>
+    </script>
+    <script>
         form.render();
         form.render();
         laydate.render({range: true, elem: '[name="create_at"]'})
         laydate.render({range: true, elem: '[name="create_at"]'})
     </script>
     </script>
@@ -132,7 +151,6 @@
         //三级联动
         //三级联动
         layui.use(['form'],function(){
         layui.use(['form'],function(){
             form.on('select(province_id)',function(re){
             form.on('select(province_id)',function(re){
-
                 if(re.value != ''){
                 if(re.value != ''){
                     var option = '<option value="' + 0 + '">' + "请选择市"+ '</option>';
                     var option = '<option value="' + 0 + '">' + "请选择市"+ '</option>';
                     $.ajax({
                     $.ajax({