You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
625 lines
29 KiB
625 lines
29 KiB
<?php /*a:2:{s:59:"D:\waibao\ahbcqz\server\app\admin\view\user\user\lists.html";i:1679478874;s:51:"D:\waibao\ahbcqz\server\app\admin\view\layout1.html";i:1679478874;}*/ ?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><?php echo url(); ?></title>
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
<link rel="stylesheet" href="/static/lib/layui/css/layui.css?v=<?php echo htmlentities($front_version); ?>">
|
|
<link rel="stylesheet" href="/static/admin/css/app.css?v=<?php echo htmlentities($front_version); ?>">
|
|
<link rel="stylesheet" href="/static/admin/css/like.css?v=<?php echo htmlentities($front_version); ?>">
|
|
<script src="/static/lib/layui/layui.js?v=<?php echo htmlentities($front_version); ?>"></script>
|
|
<script src="/static/admin/js/app.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<?php echo $js_code; ?>
|
|
<script src="/static/admin/js/jquery.min.js"></script>
|
|
<script src="/static/admin/js/function.js"></script>
|
|
|
|
|
|
<div class="wrapper">
|
|
<div class="layui-card">
|
|
<div class="layui-card-body">
|
|
<div class="layui-collapse like-layui-collapse" lay-accordion="" style="border:1px dashed #c4c4c4">
|
|
<div class="layui-colla-item">
|
|
<h2 class="layui-colla-title like-layui-colla-title" style="background-color: #fff">操作提示</h2>
|
|
<div class="layui-colla-content layui-show">
|
|
<p>*平台管理会员信息,平台可对会员进行编辑,账户调整,等级调整和资料查看等操作</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-form layui-card-header layuiadmin-card-header-auto" style="height:auto !important;">
|
|
<div class="layui-form-item">
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">会员信息:</label>
|
|
<div class="layui-input-inline" style="width: 200px;">
|
|
<select name="keyword_type" id="keyword_type">
|
|
<option value="sn">会员编号</option>
|
|
<option value="nickname">会员昵称</option>
|
|
</select>
|
|
</div>
|
|
<div class="layui-input-inline" style="width: 200px;">
|
|
<input type="text" id="keyword" name="keyword" placeholder="请输入关键词" autocomplete="off" class="layui-input">
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">会员等级:</label>
|
|
<div class="layui-input-inline">
|
|
<select id="level" name="level" style="height:80px;width: 80px" >
|
|
<option value="">全部</option>
|
|
<?php foreach($level_list as $item): ?>
|
|
<option value="<?php echo htmlentities($item['id']); ?>"><?php echo htmlentities($item['name']); ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">会员标签:</label>
|
|
<div class="layui-input-inline">
|
|
<select id="tag" name="tag" style="height:80px;width: 80px" >
|
|
<option value="">全部</option>
|
|
<?php foreach($tag_list as $item): ?>
|
|
<option value="<?php echo htmlentities($item['id']); ?>"><?php echo htmlentities($item['name']); ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">注册来源:</label>
|
|
<div class="layui-input-inline">
|
|
<select id="client" name="client" style="height:80px;width: 80px" >
|
|
<option value="">全部</option>
|
|
<?php foreach($client_list as $key => $value): ?>
|
|
<option value="<?php echo htmlentities($key); ?>"><?php echo htmlentities($value); ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">用户状态:</label>
|
|
<div class="layui-input-inline">
|
|
<select id="disable" name="disable" style="height:80px;width: 80px" >
|
|
<option value="">全部</option>
|
|
<option value="0">正常</option>
|
|
<option value="1">禁用</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-form-item">
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">消费金额:</label>
|
|
<div class="layui-input-inline">
|
|
<input type="text" class="layui-input" id="total_amount_start" name="total_amount_start" autocomplete="off">
|
|
</div>
|
|
<div class="layui-input-inline" style="margin-right: 5px;width: 10px;">
|
|
<label class="layui-form-mid">-</label>
|
|
</div>
|
|
<div class="layui-input-inline">
|
|
<input type="text" class="layui-input" id="total_amount_end" name="total_amount_end" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">注册时间:</label>
|
|
<div class="layui-input-inline">
|
|
<input type="text" class="layui-input" id="start_time" name="start_time" autocomplete="off">
|
|
</div>
|
|
<div class="layui-input-inline" style="margin-right: 5px;width: 10px;">
|
|
<label class="layui-form-mid">-</label>
|
|
</div>
|
|
<div class="layui-input-inline">
|
|
<input type="text" class="layui-input" id="end_time" name="end_time" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="layui-inline">
|
|
<button class="layui-btn layui-btn-sm layuiadmin-btn-user <?php echo htmlentities($view_theme_color); ?>" lay-submit lay-filter="user-search">查询</button>
|
|
<button class="layui-btn layui-btn-sm layuiadmin-btn-user layui-btn-primary " lay-submit lay-filter="user-clear-search">重置</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="layui-card-body">
|
|
<div style="padding-bottom: 10px;">
|
|
<!-- <button class="layui-btn layui-btn-sm layuiadmin-btn-user <?php echo htmlentities($view_theme_color); ?>" data-type="send_coupon">发放优惠券</button>-->
|
|
<button class="layui-btn layui-btn-sm layuiadmin-btn-user <?php echo htmlentities($view_theme_color); ?>" data-type="set_tag">设置会员标签</button>
|
|
</div>
|
|
|
|
<table id="user-lists" lay-filter="user-lists"></table>
|
|
|
|
<script type="text/html" id="user-info">
|
|
<img src="{{d.abs_avatar}}" style="height:80px;width: 80px;margin-right: 10px;" class="image-show">
|
|
<div class="layui-input-inline" style="text-align:left;width: 240px">
|
|
<p>用户编号:{{d.sn}}</p>
|
|
<p style="width: 180px;text-overflow:ellipsis;overflow: hidden">用户昵称:{{d.nickname}}</p>
|
|
<p>用户状态:
|
|
{{# if(d.disable){}}
|
|
禁用
|
|
{{# }else{ }}
|
|
正常
|
|
{{# } }}
|
|
</p>
|
|
</div>
|
|
</script>
|
|
|
|
<script type="text/html" id="wallet-info">
|
|
<div class="layui-input-inline" style="text-align:left;width: 240px">
|
|
<p>总资产:{{d.total_amount}}</p>
|
|
<p>可提现金额:{{d.earnings}}</p>
|
|
<p>不可提现金额:{{d.user_money}}</p>
|
|
</div>
|
|
</script>
|
|
|
|
<script type="text/html" id="register-info">
|
|
<div class="layui-input-inline" style="text-align:left;width: 240px">
|
|
<p>注册来源:{{d.client_desc}}</p>
|
|
<p>注册时间:{{d.create_time}}</p>
|
|
</div>
|
|
</script>
|
|
|
|
<script type="text/html" id="first-info">
|
|
{{# if(d.first_leader_info != '系统'){}}
|
|
<img src="{{d.first_leader_info.avatar}}" style="height:80px;width: 80px;margin-right: 10px;" class="image-show">
|
|
<div class="layui-input-inline" style="text-align:left;width: 240px">
|
|
<p>用户编号:{{d.first_leader_info.sn}}</p>
|
|
<p style="width: 180px;text-overflow:ellipsis;overflow: hidden">用户昵称:{{d.first_leader_info.nickname}}</p>
|
|
</div>
|
|
{{# }else{ }}
|
|
{{d.first_leader_info}}
|
|
{{# } }}
|
|
</script>
|
|
|
|
<script type="text/html" id="account">
|
|
<div class="layui-input-inline">
|
|
<label>余额:{{d.user_money}}</label>
|
|
<br/>
|
|
<label>积分:{{d.user_integral}}</label>
|
|
</div>
|
|
</script>
|
|
|
|
<script type="text/html" id="user-operation">
|
|
<a class="layui-btn layui-btn-primary layui-btn-sm" lay-event="info">资料</a>
|
|
<a class="layui-btn layui-btn-normal layui-btn-sm" lay-event="edit">编辑</a>
|
|
<a class="layui-btn layui-btn-normal layui-btn-sm" id="adjust_user" lay-event="adjust_user">账户调整</a>
|
|
<a class="layui-btn layui-btn-normal layui-btn-sm" id="adjust_level" lay-event="adjust_level">等级调整</a>
|
|
<a class="layui-btn layui-btn-normal layui-btn-sm" id="adjust_first_leader" lay-event="adjust_first_leader">推荐人调整</a>
|
|
|
|
</script>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
.layui-table-cell {
|
|
height: auto;
|
|
}
|
|
</style>
|
|
<script>
|
|
layui.config({
|
|
version:"<?php echo htmlentities($front_version); ?>",
|
|
base: '/static/lib/' //静态资源所在路径
|
|
}).use(['table','laydate'], function(){
|
|
var $ = layui.$
|
|
,form = layui.form
|
|
,table = layui.table
|
|
, laydate = layui.laydate;
|
|
|
|
//监听搜索
|
|
form.on('submit(user-search)', function(data){
|
|
var field = data.field;
|
|
//执行重载
|
|
table.reload('user-lists', {
|
|
where: field,
|
|
page: {
|
|
curr: 1 //重新从第 1 页开始
|
|
}
|
|
});
|
|
});
|
|
//日期时间范围
|
|
laydate.render({
|
|
elem: '#start_time'
|
|
,type: 'datetime'
|
|
,trigger: 'click'
|
|
});
|
|
|
|
//日期时间范围
|
|
laydate.render({
|
|
elem: '#end_time'
|
|
,type: 'datetime'
|
|
,trigger: 'click'
|
|
});
|
|
|
|
//清空查询
|
|
form.on('submit(user-clear-search)', function(){
|
|
$('#keyword_type').val('sn');
|
|
$('#keyword').val(''); //清空输入框
|
|
$('#level').val(''); //清空输入框
|
|
$('#tag').val(''); //清空输入框
|
|
$('#client').val(''); //清空输入框
|
|
$('#disable').val(''); //清空禁用状态
|
|
$('#total_amount_start').val(''); //清空输入框
|
|
$('#total_amount_end').val(''); //清空输入框
|
|
$('#start_time').val(''); //清空输入框
|
|
$('#end_time').val(''); //清空输入框
|
|
form.render('select');
|
|
//刷新列表
|
|
table.reload('user-lists', {
|
|
where: [],
|
|
page: {
|
|
curr: 1 //重新从第 1 页开始
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
//事件
|
|
var active = {
|
|
send_coupon:function() { //发放优惠券
|
|
var check_status = table.checkStatus('user-lists')
|
|
,user_list = check_status.data; //得到选中的数据
|
|
|
|
//是否已选数据
|
|
if(0 === user_list.length ){
|
|
return layer.msg('请选择用户');
|
|
}
|
|
//获取所选id
|
|
ids = [];
|
|
for (var i in user_list){
|
|
ids.push(user_list[i]['id']);
|
|
}
|
|
layer.open({
|
|
type: 2
|
|
,title: '发放优惠券'
|
|
,content: '<?php echo url("coupon/sendCouponList"); ?>'
|
|
,area: ['90%','90%']
|
|
,btn: ['确定发放', '取消']
|
|
,yes: function(index, layero){
|
|
var iframeWindow = window['layui-layer-iframe'+ index]
|
|
,submitID = 'send-submit'
|
|
,submit = layero.find('iframe').contents().find('#'+ submitID);
|
|
//监听提交
|
|
iframeWindow.layui.form.on('submit('+ submitID +')', function(data){
|
|
var coupon_list = window["layui-layer-iframe" + index].callbackdata();
|
|
if(coupon_list.length === 0){
|
|
return layer.msg('请选择优惠券');
|
|
}
|
|
coupon_ids = [];
|
|
for (var i in coupon_list){
|
|
coupon_ids.push(coupon_list[i]['id']);
|
|
}
|
|
like.ajax({
|
|
url:'<?php echo url("coupon/sendCoupon"); ?>',
|
|
data:{coupon_ids:coupon_ids,user_ids:ids},
|
|
type:"post",
|
|
success:function(res)
|
|
{
|
|
if(res.code == 1)
|
|
{
|
|
layui.layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 1
|
|
, time: 1000
|
|
});
|
|
layer.close(index); //关闭弹层
|
|
table.reload('goods_brand-lists'); //数据刷新
|
|
}
|
|
|
|
}
|
|
});
|
|
});
|
|
|
|
submit.trigger('click');
|
|
}
|
|
});
|
|
}
|
|
,set_tag:function() { //设置会员标签
|
|
var check_status = table.checkStatus('user-lists')
|
|
,user_list = check_status.data; //得到选中的数据
|
|
|
|
//是否已选数据
|
|
if( user_list.length === 0){
|
|
return layer.msg('请选择用户');
|
|
}
|
|
//获取所选id
|
|
ids = [];
|
|
for (var i in user_list){
|
|
ids.push(user_list[i]['id']);
|
|
}
|
|
|
|
layer.open({
|
|
type: 2
|
|
,title: '设置会员标签'
|
|
,content: '<?php echo url("user.user/setTag"); ?>'
|
|
,area: ['60%', '60%']
|
|
,btn: ['确定', '取消']
|
|
,yes: function(index, layero){
|
|
var iframeWindow = window['layui-layer-iframe'+ index]
|
|
,submitID = 'set_tag-submit'
|
|
,submit = layero.find('iframe').contents().find("#set_tag-submit");
|
|
//监听提交
|
|
iframeWindow.layui.form.on('submit(set_tag-submit)', function(data){
|
|
$.ajax({
|
|
url:'<?php echo url("user.user/setTag"); ?>',
|
|
data:{tag_ids:data.field.select,user_ids:ids},
|
|
type:"post",
|
|
success:function(res)
|
|
{
|
|
if(res.code == 1)
|
|
{
|
|
layui.layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 1
|
|
, time: 1000
|
|
});
|
|
layer.close(index); //关闭弹层
|
|
table.reload('user-lists'); //数据刷新
|
|
}
|
|
}
|
|
});
|
|
});
|
|
submit.trigger('click');
|
|
}
|
|
});
|
|
|
|
}
|
|
}
|
|
$('.layui-btn.layuiadmin-btn-user').on('click', function(){
|
|
var type = $(this).data('type');
|
|
active[type] ? active[type].call(this) : '';
|
|
});
|
|
|
|
$(document).on('click', '.image-show', function () {
|
|
var src = $(this).attr('src');
|
|
like.showImg(src,600);
|
|
});
|
|
});
|
|
|
|
|
|
|
|
layui.define(['table', 'form'], function(exports){
|
|
var $ = layui.$
|
|
,table = layui.table
|
|
,form = layui.form;
|
|
|
|
table.render({
|
|
id:'user-lists'
|
|
,elem: '#user-lists'
|
|
,url: '<?php echo url("user.user/lists"); ?>' //模拟接口
|
|
,cols: [[
|
|
{type: 'checkbox'}
|
|
,{title: '用户信息',width: 370,align: 'center', templet: '#user-info'}
|
|
,{field: 'level_name', title: '用户等级',width: 120,align: 'center'}
|
|
,{field: 'tag_str', title: '用户标签',width: 220,align: 'center'}
|
|
,{field: 'user_growth', title: '成长值',width: 120,align: 'center'}
|
|
,{title: '钱包信息',width: 350,align: 'center', templet: '#wallet-info'}
|
|
,{field: 'total_order_amount', title: '消费金额',width: 90,align: 'center'}
|
|
,{title: '上级推荐人',width: 90,align: 'center',width: 350, templet: '#first-info'}
|
|
,{field: 'fans', title: '推荐下级人数',width: 120,align: 'center'}
|
|
,{title: '注册信息',width: 300,align: 'center', templet: '#register-info'}
|
|
,{fixed: 'right', title: '操作', width: 420,toolbar: '#user-operation',align: 'center'}
|
|
]]
|
|
,page:true
|
|
,text: {none: '暂无数据!'}
|
|
,parseData: function(res){ //将原始数据解析成 table 组件所规定的数据
|
|
return {
|
|
"code":res.code,
|
|
"msg":res.msg,
|
|
"count": res.data.count, //解析数据长度
|
|
"data": res.data.lists, //解析数据列表
|
|
};
|
|
},
|
|
response: {
|
|
statusCode: 1
|
|
}
|
|
, done: function fix() {
|
|
$(".layui-table-main tr").each(function (index, val) {
|
|
$(".layui-table-fixed").each(function () {
|
|
$($(this).find(".layui-table-body tbody tr")[index]).height($(val).height());
|
|
});
|
|
});
|
|
$(".layui-table-header tr").each(function (index, val) {
|
|
$(".layui-table-fixed").each(function () {
|
|
$($(this).find(".layui-table-header thead tr")[index]).height($(val).height());
|
|
});
|
|
});
|
|
window.onresize = function () {
|
|
fix()
|
|
}
|
|
}
|
|
});
|
|
|
|
var moreShow = 0;
|
|
//监听工具条
|
|
table.on('tool(user-lists)', function(obj){
|
|
if(obj.event === 'edit'){
|
|
var id = obj.data.id;
|
|
layer.open({
|
|
type: 2
|
|
,title: '编辑会员'
|
|
,content: '<?php echo url("user.user/edit"); ?>?id='+id
|
|
,area: ['90%', '90%']
|
|
,btn: ['确定', '取消']
|
|
,yes: function(index, layero){
|
|
var iframeWindow = window['layui-layer-iframe'+ index]
|
|
,submit = layero.find('iframe').contents().find('#edit-submit');
|
|
//监听提交
|
|
iframeWindow.layui.form.on('submit(edit-submit)', function(data){
|
|
var field = data.field;
|
|
$.ajax({
|
|
url:'<?php echo url("user.user/edit"); ?>',
|
|
data:field,
|
|
type:"post",
|
|
success:function(res)
|
|
{
|
|
if(res.code == 1)
|
|
{
|
|
layui.layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 1
|
|
, time: 1000
|
|
});
|
|
layer.close(index); //关闭弹层
|
|
table.reload('user-lists'); //数据刷新
|
|
}else{
|
|
layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 2
|
|
, time: 1000
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
submit.trigger('click');
|
|
}
|
|
})
|
|
|
|
}
|
|
if(obj.event === 'info'){
|
|
var id = obj.data.id;
|
|
layer.open({
|
|
type: 2
|
|
,title: '会员资料'
|
|
,content: '<?php echo url("user.user/info"); ?>?id='+id
|
|
,area: ['90%','90%']
|
|
,btn: ['返回']
|
|
})
|
|
}
|
|
if(obj.event === 'adjust_user'){
|
|
var id = obj.data.id;
|
|
layer.open({
|
|
type: 2
|
|
,title: '账户调整'
|
|
,content: '<?php echo url("user.user/adjustAccount"); ?>?id='+id
|
|
,area: ['90%', '90%']
|
|
,btn: ['确定', '取消']
|
|
,yes: function(index, layero){
|
|
var iframeWindow = window['layui-layer-iframe'+ index]
|
|
,submit = layero.find('iframe').contents().find('#adjust_user-submit');
|
|
//监听提交
|
|
iframeWindow.layui.form.on('submit(adjust_user-submit)', function(data){
|
|
var field = data.field;
|
|
$.ajax({
|
|
url:'<?php echo url("user.user/adjustAccount"); ?>',
|
|
data:field,
|
|
type:"post",
|
|
success:function(res)
|
|
{
|
|
if(res.code == 1)
|
|
{
|
|
layui.layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 1
|
|
, time: 1000
|
|
});
|
|
layer.close(index); //关闭弹层
|
|
table.reload('user-lists'); //数据刷新
|
|
}else{
|
|
layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 2
|
|
, time: 1000
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
submit.trigger('click');
|
|
}
|
|
})
|
|
}
|
|
if(obj.event === 'adjust_level'){
|
|
var id = obj.data.id;
|
|
layer.open({
|
|
type: 2
|
|
,title: '等级调整'
|
|
,content: '<?php echo url("user.user/adjustLevel"); ?>?id='+ id
|
|
,area: ['90%', '90%']
|
|
,btn: ['确定', '取消']
|
|
,yes: function(index, layero){
|
|
var iframeWindow = window['layui-layer-iframe'+ index]
|
|
,submit = layero.find('iframe').contents().find('#formSubmit');
|
|
//监听提交
|
|
iframeWindow.layui.form.on('submit(formSubmit)', function(data){
|
|
var field = data.field;
|
|
$.ajax({
|
|
url:'<?php echo url("user.user/adjustLevel"); ?>',
|
|
data:field,
|
|
type:"post",
|
|
success:function(res)
|
|
{
|
|
if(res.code == 1)
|
|
{
|
|
layui.layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 1
|
|
, time: 1000
|
|
});
|
|
layer.close(index); //关闭弹层
|
|
table.reload('user-lists'); //数据刷新
|
|
}else{
|
|
layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 2
|
|
, time: 1000
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
submit.trigger('click');
|
|
}
|
|
})
|
|
}
|
|
if(obj.event === 'adjust_first_leader'){
|
|
var id = obj.data.id;
|
|
layer.open({
|
|
type: 2
|
|
,title: '推荐人调整'
|
|
,content: '<?php echo url("user.user/adjustFirstLeader"); ?>?id='+ id
|
|
,area: ['90%', '90%']
|
|
,btn: ['确定', '取消']
|
|
,yes: function(index, layero){
|
|
var iframeWindow = window['layui-layer-iframe'+ index]
|
|
,submit = layero.find('iframe').contents().find('#formSubmit');
|
|
//监听提交
|
|
iframeWindow.layui.form.on('submit(formSubmit)', function(data){
|
|
var field = data.field;
|
|
$.ajax({
|
|
url:'<?php echo url("user.user/adjustFirstLeader"); ?>',
|
|
data:field,
|
|
type:"post",
|
|
success:function(res)
|
|
{
|
|
if(res.code == 1)
|
|
{
|
|
layui.layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 1
|
|
, time: 1000
|
|
});
|
|
layer.close(index); //关闭弹层
|
|
table.reload('user-lists'); //数据刷新
|
|
}else{
|
|
layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 2
|
|
, time: 1000
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
submit.trigger('click');
|
|
}
|
|
})
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|