|
@@ -0,0 +1,180 @@
|
|
|
+{extend name="public/container"}
|
|
|
+{block name="content"}
|
|
|
+<div class="layui-fluid">
|
|
|
+ <div class="layui-row layui-col-space15" id="app">
|
|
|
+ <div class="layui-col-md12">
|
|
|
+ <div class="layui-card">
|
|
|
+ <div class="layui-card-header">搜索条件</div>
|
|
|
+ <div class="layui-card-body">
|
|
|
+ <form class="layui-form layui-form-pane" action="">
|
|
|
+ <div class="layui-form-item">
|
|
|
+ <div class="layui-inline">
|
|
|
+ <label class="layui-form-label">审核状态</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <select name="is_show">
|
|
|
+ <option value="">审核状态</option>
|
|
|
+ <option value="1">已审核</option>
|
|
|
+ <option value="0">未审核</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-inline">
|
|
|
+ <label class="layui-form-label">认证姓名</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input type="text" name="title" class="layui-input" placeholder="请输入姓名">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-inline">
|
|
|
+ <div class="layui-input-inline">
|
|
|
+ <button class="layui-btn layui-btn-sm layui-btn-normal" lay-submit="search" lay-filter="search">
|
|
|
+ <i class="layui-icon layui-icon-search"></i>搜索</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!--产品列表-->
|
|
|
+ <div class="layui-col-md12">
|
|
|
+ <div class="layui-card">
|
|
|
+ <div class="layui-card-header">审核列表</div>
|
|
|
+ <div class="layui-card-body">
|
|
|
+ <table class="layui-hide" id="List" lay-filter="List"></table>
|
|
|
+ <script type="text/html" id="icon">
|
|
|
+ <img style="cursor: pointer;max-width: 50px;" lay-event='open_image' src="{{d.cidimg}}">
|
|
|
+ </script>
|
|
|
+ <script type="text/html" id="act">
|
|
|
+ <button type="button" class="layui-btn layui-btn-xs" onclick="dropdown(this)">操作 <span class="caret"></span></button>
|
|
|
+ <ul class="layui-nav-child layui-anim layui-anim-upbit">
|
|
|
+ <li>
|
|
|
+ <a lay-event='pass' href="javascript:void(0)">
|
|
|
+ <i class="fa fa-check"></i>通过认证
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <a href="javascript:void(0)"onclick="$eb.createModalFrame(this.innerText,'{:Url(\'create\')}?uid={{d.uid}}')">
|
|
|
+ <i class="fa fa-times"></i>拒绝认证
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </script>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+<script src="{__ADMIN_PATH}js/layuiList.js"></script>
|
|
|
+{/block}
|
|
|
+{block name="script"}
|
|
|
+<script>
|
|
|
+ //实例化form
|
|
|
+ layList.form.render();
|
|
|
+ //加载列表
|
|
|
+ layList.tableList('List',"{:Url('get_system_user_list')}",function (){
|
|
|
+ return [
|
|
|
+ {field: 'uid', title: '编号', sort: true,event:'id',width:'6%',align:"center"},
|
|
|
+ {field: 'cidimg', title: '身份证图片',templet:'#icon',align:"center",width:'10%'},
|
|
|
+ {field: 'real_name', title: '姓名',edit:'real_name',width:'6%',align:"center"},
|
|
|
+ {field: 'card_id', title: '身份证号',align:"center"},
|
|
|
+ {field: 'is_auth', title: '认证状态',templet:'#is_auth',width:'8%',align:"center"},
|
|
|
+ {field: 'off', title: '理由',templet:'#off',width:'8%',align:"center"},
|
|
|
+ {field: 'right', title: '操作',align:'center',toolbar:'#act',width:'8%'},
|
|
|
+ ];
|
|
|
+ });
|
|
|
+ //自定义方法
|
|
|
+ var action= {
|
|
|
+ set_value: function (field, id, value) {
|
|
|
+ layList.baseGet(layList.Url({
|
|
|
+ a: 'set_value',
|
|
|
+ q: {field: field, id: id, value: value}
|
|
|
+ }), function (res) {
|
|
|
+ layList.msg(res.msg);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ }
|
|
|
+ //查询
|
|
|
+ layList.search('search',function(where){
|
|
|
+ layList.reload(where,true);
|
|
|
+ });
|
|
|
+ layList.switch('is_show',function (odj,value) {
|
|
|
+ if(odj.elem.checked==true){
|
|
|
+ layList.baseGet(layList.Url({a:'set_show',p:{is_show:1,id:value}}),function (res) {
|
|
|
+ layList.msg(res.msg);
|
|
|
+ });
|
|
|
+ }else{
|
|
|
+ layList.baseGet(layList.Url({a:'set_show',p:{is_show:0,id:value}}),function (res) {
|
|
|
+ layList.msg(res.msg);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ //快速编辑
|
|
|
+ layList.edit(function (obj) {
|
|
|
+ var id=obj.data.id,value=obj.value;
|
|
|
+ switch (obj.field) {
|
|
|
+ case 'name':
|
|
|
+ action.set_value('name',id,value);
|
|
|
+ break;
|
|
|
+ case 'grade':
|
|
|
+ action.set_value('grade',id,value);
|
|
|
+ break;
|
|
|
+ case 'discount':
|
|
|
+ action.set_value('discount',id,value);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ //监听并执行排序
|
|
|
+ layList.sort(['id','sort'],true);
|
|
|
+ //点击事件绑定
|
|
|
+ layList.tool(function (event,data,obj) {
|
|
|
+ switch (event) {
|
|
|
+ case 'pass':
|
|
|
+ var url=layList.U({a:'pass',q:{uid:data.uid}});
|
|
|
+ $eb.axios.get(url).then(function(res){
|
|
|
+ if(res.status == 200 && res.data.code == 200) {
|
|
|
+ $eb.$swal('success',res.data.msg);
|
|
|
+ layList.reload();
|
|
|
+ }else
|
|
|
+ return Promise.reject(res.data.msg || '审核失败')
|
|
|
+ }).catch(function(err){
|
|
|
+ $eb.$swal('error',err);
|
|
|
+ });
|
|
|
+ break;
|
|
|
+ case 'open_image':
|
|
|
+ $eb.openImage(data.cidimg);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ //下拉框
|
|
|
+ $(document).click(function (e) {
|
|
|
+ $('.layui-nav-child').hide();
|
|
|
+ })
|
|
|
+ function dropdown(that){
|
|
|
+ var oEvent = arguments.callee.caller.arguments[0] || event;
|
|
|
+ oEvent.stopPropagation();
|
|
|
+ var offset = $(that).offset();
|
|
|
+ var top=offset.top-$(window).scrollTop();
|
|
|
+ var index = $(that).parents('tr').data('index');
|
|
|
+ $('.layui-nav-child').each(function (key) {
|
|
|
+ if (key != index) {
|
|
|
+ $(this).hide();
|
|
|
+ }
|
|
|
+ })
|
|
|
+ if($(document).height() < top+$(that).next('ul').height()){
|
|
|
+ $(that).next('ul').css({
|
|
|
+ 'padding': 10,
|
|
|
+ 'top': - ($(that).parent('td').height() / 2 + $(that).height() + $(that).next('ul').height()/2),
|
|
|
+ 'min-width': 'inherit',
|
|
|
+ 'position': 'absolute'
|
|
|
+ }).toggle();
|
|
|
+ }else{
|
|
|
+ $(that).next('ul').css({
|
|
|
+ 'padding': 10,
|
|
|
+ 'top':$(that).parent('td').height() / 2 + $(that).height(),
|
|
|
+ 'min-width': 'inherit',
|
|
|
+ 'position': 'absolute'
|
|
|
+ }).toggle();
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+{/block}
|