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.
354 lines
16 KiB
HTML
354 lines
16 KiB
HTML
<extend name="Public/base"/>
|
|
<block name="css">
|
|
<link rel="stylesheet" href="__CSS__/select2.min.css" type="text/css" />
|
|
<link rel="stylesheet" href="__CSS__/promote.css" type="text/css"/>
|
|
<link rel="stylesheet" type="text/css" href="__STATIC__/webuploader/webuploader.css" media="all">
|
|
<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;}
|
|
.textarea-style {
|
|
width: 200px;
|
|
height: 80px;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
}
|
|
.mustmark {
|
|
color: #FF0000;
|
|
font-style: normal;
|
|
margin: 0 3px;
|
|
}
|
|
.el-card {
|
|
border-radius: 4px;
|
|
border: 1px solid #ebeef5;
|
|
background-color: #fff;
|
|
overflow: hidden;
|
|
color: #303133;
|
|
transition: .3s;
|
|
}
|
|
.el-card .card-body {
|
|
padding: 20px;
|
|
}
|
|
.el-card .card-header {
|
|
padding: 18px 20px;
|
|
border-bottom: 1px solid #ebeef5;
|
|
box-sizing: border-box;
|
|
}
|
|
.clearfix:after {
|
|
content:"";
|
|
display: block;
|
|
clear:both;
|
|
}
|
|
.set-default-btn {
|
|
border: none;
|
|
background: #3C95C8;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
border-bottom: none;
|
|
width: 55px;
|
|
height: 28px;
|
|
line-height: 26px;
|
|
}
|
|
</style>
|
|
</block>
|
|
<block name="body">
|
|
<script type="text/javascript" src="__JS__/bootstrap.min.js"></script>
|
|
<script type="text/javascript" src="__JS__/select2.min.js"></script>
|
|
<script type="text/javascript" src="__JS__/jquery.form.js"></script>
|
|
<script type="text/javascript" src="__STATIC__/uploadify/jquery.uploadify.min.js"></script>
|
|
|
|
<script src="__STATIC__/md5.js" type="text/javascript" charset="utf-8"></script>
|
|
<script type="text/javascript" src="__STATIC__/webuploader/webuploader.js"></script>
|
|
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
|
<script type="text/javascript" src="__STATIC__/layer/extend/layer.ext.js"></script>
|
|
<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="jssearch fl cf search_list">
|
|
<div class="input-list search-title-box">
|
|
<label>搜索:</label>
|
|
</div>
|
|
<div class="input-list">
|
|
<select id="company_belong_select" name="company_belong" class="select_gallery" style="width:200px;">
|
|
<option value="">请选择公司类型</option>
|
|
<?php foreach($companyTypes as $key => $name):?>
|
|
<option value="<?=$key?>"><?=$name?></option>
|
|
<?php endforeach;?>
|
|
</select>
|
|
</div>
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
<select id="company_select" name="company_id" class="select_gallery" style="width:200px;">
|
|
<option value="">请选择公司</option>
|
|
<?php foreach($companies as $company):?>
|
|
<option value="<?=$company['id']?>"><?=$company['company_name']?></option>
|
|
<?php endforeach;?>
|
|
</select>
|
|
</div>
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
<select id="game_type_select" name="game_type_id" class="select_gallery" style="width:200px;">
|
|
<option value="">请选择游戏类型</option>
|
|
<?php foreach($gameTypes as $gameType):?>
|
|
<option value="<?=$gameType['id']?>"><?=$gameType['type_name']?></option>
|
|
<?php endforeach;?>
|
|
</select>
|
|
</div>
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
<select id="game_select" name="game_id" class="select_gallery" style="width:200px;">
|
|
<option value="">请选择游戏</option>
|
|
<?php foreach($games as $game):?>
|
|
<option value="<?=$game['id']?>"><?=$game['name']?></option>
|
|
<?php endforeach;?>
|
|
</select>
|
|
</div>
|
|
<div class="input-list">
|
|
<input type="text" id="started_at" name="started_at" class="time" value="" placeholder="生效开始时间" autocomplete="off" />
|
|
-
|
|
<div class="input-append date" id="datetimepicker" style="display:inline-block">
|
|
<input type="text" id="ended_at" name="ended_at" class="time" value="" placeholder="生效结束时间" autocomplete="off" />
|
|
<span class="add-on"><i class="icon-th"></i></span>
|
|
</div>
|
|
</div>
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
<select id="time_type" name="time_type" class="select_gallery" style="width:150px;">
|
|
<option value="1" <if condition="$_GET['time_type'] eq 1">selected</if>>历史所有</option>
|
|
<option value="2" <if condition="$_GET['time_type'] eq 2">selected</if>>当前生效</option>
|
|
</select>
|
|
</div>
|
|
<br>
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
<select name="alipay_merchant_id" id="alipay-merchant-select" class="select_gallery" style="width:200px;">
|
|
<option value="0">支付宝支付配置商户</option>
|
|
<?php foreach($aliMerchants as $merchant):?>
|
|
<option value="<?=$merchant['id']?>"><?=$merchant['name']?></option>
|
|
<?php endforeach;?>
|
|
</select>
|
|
</div>
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
<select name="weixin_merchant_id" id="weixin-merchant-select" class="select_gallery" style="width:200px;">
|
|
<option value="0">微信支付配置商户</option>
|
|
<?php foreach($weixinMerchants as $merchant):?>
|
|
<option value="<?=$merchant['id']?>"><?=$merchant['name']?></option>
|
|
<?php endforeach;?>
|
|
</select>
|
|
</div>
|
|
<div class="input-list input-list-promote search_label_rehab">
|
|
<select name="express_merchant_id" id="express-merchant-select" class="select_gallery" style="width:200px;">
|
|
<option value="0">快捷支付配置商户</option>
|
|
<?php foreach($expressMerchants as $merchant):?>
|
|
<option value="<?=$merchant['id']?>"><?=$merchant['name']?></option>
|
|
<?php endforeach;?>
|
|
</select>
|
|
</div>
|
|
<div class="input-list">
|
|
<a class="sch-btn" href="javascript:;" id="search" url="{:U('PaymentMerchant/rules')}">搜索</a>
|
|
<a class="sch-btn" style="width: 100px;" href="{:U('PaymentMerchant/addRule')}">新增配置</a>
|
|
</div>
|
|
<!-- <div class="input-list">
|
|
<a class="sch-btn" href="{:U('Export/expUser',array_merge(array('id'=>12,),I('get.')))}">导出</a>
|
|
</div> -->
|
|
</div>
|
|
</div>
|
|
<div class="el-card" style="width: 100%; margin-bottom: 10px;">
|
|
<div class="card-body">
|
|
<div class="default-setting">
|
|
<div class="title" style="display: inline-block; font-weight: 600;">当前系统默认商户指: </div>
|
|
<div class="item" style="display: inline-block;margin-left: 15px;">
|
|
支付宝:<?=$aliDefaultMerchant ? $aliDefaultMerchant['name'] : '无' ?>
|
|
</div>
|
|
<div class="item" style="display: inline-block;margin-left: 15px;">
|
|
微信:<?=$weixinDefaultMerchant ? $weixinDefaultMerchant['name'] : '无' ?>
|
|
</div>
|
|
<div class="item" style="display: inline-block;margin-left: 15px;">
|
|
快捷支付:<?=$expressDefaultMerchant ? $expressDefaultMerchant['name'] : '无' ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 数据列表 -->
|
|
<div class="data_list">
|
|
<div class="">
|
|
<table>
|
|
<!-- 表头 -->
|
|
<thead>
|
|
<tr>
|
|
<th>公司类型</th>
|
|
<th>推广公司</th>
|
|
<th>游戏类型</th>
|
|
<th>游戏产品</th>
|
|
<th>支付宝支付配置</th>
|
|
<th>商户账号</th>
|
|
<th>微信支付配置</th>
|
|
<th>商户账号</th>
|
|
<th>快捷支付配置</th>
|
|
<th>商户账号</th>
|
|
<th>生效时间</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<!-- 列表 -->
|
|
<tbody>
|
|
<empty name ="records">
|
|
<td colspan="12" class="text-center">aOh! 暂时还没有内容!</td>
|
|
<else />
|
|
<volist name="records" id="data">
|
|
<tr data-id="<?=$data['id']?>">
|
|
<td>{$data.company_type_name}</td>
|
|
<td>{$data.company_name}</td>
|
|
<td>{$data.game_type_name}</td>
|
|
<td>{$data.game_name}</td>
|
|
<td>{$data.alipay_merchant_name}</td>
|
|
<td>{$data.alipay_merchant_account}</td>
|
|
<td>{$data.weixin_merchant_name}</td>
|
|
<td>{$data.weixin_merchant_account}</td>
|
|
<td>{$data.express_merchant_name}</td>
|
|
<td>{$data.express_merchant_account}</td>
|
|
<td>{$data.effective_time_display}</td>
|
|
<td>
|
|
|
|
<div class="partakebtn">
|
|
<?php if($data['id'] > 0):?>
|
|
<a href="<?=U('editRule', ['id' => $data['id']])?>">编辑</a>
|
|
<a class="delete-btn">删除</a>
|
|
<?php endif;?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</volist>
|
|
</empty>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="page">
|
|
<a class="sch-btn export-btn" href="{:U(CONTROLLER_NAME.'/'.ACTION_NAME,array_merge(['export'=>1],I('get.')))}" target="_blank">导出</a>
|
|
{$_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="Query/withdraw">
|
|
</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">
|
|
<link href="__STATIC__/datetimepicker/css/datetimepicker.css" rel="stylesheet" type="text/css">
|
|
<php>if(C('COLOR_STYLE')=='blue_color') echo '<link href="__STATIC__/datetimepicker/css/datetimepicker_blue.css" rel="stylesheet" type="text/css">';</php>
|
|
<link href="__STATIC__/datetimepicker/css/dropdown.css" rel="stylesheet" type="text/css">
|
|
<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 src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
|
<script type="text/javascript" src="__STATIC__/layer/extend/layer.ext.js" ></script>
|
|
<script src="__STATIC__/jquery.cookie.js" charset="utf-8"></script>
|
|
<script>
|
|
<volist name=":I('get.')" id="vo">
|
|
Think.setValue('{$key}',"{$vo}");
|
|
</volist>
|
|
$(".select_gallery").select2();
|
|
</script>
|
|
<script type="text/javascript">
|
|
//导航高亮
|
|
highlight_subnav("{:U('PaymentMerchant/rules')}");
|
|
$(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;
|
|
});
|
|
//回车自动提交
|
|
$('.jssearch').find('input').keyup(function(event){
|
|
if(event.keyCode===13){
|
|
$("#search").click();
|
|
}
|
|
})
|
|
$('.time').datetimepicker({
|
|
format: 'yyyy-mm-dd',
|
|
language: "zh-CN",
|
|
autoclose: true,
|
|
scrollMonth: false,
|
|
scrollTime: false,
|
|
scrollInput: false,
|
|
startView: 'month',
|
|
minView:'month',
|
|
maxView:'month',
|
|
});
|
|
function getIds() {
|
|
var ids = [];
|
|
$('.ids:checked').each(function() {
|
|
ids.push($(this).val());
|
|
})
|
|
return ids;
|
|
}
|
|
|
|
function deleteRule(id) {
|
|
$.ajax({
|
|
url: '{:U("deleteRule")}',
|
|
type: 'post',
|
|
dataType: 'json',
|
|
data: {id: id},
|
|
success: function(result) {
|
|
if (result.status == 1) {
|
|
layer.msg(result.message)
|
|
setTimeout(function() {
|
|
window.location.href = window.location.href
|
|
}, 200)
|
|
} else {
|
|
layer.msg(result.message)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
$('.delete-btn').on({
|
|
click: function() {
|
|
var id = $(this).parents('tr').eq(0).attr('data-id')
|
|
layer.confirm('确定要删除该规则 ?请确保删除后时间范围内规则完整!', {icon: 3, title:'提示'}, function(index){
|
|
deleteRule(id)
|
|
})
|
|
}
|
|
})
|
|
});
|
|
/* $(".export-btn").on("click",function(e){
|
|
e.preventDefault();
|
|
window.location.href=$(this).attr("href")
|
|
}) */
|
|
</script>
|
|
</block> |