You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
331 lines
13 KiB
HTML
331 lines
13 KiB
HTML
<extend name="Public/base"/>
|
|
|
|
<block name="body">
|
|
<link rel="stylesheet" href="__CSS__/select2.min.css" type="text/css" />
|
|
<script type="text/javascript" src="__JS__/bootstrap.min.js"></script>
|
|
<script type="text/javascript" src="__JS__/select2.min.js"></script>
|
|
<style>
|
|
.select2-container--default .select2-selection--single {
|
|
color: #000;
|
|
resize: none;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: #a7b5bc #ced9df #ced9df #a7b5bc;
|
|
box-shadow: 0px 3px 3px #F7F8F9 inset;height:35px;
|
|
height:28px;border-radius:3px;font-size:12px;
|
|
}
|
|
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
|
line-height:35px;
|
|
line-height:28px;
|
|
}
|
|
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
|
height:26px;
|
|
}
|
|
.select2-container--default .select2-search--dropdown .select2-search__field {
|
|
height:26px;line-height:26px;font-size:12px;
|
|
}
|
|
.select2-results__option[aria-selected] {font-size:12px;}
|
|
</style>
|
|
<!-- 标题栏 -->
|
|
<div class="cf main-place top_nav_list navtab_list">
|
|
<h3 class="page_title">开发者</h3>
|
|
<p class="description_text">说明:此处显示开发者后台的账号列表</p>
|
|
</div>
|
|
|
|
<div class="cf top_nav_list">
|
|
<div class="fl button_list">
|
|
<empty name="model.extend">
|
|
<div class="tools">
|
|
<a class=" ajax-post " target-form="ids" url="{:U('lock_user',['status'=>1])}"><span class="button_icon button_icon9"></span>审核</a>
|
|
</div>
|
|
</empty>
|
|
</div>
|
|
<!-- 高级搜索 -->
|
|
<div class="jssearch fl cf search_list">
|
|
<div class="input-list search-title-box">
|
|
<label>搜索:</label>
|
|
</div>
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
<select id="promote_id" name="account" class="select_gallery" >
|
|
<option value="">开发者账号</option>
|
|
<volist name=":get_developers_list()" id="vo">
|
|
<option promote-id="{$vo.id}" value="{$vo.account}">{$vo.account}</option>
|
|
</volist>
|
|
</select>
|
|
</div>
|
|
<div class="input-list">
|
|
<input type="text" id="time-start" name="timestart" class="" value="{:I('timestart')}" placeholder="注册开始时间"/>
|
|
-
|
|
<div class="input-append date" id="datetimepicker" style="display:inline-block">
|
|
<input type="text" id="time-end" name="timeend" class="" value="{:I('timeend')}" placeholder="注册结束时间"/>
|
|
<span class="add-on"><i class="icon-th"></i></span>
|
|
</div>
|
|
</div>
|
|
<div class="input-list input-list-channelstatus">
|
|
<select name="status">
|
|
<option value="">开发者状态</option>
|
|
<option value="1">正常</option>
|
|
<option value="2">{:L('Lock')}</option>
|
|
<option value="-1">审核中</option>
|
|
<option value="3">驳回</option>
|
|
</select>
|
|
</div>
|
|
<input type="hidden" name="" value="" class="sortBy">
|
|
<div class="input-list">
|
|
<a class="sch-btn" href="javascript:;" id="search" url="{:U('lists','model='.$model['name'].'&row='.I('row'),false)}">搜索</a>
|
|
<!-- <a class="sch-btn" href="{:U('Export/expUser',array_merge(array('id'=>17,),I('get.')))}">导出</a> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- 数据列表 -->
|
|
<div class="data_list">
|
|
<div class="">
|
|
<table>
|
|
<!-- 表头 -->
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<input class="check-all" type="checkbox">
|
|
</th>
|
|
<th>ID</th>
|
|
<th>开发者账号</th>
|
|
<th>开发者名称</th>
|
|
<th>账号性质</th>
|
|
<th>属性</th>
|
|
<th>联系人</th>
|
|
<th>手机号码</th>
|
|
<th >注册时间</th>
|
|
<th>最后登录时间</th>
|
|
<th>状态</th>
|
|
<th style="width:6%;min-width:80px;">操作</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<!-- 列表 -->
|
|
<tbody>
|
|
<empty name ="list_data">
|
|
<tr>
|
|
<td colspan="12" class="text-center">aOh! 暂时还没有内容!</td>
|
|
</tr>
|
|
<else />
|
|
<volist name="list_data" id="data">
|
|
<?php $nickname = trim($data['nickname']);
|
|
$link_man = trim($data['link_man']);
|
|
$mobile_phone = trim($data['mobile_phone']);
|
|
?>
|
|
<tr>
|
|
<td><input class="ids" type="checkbox" value="{$data['id']}" name="ids[]"></td>
|
|
<td>{$data.id}</td>
|
|
<td>{$data.account}</td>
|
|
<td><notempty name="nickname">{$nickname}<else />空</notempty></td>
|
|
<td>开发者</td>
|
|
<td><if condition="$data['nature'] eq 1">公司<else/>个人</if></td>
|
|
<td><notempty name="link_man">{$link_man}<else />空</notempty></td>
|
|
<td><notempty name="mobile_phone">{$mobile_phone}<else />空</notempty></td>
|
|
<td>{:set_show_time($data['create_time'])}</td>
|
|
<td>{:set_show_time($data['last_login_time'])}</td>
|
|
<td>
|
|
<if condition="$data['status'] eq -1">
|
|
审核中
|
|
<elseif condition="$data['status'] eq 1"/>
|
|
正常
|
|
<elseif condition="$data['status'] eq 2"/>
|
|
<span style="color:#ff0000">{:L('Lock')}</span>
|
|
<elseif condition="$data['status'] eq 3"/>
|
|
<span style="color:#ff0000">驳回</span>
|
|
<else/>
|
|
审核中
|
|
</if>
|
|
</td>
|
|
<td>
|
|
<a href="{:U('edit',array('id'=>$data['id']))}" class="">编辑</a>
|
|
<if condition="$data.status neq 2">
|
|
<a href="{:U("lock_user",array('ids'=>$data['id'],'status'=>2))}" class="ajax-get ">{:L('Lock')}</a>
|
|
<else/>
|
|
<a href="{:U("lock_user",array('ids'=>$data['id'],'status'=>1))}" class="ajax-get ">解锁</a>
|
|
</if>
|
|
</td>
|
|
</tr>
|
|
</volist>
|
|
</empty>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="page">
|
|
<if condition="$role_export_check eq true ">
|
|
<a class="sch-btn" href="{:U('Export/expUser',array_merge(array('id'=>17,'xlsname'=>'开发者_开发者列表'),I('get.')))}">导出</a>
|
|
</if>
|
|
{$_page|default=''}
|
|
</div>
|
|
|
|
<div class="common_settings">
|
|
<span class="plus_icon"><span><img src="__IMG__/zwmimages/icon_jia.png"></span></span>
|
|
<form class="addShortcutIcon">
|
|
<input type="hidden" name="title" value="{$m_title}">
|
|
<input type="hidden" name="url" value="Developers/lists">
|
|
</form>
|
|
<a class="ajax-post add-butn <notempty name='commonset'>addSIsetted</notempty>" href="javascript:;" target-form="addShortcutIcon" url="{:U('Think/addShortcutIcon')}"><img src="__IMG__/zwmimages/icon_jia.png"><span><notempty name='commonset'>已添加<else />添加至常用设置</notempty></span></a>
|
|
</div>
|
|
|
|
</block>
|
|
|
|
<block name="script">
|
|
<script>
|
|
<volist name=":I('get.')" id="vo">
|
|
Think.setValue('{$key}',"{$vo}");
|
|
</volist>
|
|
$(".select_gallery").select2();
|
|
</script>
|
|
<link href="__STATIC__/datetimepicker/css/datetimepicker.css" rel="stylesheet" type="text/css">
|
|
<link href="__STATIC__/datetimepicker/css/dropdown.css" rel="stylesheet" type="text/css">
|
|
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
|
<script src="__STATIC__/layer/extend/layer.ext.js" type="text/javascript"></script>
|
|
<script type="text/javascript" src="__STATIC__/datetimepicker/js/bootstrap-datetimepicker.min.js"></script>
|
|
<script type="text/javascript" src="__STATIC__/datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js" charset="UTF-8"></script>
|
|
<script type="text/javascript">
|
|
//导航高亮
|
|
highlight_subnav('{:U('developers/lists')}');
|
|
function show_reason($id,$msg){
|
|
layer.tips("原因:"+$msg,"#tips"+$id, {
|
|
time: 3000
|
|
});
|
|
}
|
|
$(function(){
|
|
$('#refuse').click(function(){
|
|
var url = "{:U('Developers/refuse_reason')}";
|
|
var target_form=$(this).attr('target-form');
|
|
var arr="";
|
|
form = $('.'+target_form);form.each(function(k,v){
|
|
if(v.type=='checkbox' && v.checked==true){
|
|
arr+=v.value+",";
|
|
}
|
|
})
|
|
if(arr!=""){
|
|
layer.prompt({title: "请输入驳回原因,并确认", formType: 2}, function(info, index){
|
|
$.ajax({
|
|
type:"post",
|
|
url:url,
|
|
dataType:"json",
|
|
data:{reason:info,ids:arr},
|
|
success:function(data){
|
|
layer.msg(data.msg,{icon:data.status});
|
|
location.reload();
|
|
},
|
|
error:function(){
|
|
layer.msg("服务器故障!",{icon:2});
|
|
}
|
|
});
|
|
});
|
|
}else{
|
|
layer.alert("请选择要操作的数据");
|
|
}
|
|
})
|
|
|
|
$('#time-start').datetimepicker({
|
|
format: 'yyyy-mm-dd',
|
|
language: "zh-CN",
|
|
minView: 2,
|
|
autoclose: true,endDate:'{:date("Y-m-d")}',
|
|
});
|
|
|
|
$('#datetimepicker').datetimepicker({
|
|
format: 'yyyy-mm-dd',
|
|
language: "zh-CN",
|
|
minView: 2,
|
|
autoclose: true,endDate:'{:date("Y-m-d")}',
|
|
pickerPosition: 'bottom-left'
|
|
})
|
|
|
|
//搜索功能
|
|
$("#search").click(function(){
|
|
var url = $(this).attr('url');
|
|
var query = $('.jssearch').find('input').serialize();
|
|
query += "&"+$('.jssearch').find('select').serialize();
|
|
query = query.replace(/(&|^)(\w*?\d*?\-*?_*?)*?=?((?=&)|(?=$))/g,'');
|
|
query = query.replace(/^&/g,'');
|
|
if( url.indexOf('?')>0 ){
|
|
url += '&' + query;
|
|
}else{
|
|
url += '?' + query;
|
|
}
|
|
var start = $("#time-start").val();
|
|
var end = $("#time-end").val();
|
|
if (start !='' && end != ''){
|
|
if (Date.parse(start) > Date.parse(end)){
|
|
layer.msg('开始时间必须小于等于结束时间');
|
|
return false;
|
|
}
|
|
}
|
|
window.location.href = url;
|
|
});
|
|
$(".paixu").click(function(){
|
|
var that=$(this);
|
|
$data_order=that.attr('data-order');
|
|
$order_type='{$userarpu_order}';
|
|
if($order_type==''||$order_type=='4'){
|
|
$(".sortBy").attr('name','data_order');
|
|
val='3,'+$data_order;
|
|
$(".sortBy").attr('value',val);
|
|
$("#search").click();
|
|
}else if($order_type=='3'){
|
|
$(".sortBy").attr('name','data_order');
|
|
val='4,'+$data_order;
|
|
$(".sortBy").attr('value',val);
|
|
$("#search").click();
|
|
}
|
|
});
|
|
//回车自动提交
|
|
$('.jssearch').find('input').keyup(function(event){
|
|
if(event.keyCode===13){
|
|
$("#search").click();
|
|
}
|
|
});
|
|
|
|
$("#admin").on('click',function(event) {
|
|
var navlist = $(this).find('.i_list_li');
|
|
if (navlist.hasClass('hidden')) {
|
|
navlist.removeClass('hidden');
|
|
$(this).find('#i_list_id').focus().val('');
|
|
} else {
|
|
navlist.addClass('hidden');
|
|
}
|
|
$(document).one("click", function(){
|
|
navlist.addClass('hidden');
|
|
});
|
|
event.stopPropagation();
|
|
});
|
|
|
|
$('#admin #i_list_id').on('keyup',function(event) {
|
|
var val = $.trim($(this).val()).toLowerCase();
|
|
$(this).closest('.drop-down').find('#i_list_idh').val(val);
|
|
});
|
|
|
|
$("#admin #i_list_li").find("a").each(function(){
|
|
$(this).click(function(){
|
|
var text = $.trim($(this).text()).toLowerCase();
|
|
$(this).closest('.drop-down').find("#i_list_id").val(text);
|
|
$(this).closest('.drop-down').find('#i_list_idh').val(text);
|
|
})
|
|
});
|
|
|
|
//下拉内容框
|
|
$(".drop-down2").on('click',function(event) {
|
|
var navlist = $(this).find('.i_list_li');
|
|
if (navlist.hasClass('hidden')) {
|
|
navlist.removeClass('hidden');
|
|
$('#i_list_id').focus().val('');
|
|
} else {
|
|
navlist.addClass('hidden');
|
|
}
|
|
$(document).one("click", function(){
|
|
navlist.addClass('hidden');
|
|
});
|
|
event.stopPropagation();
|
|
});
|
|
/* 状态搜索子菜单 */
|
|
|
|
})
|
|
</script>
|
|
</block>
|