Files
2019-02-28 19:48:21 +08:00

180 lines
6.1 KiB
HTML

<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Apple devices fullscreen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Apple devices fullscreen -->
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link href="__PUBLIC__/static/css/main.css" rel="stylesheet" type="text/css">
<link href="__PUBLIC__/static/css/page.css" rel="stylesheet" type="text/css">
<link href="__PUBLIC__/static/font/css/font-awesome.min.css" rel="stylesheet" />
<!--[if IE 7]>
<link rel="stylesheet" href="__PUBLIC__/static/font/css/font-awesome-ie7.min.css">
<![endif]-->
<link href="__PUBLIC__/static/js/jquery-ui/jquery-ui.min.css" rel="stylesheet" type="text/css"/>
<link href="__PUBLIC__/static/js/perfect-scrollbar.min.css" rel="stylesheet" type="text/css"/>
<style type="text/css">html, body { overflow: visible;}</style>
<script type="text/javascript" src="__PUBLIC__/static/js/jquery.js"></script>
<script type="text/javascript" src="__PUBLIC__/static/js/jquery-ui/jquery-ui.min.js"></script>
<script type="text/javascript" src="__PUBLIC__/static/js/layer/layer.js"></script><!-- 弹窗js 参考文档 http://layer.layui.com/-->
<script type="text/javascript" src="__PUBLIC__/static/js/admin.js"></script>
<script type="text/javascript" src="__PUBLIC__/static/js/jquery.validation.min.js"></script>
<script type="text/javascript" src="__PUBLIC__/static/js/common.js"></script>
<script type="text/javascript" src="__PUBLIC__/static/js/perfect-scrollbar.min.js"></script>
<script type="text/javascript" src="__PUBLIC__/static/js/jquery.mousewheel.js"></script>
<script src="__PUBLIC__/js/myFormValidate.js"></script>
<script src="__PUBLIC__/js/myAjax2.js"></script>
<script src="__PUBLIC__/js/global.js"></script>
<script type="text/javascript">
function delfunc(obj){
layer.confirm('确认删除?', {
btn: ['确定','取消'] //按钮
}, function(){
// 确定
$.ajax({
type : 'post',
url : $(obj).attr('data-url'),
data : {act:'del',del_id:$(obj).attr('data-id')},
dataType : 'json',
success : function(data){
layer.closeAll();
if(data.status==1){
layer.msg(data.msg, {icon: 1, time: 2000},function(){
location.href = '';
// $(obj).parent().parent().parent().remove();
});
}else{
layer.msg(data, {icon: 2,time: 2000});
}
}
})
}, function(index){
layer.close(index);
return false;// 取消
}
);
}
function selectAll(name,obj){
$('input[name*='+name+']').prop('checked', $(obj).checked);
}
function get_help(obj){
window.open("http://www.tp-shop.cn/");
return false;
layer.open({
type: 2,
title: '帮助手册',
shadeClose: true,
shade: 0.3,
area: ['70%', '80%'],
content: $(obj).attr('data-url'),
});
}
function delAll(obj,name){
var a = [];
$('input[name*='+name+']').each(function(i,o){
if($(o).is(':checked')){
a.push($(o).val());
}
})
if(a.length == 0){
layer.alert('请选择删除项', {icon: 2});
return;
}
layer.confirm('确认删除?', {btn: ['确定','取消'] }, function(){
$.ajax({
type : 'get',
url : $(obj).attr('data-url'),
data : {act:'del',del_id:a},
dataType : 'json',
success : function(data){
layer.closeAll();
if(data == 1){
layer.msg('操作成功', {icon: 1});
$('input[name*='+name+']').each(function(i,o){
if($(o).is(':checked')){
$(o).parent().parent().remove();
}
})
}else{
layer.msg(data, {icon: 2,time: 2000});
}
}
})
}, function(index){
layer.close(index);
return false;// 取消
}
);
}
/**
* 全选
* @param obj
*/
function checkAllSign(obj){
$(obj).toggleClass('trSelected');
if($(obj).hasClass('trSelected')){
$('#flexigrid > table>tbody >tr').addClass('trSelected');
}else{
$('#flexigrid > table>tbody >tr').removeClass('trSelected');
}
}
/**
* 批量公共操作(删,改)
* @returns {boolean}
*/
function publicHandleAll(type){
var ids = '';
$('#flexigrid .trSelected').each(function(i,o){
// ids.push($(o).data('id'));
ids += $(o).data('id')+',';
});
if(ids == ''){
layer.msg('至少选择一项', {icon: 2, time: 2000});
return false;
}
publicHandle(ids,type); //调用删除函数
}
/**
* 公共操作(删,改)
* @param type
* @returns {boolean}
*/
function publicHandle(ids,handle_type){
layer.confirm('确认当前操作?', {
btn: ['确定', '取消'] //按钮
}, function () {
// 确定
$.ajax({
url: $('#flexigrid').data('url'),
type:'post',
data:{ids:ids,type:handle_type},
dataType:'JSON',
success: function (data) {
layer.closeAll();
if (data.status == 1){
layer.msg(data.msg, {icon: 1, time: 2000},function(){
location.href = data.url;
});
}else{
layer.msg(data.msg, {icon: 2, time: 2000});
}
}
});
}, function (index) {
layer.close(index);
}
);
}
</script>
</head>