Merge branch 'feature/group_type' of 47.111.118.107:wmtx/platform into feature/group_type
commit
2b335ec910
@ -0,0 +1,106 @@
|
||||
<?php
|
||||
|
||||
namespace Admin\Controller;
|
||||
use User\Api\UserApi as UserApi;
|
||||
use Base\Service\PromoteService as PromoteService;
|
||||
use Think\Controller;
|
||||
|
||||
/**
|
||||
* 后台首页控制器
|
||||
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
|
||||
*/
|
||||
class VerifyBillController extends Controller {
|
||||
/**
|
||||
* VerifyBillController constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
if (empty(session('cp_user_auth'))) {
|
||||
redirect('admin.php?s=public/cp_login.html');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public function index(){
|
||||
$m_title = '对账单管理';
|
||||
$list_data = DM('statement')->order('create_time desc')->select();
|
||||
foreach ($list_data as $key => $value) {
|
||||
$list_data[$key]['statement_type_str'] = $value['statement_type'] ? '工会对账单' : 'cp对账单';
|
||||
}
|
||||
$this->assign('list_data', $list_data);
|
||||
$this->assign('meta_title', $m_title);
|
||||
$this->display();
|
||||
}
|
||||
|
||||
public function show()
|
||||
{
|
||||
$id = I('id');
|
||||
$data = DM('statement')->where(['id' => $id])->find();
|
||||
$data['first_party_info'] = json_decode($data['first_party_info'], 1);//甲方
|
||||
$data['second_party_info'] = json_decode($data['second_party_info'], 1);//乙方
|
||||
$data['statement_info'] = json_decode($data['statement_info'], 1);//结算记录
|
||||
//收款方
|
||||
$data['receive_company'] = $data['pay_type'] ? $data['first_party_info']['partner'] : $data['second_party_info']['partner'];
|
||||
// dd($data);
|
||||
$all_sum_money = array_sum(array_column($data['statement_info'], 'sum_money'));//合计平台总额
|
||||
$all_pay_amount = array_sum(array_column($data['statement_info'], 'pay_amount'));//合计结算金额
|
||||
$big_all_sum_money = convertAmountToCn($all_sum_money);//大写
|
||||
$this->assign('big_all_sum_money', $big_all_sum_money);
|
||||
$this->assign('all_sum_money', $all_sum_money);
|
||||
$this->assign('all_pay_amount', $all_pay_amount);
|
||||
$this->assign('data', $data);
|
||||
$this->assign('from', I('from'));
|
||||
if ($data['statement_type'] == 1) {//下游
|
||||
$template = 'company_show';
|
||||
} else {
|
||||
$template = 'partner_show';//上游
|
||||
}
|
||||
$this->display($template);
|
||||
}
|
||||
|
||||
public function confirm()
|
||||
{
|
||||
$id = I('id');
|
||||
$res = DM('statement')->where(['id' => $id])->save(['is_confirm' => 1]);
|
||||
if ($res) {
|
||||
$this->success("操作成功", U('index'));
|
||||
} else {
|
||||
$this->error('操作失败');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*导出excell
|
||||
* @param int id
|
||||
*/
|
||||
public function export()
|
||||
{
|
||||
$id = I('id');
|
||||
$data = DM('statement')->where(['id' => $id])->find();
|
||||
$data['first_party_info'] = json_decode($data['first_party_info'], 1);//甲方
|
||||
$data['second_party_info'] = json_decode($data['second_party_info'], 1);//乙方
|
||||
$data['statement_info'] = json_decode($data['statement_info'], 1);//结算记录
|
||||
//收款方
|
||||
// dd($data);
|
||||
$all_sum_money = array_sum(array_column($data['statement_info'], 'sum_money'));//合计平台总额
|
||||
$all_pay_amount = array_sum(array_column($data['statement_info'], 'pay_amount'));//合计结算金额
|
||||
|
||||
$big_all_sum_money = convertAmountToCn($all_sum_money);//大写
|
||||
$data['receive_company'] = $data['pay_type'] ? $data['first_party_info'] : $data['second_party_info'];
|
||||
$data['pay_company'] = $data['pay_type'] ? $data['second_party_info'] : $data['first_party_info'];
|
||||
dd($data['statement_info']);
|
||||
if ($data['statement_type'] == 1) {//下游
|
||||
excelDownStreamTemplate($data, $all_sum_money, $all_pay_amount, $big_all_sum_money);
|
||||
} else {//上游
|
||||
excelUpStreamTemplate($data, $all_sum_money, $all_pay_amount, $big_all_sum_money);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,387 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>{$meta_title}-{:C('WEB_SITE_TITLE')}</title>
|
||||
<link href="{:get_cover(C('SITE_ICO'),'path')}" type="image/x-icon" rel="shortcut icon">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/base.css" media="all">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/common.css" media="all">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/module.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/style.css" media="all">
|
||||
<block name="css"></block>
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/{$Think.config.COLOR_STYLE}.css" media="all">
|
||||
|
||||
<!--[if lt IE 9]>
|
||||
<script type="text/javascript" src="__STATIC__/jquery-1.10.2.min.js"></script>
|
||||
<![endif]--><!--[if gte IE 9]><!-->
|
||||
<script type="text/javascript" src="__STATIC__/jquery-2.0.3.min.js"></script>
|
||||
<script type="text/javascript" src="__STATIC__/jquery.cookie.js"></script>
|
||||
<script type="text/javascript" src="__JS__/jquery.mousewheel.js"></script>
|
||||
<!--<![endif]-->
|
||||
<block name="style"></block>
|
||||
<style>
|
||||
.select2-dropdown {
|
||||
z-index: 1;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- 头部 -->
|
||||
<div class="header">
|
||||
<!-- Logo -->
|
||||
<span class="logo">
|
||||
<img src="{:get_cover(C('HT_LOGO'),'path')}" style="width:160px;height: auto;margin-top: 10px;">
|
||||
</span>
|
||||
<!-- /Logo -->
|
||||
|
||||
<!-- 主导航 -->
|
||||
<ul class="main-nav ienav">
|
||||
<volist name="__MENU__.main" id="menu">
|
||||
<li class="{$menu.class|default=''}"><a href="{$menu.url|U}"><p><i class="guidicon guidicon-{$menu.id}"></i></p><h5>{:L($menu['title'])}</h5></a></li>
|
||||
</volist>
|
||||
</ul>
|
||||
<!-- /主导航 -->
|
||||
|
||||
<!-- 用户栏 -->
|
||||
<div class="topright">
|
||||
<ul>
|
||||
<!-- <li><span><img src="__IMG__/help.png" title="帮助" class="helpimg"></span><a href="http://xue.vlcms.com/" target="_blank">帮助</a></li>-->
|
||||
<li class="subjectlist jssubject">
|
||||
<a href="javascript:;" class="cbtn jscbtn">主题<i></i></a>
|
||||
<div class="subject-sublist jssubjectlist">
|
||||
<?php $colorstyle = get_color_style_list();?>
|
||||
<volist name="colorstyle.list" id="vo">
|
||||
<div><a href="javascript:void(0);" target="_self" class="subject-item jssetcolor" data-value="{$key}">
|
||||
<img src="__IMG__/{$key}.png" class="subject-pic"><p>
|
||||
<span>{$vo}</span></p>
|
||||
<i class="subject-icon <eq name='colorstyle.value' value='$key'>yes</eq>"></i></a>
|
||||
</div>
|
||||
</volist>
|
||||
</div>
|
||||
</li>
|
||||
<li><a class="ajax-get" href="{:U('ClearCache/clear')}">清理缓存</a></li>
|
||||
<!-- <li class="gwlist">
|
||||
<div class="nav" id="nav">
|
||||
<p class="set"><a>语言<i></i></a></p>
|
||||
<ul class="new">
|
||||
<li><a href="javascript:void(0);" target="_self">中文</a></li>
|
||||
<li><a href="javascript:void(0);" target="_self">英文</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</li> -->
|
||||
<li><a class="tuichujs" href="{:U('public/cp_logout')}">退出</a></li>
|
||||
</ul>
|
||||
<div class="user">
|
||||
<span>{:session('cp_user_auth.username')}</span>
|
||||
<a href="{:U('Msg/lists')}">
|
||||
<i>消息</i>
|
||||
<b>{:get_msg()}</b>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--下拉样式-->
|
||||
<script type="text/javascript">
|
||||
$(function(){
|
||||
|
||||
$(".nav p").click(function(){
|
||||
var ul=$(".new");
|
||||
if(ul.css("display")=="none"){
|
||||
ul.slideDown();
|
||||
}else{
|
||||
ul.slideUp();
|
||||
}
|
||||
});
|
||||
|
||||
$('.jscbtn').click(function() {
|
||||
$(this).siblings().slideToggle(200);
|
||||
return false;
|
||||
});
|
||||
|
||||
$('.jssetcolor').click(function() {
|
||||
var that = $(this),value=that.attr('data-value');
|
||||
var par = that.closest('.jssubjectlist');
|
||||
|
||||
if (that.hasClass('disabled')) {return false;}
|
||||
|
||||
$('.jssetcolor').addClass('disabled');
|
||||
|
||||
|
||||
|
||||
$.post('{:U("Admin/set_color_style")}',{value:value},function(data) {
|
||||
if (data.status==1) {
|
||||
updateAlert(data.info,'tip_right');
|
||||
setTimeout(function(){
|
||||
$('#tip').find('.tipclose').click();
|
||||
setTimeout(function(){location.reload();},300);
|
||||
},1500);
|
||||
|
||||
} else {
|
||||
updateAlert(data.info,'tip_error');
|
||||
setTimeout(function(){
|
||||
$('#tip').find('.tipclose').click();
|
||||
},1500);
|
||||
par.slideToggle(200);
|
||||
$('.jssetcolor').removeClass('disabled');
|
||||
}
|
||||
},'json');
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
})
|
||||
</script>
|
||||
<div id="tip" class="tip"><a class="tipclose hidden" ></a><div class="tipmain"><div class="tipicon"></div><div class="tipinfo">这是内容</div></div></div>
|
||||
<script>
|
||||
/**顶部警告栏*/
|
||||
var content = $('#main');
|
||||
var top_alert = $('#tip');
|
||||
//$('body').append('<div class="notice"><div><i></i>成功</div></div>');
|
||||
|
||||
top_alert.find('.tipclose').on('click', function () {
|
||||
top_alert.removeClass('block').slideUp(200);
|
||||
// content.animate({paddingTop:'-=55'},200);
|
||||
});
|
||||
$('.new li:eq(0)').click(function(){
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: "{:U('Public/zh_cn')}",
|
||||
success: function(data) {
|
||||
location.reload();
|
||||
},
|
||||
error:function(){
|
||||
|
||||
}
|
||||
});
|
||||
})
|
||||
|
||||
$('.new li:eq(1)').click(function(){
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
type:'json',
|
||||
url: "/admin.php?s=/Public/en_us",
|
||||
success: function(data) {
|
||||
location.reload();
|
||||
},
|
||||
error:function(){
|
||||
alert(111);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
})
|
||||
window.updateAlert = function (text,c) {
|
||||
text = text||'default';
|
||||
c = c||false;
|
||||
if ( text!='default' ) {
|
||||
top_alert.find('.tipinfo').text(text);
|
||||
if (top_alert.hasClass('block')) {
|
||||
} else {
|
||||
top_alert.addClass('block').slideDown(200);
|
||||
// content.animate({paddingTop:'+=55'},200);
|
||||
}
|
||||
} else {
|
||||
if (top_alert.hasClass('block')) {
|
||||
top_alert.removeClass('block').slideUp(200);
|
||||
// content.animate({paddingTop:'-=55'},200);
|
||||
}
|
||||
}
|
||||
if ( c!=false ) {
|
||||
top_alert.removeClass('tip_error tip_right').addClass(c);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<!--下拉样式结束-->
|
||||
<!-- /头部 -->
|
||||
|
||||
<!-- 边栏 -->
|
||||
<div class="sidebar" <if condition="CONTROLLER_NAME eq Index"> style="display:none</if>">
|
||||
<div class="user_nav">
|
||||
<span><img src="/Public/Admin/images/tx.png"></span>
|
||||
<p>{:session('cp_user_auth.username')}</p>
|
||||
<p style="margin-top:0px;"><if condition = "$res['uid'] eq '1'">超级管理员<else />{$res1['title']}</if></p>
|
||||
|
||||
</div>
|
||||
<div class="fgx">功能菜单</div>
|
||||
|
||||
<!-- 子导航 -->
|
||||
<block name="sidebar">
|
||||
<div id="subnav" class="subnav">
|
||||
<notempty name="_extra_menu">
|
||||
{// 动态扩展菜单 //}
|
||||
{:extra_menu($_extra_menu,$__MENU__)}
|
||||
</notempty>
|
||||
<volist name="__MENU__.child" id="sub_menu">
|
||||
<!-- 子导航 -->
|
||||
<notempty name="sub_menu">
|
||||
<notempty name="key"><h3 class="no"><i class="icon icon-unfold"></i>{:L($key)}</h3></notempty>
|
||||
<ul class="side-sub-menu" style="display: none;">
|
||||
<volist name="sub_menu" id="menu">
|
||||
<li>
|
||||
<a class="item" href="{$menu.url|U}">{:L($menu['title'])}</a>
|
||||
</li>
|
||||
</volist>
|
||||
</ul>
|
||||
</notempty>
|
||||
<!-- /子导航 -->
|
||||
</volist>
|
||||
</div>
|
||||
</block>
|
||||
<!-- /子导航 -->
|
||||
</div>
|
||||
<!-- /边栏 -->
|
||||
|
||||
<!-- 内容区 -->
|
||||
<div id="main-content" style="margin-top: 50px;position:relative;">
|
||||
<div id="tip" class="tip"><a class="tipclose hidden" ></a><div class="tipmain"><div class="tipicon"></div><div class="tipinfo">这是内容</div></div></div>
|
||||
<div id="main" class="main">
|
||||
<block name="nav">
|
||||
<!-- nav -->
|
||||
<notempty name="_show_nav">
|
||||
<div class="breadcrumb">
|
||||
<span>位置:</span>
|
||||
<assign name="i" value="1" />
|
||||
<foreach name="_nav" item="v" key="k">
|
||||
<if condition="$i eq count($_nav)">
|
||||
<span>{$v}</span>
|
||||
<else />
|
||||
<span><a href="{$k}">{$v}</a>></span>
|
||||
</if>
|
||||
<assign name="i" value="$i+1" />
|
||||
</foreach>
|
||||
</div>
|
||||
</notempty>
|
||||
<!-- nav -->
|
||||
</block>
|
||||
<if condition="CONTROLLER_NAME neq 'Index' ">
|
||||
|
||||
</if>
|
||||
<block name="body"> </block>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /内容区 -->
|
||||
<script type="text/javascript">
|
||||
(function(){
|
||||
var ThinkPHP = window.Think = {
|
||||
"ROOT" : "__ROOT__", //当前网站地址
|
||||
"APP" : "__APP__", //当前项目地址
|
||||
"PUBLIC" : "__PUBLIC__", //项目公共目录地址
|
||||
"DEEP" : "{:C('URL_PATHINFO_DEPR')}", //PATHINFO分割符
|
||||
"MODEL" : ["{:C('URL_MODEL')}", "{:C('URL_CASE_INSENSITIVE')}", "{:C('URL_HTML_SUFFIX')}"],
|
||||
"VAR" : ["{:C('VAR_MODULE')}", "{:C('VAR_CONTROLLER')}", "{:C('VAR_ACTION')}"]
|
||||
}
|
||||
})();
|
||||
</script>
|
||||
<script type="text/javascript" src="__STATIC__/think.js"></script>
|
||||
<script type="text/javascript" src="__JS__/common.js"></script>
|
||||
<script type="text/javascript">
|
||||
+function(){
|
||||
var $window = $(window), $subnav = $("#subnav"), url;
|
||||
$window.resize(function(){
|
||||
$("#main").css("min-height", $window.height() - 130);
|
||||
}).resize();
|
||||
$('.tuichujs').click(function(){
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
async: false,
|
||||
dataType: 'json',
|
||||
url: "{:U('Public/logout')}",
|
||||
success: function(data) {
|
||||
updateAlert('退出成功','tip_right');
|
||||
setTimeout(function(){
|
||||
$('#tip').find('.tipclose').click();
|
||||
},1500);
|
||||
location.reload();
|
||||
},
|
||||
error:function(){
|
||||
updateAlert("服务器故障!",'tip_error');
|
||||
setTimeout(function(){
|
||||
$('#tip').find('.tipclose').click();
|
||||
},1500);
|
||||
}
|
||||
});
|
||||
});
|
||||
/* 左边菜单高亮 */
|
||||
url = window.location.pathname + window.location.search;
|
||||
url = url.replace(/(\/(p)\/\d+)|(&p=\d+)|(\/(id)\/\d+)|(&id=\d+)|(\/(group)\/\d+)|(&group=\d+)/, "");
|
||||
//$subnav.find('h3').addClass('no');
|
||||
$subnav.find("a[href='" + url + "']").parent().addClass("current").closest('ul').prev('h3').removeClass('no');
|
||||
|
||||
/* 左边菜单显示收起 */
|
||||
/*$("#subnav").on("click", "h3", function(){
|
||||
var $this = $(this);
|
||||
$this.toggleClass('no').find(".icon").toggleClass("icon-fold");
|
||||
$this.next().slideToggle("fast").siblings(".side-sub-menu:visible").
|
||||
prev("h3").addClass('no').find("i").addClass("icon-fold").end().end().hide();
|
||||
});*/
|
||||
|
||||
$("#subnav").on("click", "h3", function(event){
|
||||
var e = event || window.event;
|
||||
var target = $(e.target);
|
||||
var $this = $(this);
|
||||
if ($this.index() == target.index())
|
||||
$this.find(".icon").toggleClass("icon-fold");
|
||||
else
|
||||
$this.toggleClass('no').find(".icon").toggleClass("icon-fold");
|
||||
$this.next().slideToggle("fast").siblings(".side-sub-menu:visible").
|
||||
prev("h3").find("i").addClass("icon-fold").end().end().hide();
|
||||
});
|
||||
|
||||
|
||||
$("#subnav h3 a").click(function(e){e.stopPropagation()});
|
||||
|
||||
/* 头部管理员菜单 */
|
||||
$(".user-bar").mouseenter(function(){
|
||||
var userMenu = $(this).children(".user-menu ");
|
||||
userMenu.removeClass("hidden");
|
||||
clearTimeout(userMenu.data("timeout"));
|
||||
}).mouseleave(function(){
|
||||
var userMenu = $(this).children(".user-menu");
|
||||
userMenu.data("timeout") && clearTimeout(userMenu.data("timeout"));
|
||||
userMenu.data("timeout", setTimeout(function(){userMenu.addClass("hidden")}, 100));
|
||||
});
|
||||
|
||||
/* 表单获取焦点变色 */
|
||||
$("form").on("focus", "input", function(){
|
||||
$(this).addClass('focus');
|
||||
}).on("blur","input",function(){
|
||||
$(this).removeClass('focus');
|
||||
});
|
||||
$("form").on("focus", "textarea", function(){
|
||||
$(this).closest('label').addClass('focus');
|
||||
}).on("blur","textarea",function(){
|
||||
$(this).closest('label').removeClass('focus');
|
||||
});
|
||||
|
||||
// 导航栏超出窗口高度后的模拟滚动条
|
||||
var sHeight = $(".sidebar").height();
|
||||
var subHeight = $(".subnav").height();
|
||||
var diff = subHeight - sHeight; //250
|
||||
var sub = $(".subnav");
|
||||
if(diff > 0){
|
||||
$(window).mousewheel(function(event, delta){
|
||||
if(delta>0){
|
||||
if(parseInt(sub.css('marginTop'))>-10){
|
||||
sub.css('marginTop','0px');
|
||||
}else{
|
||||
sub.css('marginTop','+='+10);
|
||||
}
|
||||
}else{
|
||||
if(parseInt(sub.css('marginTop'))<'-'+(diff-10)){
|
||||
sub.css('marginTop','-'+(diff-10));
|
||||
}else{
|
||||
sub.css('marginTop','-='+10);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}();
|
||||
</script>
|
||||
<block name="script"></block>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,206 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<title>{:C('WEB_SITE_TITLE')}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
|
||||
<!-- CSS -->
|
||||
|
||||
<link rel="stylesheet" href="__CSS__/reset.css">
|
||||
<link rel="stylesheet" href="__CSS__/supersized.css">
|
||||
<link rel="stylesheet" href="__CSS__/loginnews1711.css">
|
||||
<script src="__JS__/jquery-3.0.0.min.js" ></script>
|
||||
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
||||
<script src="__JS__/cloud.js" type="text/javascript"></script>
|
||||
<style>
|
||||
#sendSasfeCode {
|
||||
border-radius:3px;
|
||||
width:29%;
|
||||
cursor:pointer;
|
||||
border:1px solid;
|
||||
position:absolute;
|
||||
top:0;
|
||||
right:0;
|
||||
height:48px;
|
||||
text-align: center;
|
||||
line-height: 50px;
|
||||
}
|
||||
.g-btntn{
|
||||
border-color: grey;
|
||||
color: grey;
|
||||
}
|
||||
.g-btn{
|
||||
border-color: #2697FF;
|
||||
color: #2697FF;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
<body style="background-color:#1c77ac; background-image:url(__IMG__/light.png); background-repeat:no-repeat; background-position:center top; overflow:hidden;">
|
||||
|
||||
|
||||
|
||||
<div id="mainBody">
|
||||
<div id="cloud1" class="cloud"></div>
|
||||
<div id="cloud2" class="cloud"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="logintop">
|
||||
<span>欢迎登录后台管理界面平台</span>
|
||||
<ul>
|
||||
<li><a href="http://xue.vlcms.com/" target="_blank">帮助</a></li>
|
||||
<li><a href="http://www.vlcms.com/" target="_blank">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="loginbody" >
|
||||
|
||||
<span class="systemlogo"></span>
|
||||
|
||||
<div class="loginbox">
|
||||
<form class="inputlogin">
|
||||
<div class="wrap">
|
||||
<h3><span>手机号码快捷登录</span><span>User Login</span></h3>
|
||||
<ul>
|
||||
<li>
|
||||
<img src="__IMG__/login_name.png" class="icon icon-user">
|
||||
<input name="mobile" type="text" id="mobile" class="login_input" value="" autocomplete="off" placeholder="请输入手机号码" />
|
||||
</li>
|
||||
<li>
|
||||
<img src="__IMG__/login_code.png" class="icon icon-code">
|
||||
<input name="verify" type="text" class="login_input verify" value="" placeholder="请填写验证码"/>
|
||||
<div id="sendSasfeCode" class="g-btn">获取验证码</div>
|
||||
</li>
|
||||
<li><input name="" type="submit" class="loginbtn" value="登录" /></li>
|
||||
<li style="color: grey"><input type="checkbox" name="auto_login" id="">下次自动登录</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- <div class="loginbm"><i>©徐州梦创信息科技有限公司 版权所有</i>2016 <a href="http://www.vlcms.com/" target="_blank">vlcms.com</a> ©版权所有</div> -->
|
||||
|
||||
<div id="tip" class="tip"><a class="tipclose hidden" ></a><div class="tipmain"><div class="tipicon"></div><div class="tipinfo">这是内容</div></div></div>
|
||||
<script>
|
||||
$('#sendSasfeCode').on('click',function() {
|
||||
if ($(this).hasClass('g-btntn')) {
|
||||
return false;
|
||||
}
|
||||
var phone = $.trim($('#mobile').val());
|
||||
if (phone == '') {
|
||||
alert("手机号不能为空");
|
||||
return false;
|
||||
}
|
||||
if (phone.length !== 11 || !(/^[1][35789][0-9]{9}$/.test(phone))) {
|
||||
pmsg.msg("格式不正确");
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
type:'post',
|
||||
dataType:'json',
|
||||
data:'phone='+phone,
|
||||
url:'{:U("telsafecode")}',
|
||||
success:function(data) {
|
||||
if (data.status ==1) {
|
||||
r(1);
|
||||
} else {
|
||||
alert(data.msg);
|
||||
}
|
||||
},
|
||||
error:function() {
|
||||
alert('服务器开小差了,请稍后再试。');
|
||||
}
|
||||
});
|
||||
var r = function(i, t) {
|
||||
if (i>0) {
|
||||
var r = 60;
|
||||
e='#sendSasfeCode';
|
||||
$(e).removeClass('g-btn').addClass('g-btntn');
|
||||
var a = setInterval(function() {
|
||||
r--;
|
||||
$(e).text(r + '秒');
|
||||
0 == r && ($(e).removeClass('g-btntn').addClass('g-btn'),
|
||||
$(e).text('获取验证码'),
|
||||
clearInterval(a))
|
||||
},1000)
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
/**顶部警告栏*/
|
||||
var content = $('#main');
|
||||
var top_alert = $('#tip');
|
||||
|
||||
top_alert.find('.tipclose').on('click', function () {
|
||||
top_alert.removeClass('block').slideUp(200);
|
||||
});
|
||||
|
||||
window.updateAlert = function (text,c) {
|
||||
text = text||'default';
|
||||
c = c||false;
|
||||
if ( text!='default' ) {
|
||||
top_alert.find('.tipinfo').text(text);
|
||||
if (top_alert.hasClass('block')) {
|
||||
} else {
|
||||
top_alert.addClass('block').slideDown(200);
|
||||
}
|
||||
} else {
|
||||
if (top_alert.hasClass('block')) {
|
||||
top_alert.removeClass('block').slideUp(200);
|
||||
}
|
||||
}
|
||||
if ( c!=false ) {
|
||||
top_alert.removeClass('tip_error tip_right').addClass(c);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$(function(){
|
||||
$(".inputlogin").unbind('submit').submit(function(){
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
async: true,
|
||||
dataType: 'json',
|
||||
url: "{:U('cp_login')}",
|
||||
data: $(".inputlogin").serialize(),
|
||||
success: function(data) {
|
||||
if(data.status!=1){
|
||||
var msg = data.info ? data.info : data.msg;
|
||||
alert(msg)
|
||||
}else{
|
||||
window.location.href = data.url;
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
updateAlert("服务器故障!",'tip_error');
|
||||
setTimeout(function(){
|
||||
$('#tip').find('.tipclose').click();
|
||||
},1500);
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
||||
|
@ -0,0 +1,358 @@
|
||||
<extend name="Public/cp_base"/>
|
||||
|
||||
<block name="body">
|
||||
<link rel="stylesheet" href="__CSS__/select2.min.css" type="text/css" />
|
||||
<link rel="stylesheet" href="__CSS__/pro_promote.css" type="text/css" />
|
||||
<link rel="stylesheet" href="__CSS__/black.css" type="text/css" />
|
||||
<script src="__STATIC__/jquery.form.js"></script>
|
||||
<script src="__STATIC__/layer/layer.js"></script>
|
||||
<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;}
|
||||
.layui-layer-dialog .layui-layer-content{color:red}
|
||||
</style>
|
||||
|
||||
<div class="cf main-place top_nav_list navtab_list">
|
||||
<h3 class="page_title">万盟对账单管理</h3>
|
||||
</div>
|
||||
|
||||
<!-- 数据列表 -->
|
||||
<div class="data_list">
|
||||
|
||||
<div class="">
|
||||
<table>
|
||||
<!-- 表头 -->
|
||||
<thead>
|
||||
<tr>
|
||||
<th>对账单类型</th>
|
||||
<th>生成时间</th>
|
||||
<th>对账单日期</th>
|
||||
<th>对账金额</th>
|
||||
<th>确认状态</th>
|
||||
<th>操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<!-- 列表 -->
|
||||
<tbody>
|
||||
<if condition = "empty($list_data)">
|
||||
<tr>
|
||||
<td colspan="16" class="text-center">aOh! 暂时还没有内容!</td>
|
||||
</tr>
|
||||
</if>
|
||||
<notemtpy name = "list_data">
|
||||
<volist name="list_data" id="data">
|
||||
<tr>
|
||||
<td>{$data.statement_type_str}</td>
|
||||
<td>{:set_show_time($data['create_time'])}</td>
|
||||
<td>{:set_show_time($data['statement_begin_time'])}-{:set_show_time($data['statement_end_time'])}</td>
|
||||
<td>{$data.statement_money}</td>
|
||||
|
||||
<td>
|
||||
<?php if($data['is_confirm'] == 0) {?>
|
||||
<span>未确认</span>
|
||||
<?php }?>
|
||||
<?php if(intval($data['is_confirm']) == 1) {?>
|
||||
<span>确认</span>
|
||||
<?php }?>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="javascript:void(0); " class="show" data-url="{:U('VerifyBill/show',array(
|
||||
'id'=>$data['id']
|
||||
))}">查看</a>
|
||||
<a href="{:U('export',array('id'=>$data['id']))}" class="">导出</a>
|
||||
</td>
|
||||
</tr>
|
||||
</volist>
|
||||
</notemtpy>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="page">
|
||||
<if condition="$is_admin eq true ">
|
||||
<a class="sch-btn" href="{:U('Export/promote_list',array_merge(['xlsname'=>'推广员管理_推广员列表'.((I('type',1)==2)?'_混服申请':'_推广员列表')],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="Promote/lists/type/{:I('type',1)}">
|
||||
</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>
|
||||
<script type="text/javascript">
|
||||
//导航高亮
|
||||
highlight_subnav('{:U('Promote/belong')}');
|
||||
|
||||
$(".show").click(function () {
|
||||
var url = $(this).data('url');
|
||||
layer.open({
|
||||
type: 2,
|
||||
title: '海南万盟天下有限公司',
|
||||
shadeClose: true,
|
||||
shade: 0.8,
|
||||
area: ['70%', '80%'],
|
||||
content: url
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
$(function(){
|
||||
//搜索功能
|
||||
$("#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;
|
||||
}
|
||||
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();
|
||||
});
|
||||
/* 状态搜索子菜单 */
|
||||
/*渠道删除*/
|
||||
$('.delete').click(function(){
|
||||
var id = $(this).attr('data-id');
|
||||
layer.confirm('渠道删除后,下级渠道同时被删除,所属数据归属于自然渠道!', {
|
||||
title:'确定要删除该渠道?',
|
||||
icon:0,
|
||||
btn: ['删除','取消'] //按钮
|
||||
}, function(){
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "{:U('del_promote')}",
|
||||
dataType: 'json',
|
||||
async: false,
|
||||
data: {id:id},
|
||||
success:function(data){
|
||||
if(data.status==1){
|
||||
layer.msg(data.msg);
|
||||
setTimeout(function(){
|
||||
window.location.reload();
|
||||
},1500);
|
||||
}
|
||||
}
|
||||
});
|
||||
}, function(){
|
||||
layer.close();
|
||||
});
|
||||
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
|
||||
//点击字母按照条件按钮筛选
|
||||
$(".pro_promot_select_list_con").click(function(){
|
||||
//选中高亮样式
|
||||
$(this).addClass('active');
|
||||
$(this).siblings().removeClass('active');
|
||||
|
||||
var that = $(this);
|
||||
var index = $(this).attr("data-index");
|
||||
|
||||
$("#game_list li").each(function(index,ele){
|
||||
var short = $(this).attr('data-short');
|
||||
$(this).show();
|
||||
if(that.attr('data-index')){
|
||||
if(that.attr('data-index')!=short.charAt(0)){
|
||||
$(this).hide();
|
||||
}
|
||||
}
|
||||
})
|
||||
});
|
||||
|
||||
//打开弹窗
|
||||
$(".ajax-view").click(function(){
|
||||
//获取游戏列表
|
||||
var url = "{:U('Promote/getPromoteGame')}";
|
||||
var id = $(this).attr('data-id');
|
||||
$.post(url,{id:id},function(res){
|
||||
if(res.code==1){
|
||||
|
||||
$(".pro_promot_select_list a").eq(0).addClass('active');
|
||||
$(".pro_promot_select_list a").eq(0).siblings().removeClass('active');
|
||||
|
||||
var game_list = res.data.game_list;
|
||||
var promote_info = res.data.promote_info;
|
||||
var lis = [];
|
||||
|
||||
$.each(game_list,function(index,ele){
|
||||
if(ele.game_name.length>6){
|
||||
ele.game_name = ele.game_name .substring(0,6)+"..."
|
||||
}
|
||||
lis.push('<li class="fl pro_promot_game_con" data-short="'+ele.short+'">');
|
||||
|
||||
|
||||
if(promote_info['game_ids']==''){
|
||||
lis.push('<input type="checkbox" value="'+ele.id+'" name="game_ids[]" class="fl pro_promot_game_check jsgameid" checked="checked" id="gameCheck'+index+'" />');
|
||||
}else{
|
||||
if(promote_info['game_ids'].indexOf(ele.id)>-1){
|
||||
lis.push('<input type="checkbox" value="'+ele.id+'" name="game_ids[]" class="fl pro_promot_game_check jsgameid" checked="checked" id="gameCheck'+index+'" />');
|
||||
}else{
|
||||
lis.push('<input type="checkbox" value="'+ele.id+'" name="game_ids[]" class="fl pro_promot_game_check jsgameid" id="gameCheck'+index+'" />');
|
||||
}
|
||||
}
|
||||
lis.push('<label for="gameCheck'+index+'" class="fl"></label>');
|
||||
lis.push('<span class="fl pro_promot_game_name">'+ele.game_name+'</span>');
|
||||
lis.push('</li>');
|
||||
});
|
||||
|
||||
$("#game_list").html(lis.join(''));
|
||||
$(".pro_promot_number").text(res.data.promote_info.account);
|
||||
$("#se_promote_id").val(res.data.promote_info.id);
|
||||
$(".pro_promot").css("display","block");
|
||||
|
||||
jsgameid();
|
||||
|
||||
}else{
|
||||
var tip_msg = res.info ? res.info : '操作失败';
|
||||
layer.msg(tip_msg);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
//保存修改
|
||||
$(".pro_promot_btn_confirm").click(function(){
|
||||
$("#ajaxForm").ajaxSubmit(function(res){
|
||||
layer.msg(res.msg);
|
||||
$(".pro_promot").hide();
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
//关闭弹窗
|
||||
$(".pro_promot_close").click(function(){
|
||||
$(".pro_promot").css("display","none");
|
||||
});
|
||||
//取消修改
|
||||
$(".pro_promot_btn_cancel").click(function(){
|
||||
$(".pro_promot").css("display","none");
|
||||
layer.msg('修改已取消');
|
||||
});
|
||||
|
||||
$(".jsgamecheckall").click(function(){
|
||||
$(this).closest('.jsgamecheckallbox').siblings("#game_list").find(".jsgameid").prop("checked", this.checked);
|
||||
});
|
||||
|
||||
//可申请游戏 全选及全选反选 功能 @author zwm date 20180604
|
||||
function jsgameid(){
|
||||
$(".jsgameid").click(function(){
|
||||
var option = $(this).closest('ul').find(".jsgameid"),
|
||||
checkall = $(this).closest('ul').siblings('.jsgamecheckallbox').find('.jsgamecheckall');
|
||||
option.each(function(i){
|
||||
if(!this.checked){
|
||||
checkall.prop("checked", false);
|
||||
return false;
|
||||
}else{
|
||||
checkall.prop("checked", true);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</block>
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue