master
elf 2 years ago
parent f8bc90ea6f
commit e450003f8e

@ -112,7 +112,7 @@ return array(
'TMPL_ACTION_SUCCESS' => MODULE_PATH.'View/Public/success.html', // 默认成功跳转对应的模板文件
'TMPL_EXCEPTION_FILE' => MODULE_PATH.'View/Public/exception.html',// 异常页面的模板文件
/*默认公司名称*/
'DEFAULT_COMPANY'=>"海南万盟天下科技有限公司",
'DEFAULT_COMPANY'=>"橙枫科技有限公司",
'OFFICIEL_CHANNEL'=>"江息网络",
/*分库的表格*/
'SUBSITE_TABLE'=>[

@ -521,7 +521,7 @@ class CompanyStatementSetController extends Controller {
"company_type"=>1
];
//获取pc公司
$company = M("CompanyInfo","tab_")->field("id,partner,link_man,link_phone,address,company_tax_no,payee_name,bank_account,opening_bank")->where("partner = '海南万盟天下科技有限公司'")->find();
$company = M("CompanyInfo","tab_")->field("id,partner,link_man,link_phone,address,company_tax_no,payee_name,bank_account,opening_bank")->where("partner = '橙枫科技科技有限公司'")->find();
$first_party_info = json_encode($company,JSON_UNESCAPED_UNICODE);
$company['partner'] = C("OFFICIEL_CHANNEL");
$second_party_info = json_encode($company,JSON_UNESCAPED_UNICODE);

@ -5,7 +5,7 @@ namespace Admin\Controller;
class CompanySystemRatioController extends AdminController
{
private $api = "http://admin.wmtxkj.cn/index.php?g=Api&m=CpJuheCompany&a=ratioIndex";
private $api = "http://admin.chengfeng123.cn/index.php?g=Api&m=CpJuheCompany&a=ratioIndex";
public function _initialize()
{
@ -187,7 +187,7 @@ class CompanySystemRatioController extends AdminController
$time = date("Y-m-d",time());
$this->assign('title',"海南万盟天下产品分成比例体系[{$time}]");
$this->assign('title',"橙枫科技产品分成比例体系[{$time}]");
$this->display("export");die();
}

@ -8418,8 +8418,8 @@ class ExportController extends Controller
// array('inside_cash_count','内充支出'),
// array('all_cash_count','游戏内充值合计'),
// array('notice_fail_count','联运通知失败合计'),
// array('agg_wm_amount','聚合万盟数据'),
// array('agg_wm_failed_amount','聚合万盟通知失败'),
// array('agg_wm_amount','聚合橙枫数据'),
// array('agg_wm_failed_amount','聚合橙枫通知失败'),
// array('test_amount','聚合平台测试订单'),
// array('agg_amount','聚合其他渠道数据'),
// array('agg_failed_amount','聚合其他渠道通知失败订单'),

@ -874,8 +874,8 @@ class FinanceController extends ThinkController
'all_cash_count'=>'游戏内充值合计',
'discount_amount'=>'优惠金额',
'notice_fail_count'=>'联运通知失败合计',
'agg_wm_amount'=>'聚合万盟数据',
'agg_wm_failed_amount'=>'聚合万盟通知失败',
'agg_wm_amount'=>'聚合橙枫数据',
'agg_wm_failed_amount'=>'聚合橙枫通知失败',
'test_amount'=>'聚合平台测试订单',
'agg_amount'=>'聚合其他渠道数据',
'agg_failed_amount'=>'聚合其他渠道通知失败订单'
@ -895,7 +895,8 @@ class FinanceController extends ThinkController
$this->checkListOrCountAuthRestMap($map,[]);
$testWhere['_string'] .= ' and game_id in(' . implode(',', $exceptIds) . ')';
$testAllAmount = M('test_order', 'tab_')->where($testWhere)->sum('pay_amount');
// $testAllAmount = M('test_order', 'tab_')->where($testWhere)->sum('pay_amount'); // 有bug 20220822
$testAllAmount = 0;
//统计合计
if (count($exceptIds) > 0) {

@ -1337,11 +1337,17 @@ class MarketPercentageController extends ThinkController
$map = ['_string' => '1=1'];
$groupIds = $this->MarketEvent->getMarketGroupId();
$conditions = [];
if (empty($groupIds)) {
$conditions['_string'] = '1=0';
} else {
$conditions['group_id'] = ['in', $groupIds];
}
$admin_data = M("member")
->field("access.uid admin_id")
->join("left join sys_auth_group_access access on sys_member.uid = access.uid")
->join("left join sys_auth_group auth on access.group_id=auth.id")
->where(['group_id' => ['in', $groupIds]])
->where($conditions)
->select();
if ($admin_data) {
$map['tab_market_altogether.admin_id'] = ['in', array_column($admin_data, 'admin_id')];

@ -100,12 +100,19 @@ class PayChannelController extends ThinkController
$handleCoinData[$value['game_id']] = $value['platform_coin'];
}
//测试白名单
$testList = implode(",",M("test_white_list","tab_")->getField("user_id",true));
$testList = M("test_white_list","tab_")->getField("user_id",true);
$conditions = [];
if (empty($testList)) {
$conditions['_string'] = '1=0';
} else {
$conditions['user_id'] = ['in', $testList];
}
//测试数据汇总计算
$testData = M('spend','tab_')
->field("sum(pay_amount) as test_coin,game_name,game_id")
->where($map)
->where("user_id in ({$testList})")
->where($conditions)
->group('game_id')
->select();

@ -1095,7 +1095,7 @@ class PromoteCompanyController extends ThinkController
}
$list = M('service_agreement', 'tab_')
->field("tab_service_agreement.*, group_concat(distinct(tab_promote_company.company_name)) as company_name")
->join('tab_promote_company on tab_promote_company.service_agreement_show = tab_service_agreement.id', 'LEFT')->where($map)->group('tab_service_agreement.id asc')->page($p, $row)->order("status desc")->select();
->join('tab_promote_company on tab_promote_company.service_agreement_show = tab_service_agreement.id', 'LEFT')->where($map)->group('tab_service_agreement.id')->page($p, $row)->order("status desc")->select();
$count = M('service_agreement', 'tab_')->where($map)->count();
$page = set_pagination($count, $row);
if ($page) {

@ -48,8 +48,8 @@ class StatementMangementController extends ThinkController
if ($_REQUEST['company_id']) {
$map['company_name'] = $_REQUEST['company_id'];
// if ($_REQUEST['company_id']=='万盟天下科技') {
// $map['company_name'] = '海南万盟天下科技有限公司';
// if ($_REQUEST['company_id']=='橙枫科技') {
// $map['company_name'] = '橙枫科技有限公司';
// }
}

@ -23,7 +23,7 @@ class StatementWarningSetController extends Controller {
private $cpCompanyIsWm;
private $promoteCompanyIsWm;
private $statementWarningKey=[
'wm_platm'=>'万盟平台',
'wm_platm'=>'橙枫平台',
'up_statement'=>'上游',
'pc_statement'=>'下游内团',
'pu_statement'=>'下游外团',
@ -127,7 +127,7 @@ class StatementWarningSetController extends Controller {
$this->inSideCompanyIds = implode(",",$res);
}
/**
* 获取CP是否万盟结算数据
* 获取CP是否橙枫结算数据
*/
private function setCompanyIsWm()
{
@ -177,7 +177,7 @@ class StatementWarningSetController extends Controller {
}
/**
* 获取当前万盟结算额
* 获取当前橙枫结算额
*/
private function getAllWmAmount()
{

@ -378,7 +378,7 @@ class SubCompanyStatementSetController extends Controller {
"company_type"=>1
];
//获取pc公司
$company = M("CompanyInfo","tab_")->field("id,partner,link_man,link_phone,address,company_tax_no,payee_name,bank_account,opening_bank")->where("partner = '海南万盟天下科技有限公司'")->find();
$company = M("CompanyInfo","tab_")->field("id,partner,link_man,link_phone,address,company_tax_no,payee_name,bank_account,opening_bank")->where("partner = '橙枫科技有限公司'")->find();
$first_party_info = json_encode($company,JSON_UNESCAPED_UNICODE);
$company['partner'] = C("OFFICIEL_CHANNEL");
$second_party_info = json_encode($company,JSON_UNESCAPED_UNICODE);

@ -36,6 +36,7 @@ class MarketEvent extends Controller
*/
public function getMarketGroupId($departmentId = null)
{
return [];
$departmentIds = $departmentId ? $departmentId : $this->MarketDepartmentId;
$res = M('department','sys_')->where("id in ({$departmentIds})")->getField("group_ids",true);
$sendData = '';

@ -897,9 +897,12 @@ class SpendModel extends Model
*/
public function gameStatistics($map,$gameIds, $row = 0, $page = 1)
{
$gameMap = [
"g.id"=>["in",$gameIds]
];
$gameMap = [];
if (empty($gameIds)) {
$gameMap['_string'] = '1=0';
} else {
$gameMap['g.id'] = ['in', $gameIds];
}
$gameQuery = M('game', 'tab_')
->alias('g')
->field(['g.id game_id', 'g.relation_game_name game_name', 'g.unique_code', 'g.game_type_name', 'g.sdk_version','IFNULL(p.partner,"无") as partner_name'])
@ -974,7 +977,7 @@ class SpendModel extends Model
}
/**
*获取聚合万盟数据
*获取聚合橙枫数据
*/
public function totalWmGameStatistics($map,$gameIds)
{

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<if condition="$data['first_party_info']">

@ -266,7 +266,7 @@
var url = "{:U('viewStatement')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -273,7 +273,7 @@
var url = "{:U('viewPool')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -414,7 +414,7 @@
var url = "{:U('setPayment')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -426,7 +426,7 @@
var url = "{:U('viewPayment')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 20px;">

@ -87,7 +87,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 20px;">

@ -87,7 +87,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<if condition="$data['first_party_info']">

@ -87,7 +87,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -87,7 +87,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -455,7 +455,7 @@
var url = "{:U('viewStatement')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -468,7 +468,7 @@
var url = "{:U('viewSpecialComplement')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -482,7 +482,7 @@
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -618,7 +618,7 @@
var url = "{:U('poolWmStatement')}"+"&id="+text;
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],

@ -233,7 +233,7 @@
var url = "{:U('viewStatement')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],

@ -90,7 +90,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<if condition="$data['first_party_info']">

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<if condition="$data['first_party_info']">

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<if condition="$data['first_party_info']">

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -270,7 +270,7 @@
var url = "{:U('viewStatement')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],

@ -254,7 +254,7 @@
var url = "{:U('CompanyStatementPool/viewPool')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -341,7 +341,7 @@
url = "{:U('setPayment')}"+"&id="+text;
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -357,7 +357,7 @@
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -373,7 +373,7 @@
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -387,7 +387,7 @@
var url = "{:U('viewStatement')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 20px;">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 20px;">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 20px;">

@ -88,7 +88,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -88,7 +88,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -91,7 +91,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -91,7 +91,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -298,7 +298,7 @@
var url = "{:U('viewPool')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -311,7 +311,7 @@
var url = "{:U('viewUnPaymentPool')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -324,7 +324,7 @@
var url = "{:U('editPool')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -337,7 +337,7 @@
var url = "{:U('editPool')}"+"&id="+id+"&type=1"
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -567,7 +567,7 @@
var url = "{:U('setPayment')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -579,7 +579,7 @@
var url = "{:U('viewPayment')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 20px;">

@ -87,7 +87,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 20px;">

@ -87,7 +87,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<if condition="$data['first_party_info']">

@ -90,7 +90,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -90,7 +90,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -100,12 +100,12 @@
</style>
<div class="cf main-place top_nav_list navtab_list">
<h3 class="page_title">海南万盟天下产品分成比例体系</h3>
<h3 class="page_title">橙枫产品分成比例体系</h3>
<!-- <p class="description_text" id="order_url">仅当汇总单审批通过的单子才允许进行打款</p>-->
</div>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -84,11 +84,11 @@
<li class="question_title">数据相关说明</li>
<li class="question_list">
<span class="">上游结算:</span>
<span class="">游戏内充值合计 + 聚合万盟数据 + 聚合其他渠道数据</span>
<span class="">游戏内充值合计 + 聚合橙枫数据 + 聚合其他渠道数据</span>
</li>
<li class="question_list">
<span class="">下游结算:</span>
<span class="">游戏内充值合计 + 联运通知失败合计 + 聚合万盟数据 + 聚合万盟通知失败 - 下游不结算订单</span>
<span class="">游戏内充值合计 + 联运通知失败合计 + 聚合橙枫数据 + 聚合橙枫通知失败 - 下游不结算订单</span>
</li>
<li class="question_list">
<span class="">下游不结算订单:</span>
@ -195,11 +195,11 @@
<th ><div class="tooltip">优惠金额<span class="tooltiptext"><span style="margin-left: -10px">游戏折扣和代金券优惠金额</span></span></div></th>
<th ><div class="tooltip"><span style="color: red">联运通知失败合计</span><span class="tooltiptext"><span style="margin-left: -10px">联运所有通知失败的合计金额</span></span></div></th>
<th ><div class="tooltip">聚合万盟数据<span class="tooltiptext"><span style="margin-left: -10px">聚合平台万盟渠道支付成功且通知成功的金额</span></span></div></th>
<th ><div class="tooltip"><span style="color: red">聚合万盟通知失败</span><span class="tooltiptext"><span style="margin-left: -10px">聚合平台万盟渠道通知失败的订单合计金额</span></span></div></th>
<th ><div class="tooltip">聚合橙枫数据<span class="tooltiptext"><span style="margin-left: -10px">聚合平台橙枫渠道支付成功且通知成功的金额</span></span></div></th>
<th ><div class="tooltip"><span style="color: red">聚合橙枫通知失败</span><span class="tooltiptext"><span style="margin-left: -10px">聚合平台橙枫渠道通知失败的订单合计金额</span></span></div></th>
<th ><div class="tooltip"><span style="color: red">聚合平台测试订单</span><span class="tooltiptext"><span style="margin-left: -10px">聚合平台测试订单</span></span></div></th>
<th ><div class="tooltip">聚合其他渠道数据<span class="tooltiptext"><span style="margin-left: -10px">聚合平台其他渠道(不含万盟)支付成功通知成功订单合计</span></span></div></th>
<th ><div class="tooltip"><span style="color: red">聚合其他渠道<br/>通知失败订单</span><span class="tooltiptext"><span style="margin-left: -10px">聚合平台其他渠道(不含万盟<br>通知失败的订单合计金额</span></span></div></th>
<th ><div class="tooltip">聚合其他渠道数据<span class="tooltiptext"><span style="margin-left: -10px">聚合平台其他渠道(不含橙枫)支付成功通知成功订单合计</span></span></div></th>
<th ><div class="tooltip"><span style="color: red">聚合其他渠道<br/>通知失败订单</span><span class="tooltiptext"><span style="margin-left: -10px">聚合平台其他渠道(不含橙枫<br>通知失败的订单合计金额</span></span></div></th>
<th >操作</th>
</tr>
</thead>

@ -97,7 +97,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -90,7 +90,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;0">

@ -173,7 +173,7 @@
<select name="relation[self_company_id]" id="self_company" class="select_gallery">
<option value="0"></option>
<?php foreach($selfCompanies as $selfCompany):?>
<option value="<?=$selfCompany['id']?>" <?php if($selfCompany['company_name']==''):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>
<option value="<?=$selfCompany['id']?>" <?php if($selfCompany['company_name']==''):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>
<?php endforeach;?>
</select>
<span class="notice-text"></span>
@ -192,7 +192,7 @@
<td class="r">
<select name="part_b" id="part_b" class="select_gallery">
<?php foreach($selfCompanies as $selfCompany):?>
<option value="<?=$selfCompany['id']?>" <?php if($selfCompany['company_name']==''):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>
<option value="<?=$selfCompany['id']?>" <?php if($selfCompany['company_name']==''):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>
<?php endforeach;?>
</select>
<span class="notice-text"></span>
@ -470,7 +470,7 @@
if (indexNum == 1) {
"<?php foreach($selfCompanies as $selfCompany):?>"
$(id).append(
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='海南万盟天下科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='橙枫科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
);
"<?php endforeach;?>";
}

@ -491,7 +491,7 @@
if (indexNum == 1) {
"<?php foreach($selfCompanies as $selfCompany):?>"
$(id).append(
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='海南万盟天下科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='橙枫科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
);
"<?php endforeach;?>";
}

@ -483,7 +483,7 @@
if (indexNum == 1) {
"<?php foreach($selfCompanies as $selfCompany):?>"
$(id).append(
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='海南万盟天下科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='橙枫科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
);
"<?php endforeach;?>";
}

@ -860,7 +860,7 @@
if (indexNum == 1) {
"<?php foreach($selfCompanies as $selfCompany):?>"
$(id).append(
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='海南万盟天下科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='橙枫科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
);
"<?php endforeach;?>";
}

@ -859,7 +859,7 @@
if (indexNum == 1) {
"<?php foreach($selfCompanies as $selfCompany):?>"
$(id).append(
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='海南万盟天下科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='橙枫科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
);
"<?php endforeach;?>";
}

@ -842,7 +842,7 @@
if (indexNum == 1) {
"<?php foreach($selfCompanies as $selfCompany):?>"
$(id).append(
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='海南万盟天下科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
"<option value=\"<?=$selfCompany['id']?>\" <?php if($selfCompany['company_name']=='橙枫科技有限公司'):?>selected<?php endif;?>><?=$selfCompany['company_name']?></option>"
);
"<?php endforeach;?>";
}

@ -212,7 +212,7 @@
</div>
<div class="fgx">功能菜单</div>
<div id="subnav" class="subnav">
<h3 class=""><i class="icon icon-unfold"></i>万盟对账单管理</h3>
<h3 class=""><i class="icon icon-unfold"></i>橙枫对账单管理</h3>
<ul class="side-sub-menu" style="">
<li class="current">
<a class="item" href="/{$Think.SUBSITE_INDEX}?s=/VerifyBill/index.html">对账单确认</a>

@ -83,7 +83,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -95,7 +95,7 @@
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div style="display: flex;margin: auto;">
<div class="tab-content tabcon1711" id="firstPartBaseInfo">

@ -173,7 +173,7 @@
<td>线上结算</td>
<td>奖励方</td>
<td>下游公司</td>
<td>万盟天下科技</td>
<td>橙枫科技</td>
<td>kefuguanlian</td>
<td>1500</td>

@ -170,8 +170,8 @@
<!-- </div>-->
<div class="input-list input-list-promote search_label_rehab" style="width: 100%;">
甲方:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="text" id="jfCompany" name="jfCompany" class="" value="海南万盟天下科技有限公司" style="width: 30%;display: none"/>
<span>海南万盟天下科技有限公司</span>
<input type="text" id="jfCompany" name="jfCompany" class="" value="橙枫科技有限公司" style="width: 30%;display: none"/>
<span>橙枫科技有限公司</span>
</div>
<div class="input-list input-list-promote search_label_rehab" style="width: 100%;">
联系人:&nbsp;&nbsp;&nbsp;

@ -143,8 +143,8 @@
<!-- </div>-->
<div class="input-list input-list-promote search_label_rehab" style="width: 100%;">
甲方:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="text" id="jfCompany" name="jfCompany" class="" value="海南万盟天下科技有限公司" style="width: 30%;display: none"/>
<span>海南万盟天下科技有限公司</span>
<input type="text" id="jfCompany" name="jfCompany" class="" value="橙枫科技有限公司" style="width: 30%;display: none"/>
<span>橙枫科技有限公司</span>
</div>
<div class="input-list input-list-promote search_label_rehab" style="width: 100%;">
联系人:&nbsp;&nbsp;&nbsp;

@ -295,7 +295,7 @@
$("#upstream").click(function () {
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -306,7 +306,7 @@
$("#downstream").click(function () {
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -317,7 +317,7 @@
$("#persondownstream").click(function () {
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -339,7 +339,7 @@
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -358,7 +358,7 @@
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],

@ -94,7 +94,7 @@
<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><th>是否橙枫结算</th><th>操作</th>
</tr>
</thead>
<tbody>
@ -157,14 +157,14 @@
<table border="0" cellspacing="0" cellpadding="0" style="margin-top:30px;">
<input type="text" name="id" id="edit_id" value="0" style="display: none;">
<tr>
<td class="l noticeinfo" style="width:120px;">万盟结算金额:</td>
<td class="l noticeinfo" style="width:120px;">橙枫结算金额:</td>
<td class="r table_radio">
<input type="number" class="txt ratio" name="wm_amount" id="edit_wm_amount" value="0" placeholder="" οninput="value=value.replace(/[^\w\.\/]/ig, '')" style="width: 150px;">
</td>
</tr>
<tr style="height:30px"></tr>
<tr>
<td class="l noticeinfo" style="width:120px;">是否万盟结算:</td>
<td class="l noticeinfo" style="width:120px;">是否橙枫结算:</td>
<td class="r table_radio">
<div style="float: left;">
<select id="edit_iswm" name="type" style="width:150px;">

@ -198,7 +198,7 @@
var url = "{:U('viewPool')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -211,7 +211,7 @@
var url = "{:U('viewUnPaymentPool')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -224,7 +224,7 @@
var url = "{:U('editPool')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -237,7 +237,7 @@
var url = "{:U('editPool')}"+"&id="+id+"&type=1"
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -463,7 +463,7 @@
var url = "{:U('setPayment')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],
@ -475,7 +475,7 @@
var url = "{:U('viewPayment')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],

@ -496,7 +496,7 @@
var url = "{:U('changeSubSpend')}"+"&ids="+text;
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['40%', '60%'],

@ -155,7 +155,7 @@
var url = "{:U('viewStatement')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['100%', '100%'],

@ -90,7 +90,7 @@
</style>
<body>
<!-- <div style="width: 100%;line-height: 100px;font-size: 25px;font-weight: 600;text-align: center;">
海南万盟天下科技有限公司
橙枫科技有限公司
</div> -->
<div class="data_list box_mt" style="margin-top: 10px;">

@ -282,7 +282,7 @@
$("#upstream").click(function () {
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -293,7 +293,7 @@
$("#downstream").click(function () {
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -304,7 +304,7 @@
$("#persondownstream").click(function () {
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -326,7 +326,7 @@
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],
@ -345,7 +345,7 @@
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
title: "橙枫科技有限公司",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],

@ -46,7 +46,7 @@
</style>
<!-- <div class="cf main-place top_nav_list navtab_list">-->
<!-- <h3 class="page_title">万盟对账单管理</h3>-->
<!-- <h3 class="page_title">橙枫科技对账单管理</h3>-->
<!-- </div>-->
<!-- 数据列表 -->
@ -190,7 +190,7 @@
var url = $(this).data('url');
layer.open({
type: 2,
title: '海南万盟天下有限公司',
title: '橙枫科技有限公司',
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],

@ -39,7 +39,7 @@
</style>
<div class="cf main-place top_nav_list navtab_list">
<h3 class="page_title">万盟天下对账单管理</h3>
<h3 class="page_title">橙枫科技对账单管理</h3>
</div>
<!-- 数据列表 -->
@ -115,7 +115,7 @@
var url = "{:U('view')}"+"&id="+id
layer.open({
type: 2,
title: "海南万盟天下科技有限公司对账单详情",
title: "橙枫科技有限公司对账单详情",
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],

@ -46,7 +46,7 @@
</style>
<!-- <div class="cf main-place top_nav_list navtab_list">-->
<!-- <h3 class="page_title">万盟对账单管理</h3>-->
<!-- <h3 class="page_title">橙枫对账单管理</h3>-->
<!-- </div>-->
<!-- 数据列表 -->
@ -222,7 +222,7 @@
var url = $(this).data('url');
layer.open({
type: 2,
title: '海南万盟天下有限公司',
title: '橙枫科技有限公司',
shadeClose: true,
shade: 0.8,
area: ['70%', '80%'],

@ -3043,7 +3043,7 @@ function hideRealName($realName)
function isAggGame($payUrl)
{
if (strpos($payUrl, 'sdk-pay-a.wmtxkj') !== false || strpos($payUrl, 'sdk-pay-i.wmtxkj') !== false ) {
if (strpos($payUrl, 'sdk-pay-a.chengfeng123') !== false || strpos($payUrl, 'sdk-pay-i.chengfeng123') !== false ) {
return true;
}
return false;

@ -13,7 +13,7 @@
),
'wap_index' =>
array (
'seo_title' => '万盟天下',
'seo_title' => '橙枫科技',
'seo_keyword' => 'asdasdasd',
'seo_description' => 'asdasdasd',
),

@ -1023,7 +1023,7 @@ class PromoteController extends BaseController
if (empty($user)) {
$this->redirect("Home/Index/index");
}
$promoteUrl = "https://m.wmtxkj.com/mobile.php?s=Ssg/home/promote_id/" . $user['pid'];
$promoteUrl = "https://m.chengfeng123.cn/mobile.php?s=Ssg/home/promote_id/" . $user['pid'];
$this->assign("promote_url", $promoteUrl);
$this->display();

@ -167,7 +167,7 @@
</div>
</div>
<div id="footer">
<p>© copyright 万盟天下游戏</p>
<p>© copyright 橙枫科技游戏</p>
</div>
</div>

@ -110,8 +110,8 @@
<section class="down-app-box">
<div class="down-app-inner">
<img src="__IMG__/Poster/poster.png">
<a href="itms-services://?action=download-manifest&url=https://m.wmtxkj.com/manifest.plist" class="down-app-btn jq-dwn-btn">立即下载</a>
<a href="https://m.wmtxkj.com" class="down-app-index">进入网站<i class="iconfont icongengduo" style="margin-left: -0.3rem;font-size: 0.8rem;"></i></a>
<a href="itms-services://?action=download-manifest&url=https://m.chengfeng123.cn/manifest.plist" class="down-app-btn jq-dwn-btn">立即下载</a>
<a href="https://m.chengfeng123.cn" class="down-app-index">进入网站<i class="iconfont icongengduo" style="margin-left: -0.3rem;font-size: 0.8rem;"></i></a>
</div>
</section>
<div style="text-align: center">

@ -36,7 +36,7 @@
<div class="collaborate_introduce">
<div class="collaborate_info">
<div class="title">市场合作</div>
<div class="del">万盟天下一直坚持开放诚信高效的业务合作,欢迎各位业界同仁前来联系,互利共赢。</div>
<div class="del">橙枫科技一直坚持开放诚信高效的业务合作,欢迎各位业界同仁前来联系,互利共赢。</div>
<div class="del" style="display: flex; align-items: center;margin-top:0">
<div>
<div class="del" style="margin: 0;">联系人: 李先生</div>
@ -47,7 +47,7 @@
</div>
<div class="collaborate_info">
<div class="title">商务合作</div>
<div class="del">万盟天下一直希望通过广泛的市场及品牌合作,为用户提供更全面的产品与服务。</div>
<div class="del">橙枫科技一直希望通过广泛的市场及品牌合作,为用户提供更全面的产品与服务。</div>
</div>
<div class="collaborate_info">
<div class="title">联系方式</div>

@ -21,7 +21,7 @@
<div class="title">公司介绍</div>
<div class="del">COMPANY PROFILE</div>
<div class="content">
<p>万盟天下励志为玩家提供国内最精品的移动游戏,公司集休闲、娱乐、游戏、玩家互动为一体,以公司服务和玩家互动娱乐为核心, 并于游戏厂商共建良好的沟通反馈机制,力图为大家打造一个最优秀最专业的绿色健康游戏服务平台。</p>
<p>橙枫科技励志为玩家提供国内最精品的移动游戏,公司集休闲、娱乐、游戏、玩家互动为一体,以公司服务和玩家互动娱乐为核心, 并于游戏厂商共建良好的沟通反馈机制,力图为大家打造一个最优秀最专业的绿色健康游戏服务平台。</p>
<p> 公司始终关注行业发展,为解决行业痛点不遗余力,专注于如何有效提升玩家用户体验,延长用户游戏周期,为玩家解决主要问题。在游戏中组织军团,带领玩家入门,一起畅玩游戏。我们的宗旨是:一对一,手把手,提供最贴心、最人性化的服务,帮助玩家找到最合适的游戏圈,带领玩家充分享受游戏带来的快乐。 公司现与知名互联网公司合作愉快。我们的愿景 :打造游戏行业最具影响力的【网络游戏运营模式】致力于真正做到让玩家快乐游戏! 用心享受快乐!</p>
</div>
<div class="base">每一天,我们都致力于创造更美好的未来。我们的优质产品和服务,使人心情愉悦,神采焕发,享受更加完美生活。</div>

@ -589,9 +589,9 @@ class SsgController extends BaseController {
$param['payway'] = 1;
$param['title'] = $price;
$param['body'] = $price;
//$param['callback'] = "https://m.wmtxkj.com/mobile.php/Ssg/install_show/user_id/{$userId}/game_id/{$gameId}/order_id/{$orderId}";
//$param['notifyurl'] = "https://m.wmtxkj.com/callback.php/Notify/notify/apitype/alipay";
if(stripos($_SERVER['HTTP_HOST'], '.wmtxkj.cn') || $_SERVER['HTTP_HOST']=='127.0.0.1' || stripos($_SERVER['HTTP_HOST'], '.free.idcfengye.com')){
//$param['callback'] = "https://m.chengfeng123.cn/mobile.php/Ssg/install_show/user_id/{$userId}/game_id/{$gameId}/order_id/{$orderId}";
//$param['notifyurl'] = "https://m.chengfeng123.cn/callback.php/Notify/notify/apitype/alipay";
if(stripos($_SERVER['HTTP_HOST'], '.chengfeng123.cn') || $_SERVER['HTTP_HOST']=='127.0.0.1' || stripos($_SERVER['HTTP_HOST'], '.free.idcfengye.com')){
$param['callback'] = "http://".$_SERVER['HTTP_HOST']."/mobile.php/Ssg/install_show/user_id/{$userId}/game_id/{$gameId}/order_id/{$orderId}";
//$param['notifyurl'] = "http://".$_SERVER['HTTP_HOST']."/callback.php/Notify/notify/apitype/alipay";
}else{

@ -17,14 +17,14 @@
<div class="heard_img"><img src="__IMG__/new/lunbo2.png" alt=""></div>
<div class="heard_title">商务合作</div>
<div class="heard_en">BUSINESS COOPERATION</div>
<div class="introduce">海南万盟天下科技有限公司》,致力于引进和传播手机游戏,我们愿与广大开发者一同成长,将快乐分享给每一个玩家。欢迎广大开发者与工作人员联系,让您的游戏为我们平台锦上添花。</div>
<div class="introduce">橙枫科技有限公司》,致力于引进和传播手机游戏,我们愿与广大开发者一同成长,将快乐分享给每一个玩家。欢迎广大开发者与工作人员联系,让您的游戏为我们平台锦上添花。</div>
<div class="bazaar">
<div class="title">市场合作</div>
<div class="info">万盟天下一直坚持开放诚信高效的业务合作,欢迎各位业界同仁前来联系,互利共赢。</div>
<div class="info">橙枫科技一直坚持开放诚信高效的业务合作,欢迎各位业界同仁前来联系,互利共赢。</div>
</div>
<div class="bazaar">
<div class="title">商务合作</div>
<div class="info">万盟天下一直希望通过广泛的市场及品牌合作,为用户提供更全面的产品与服务。</div>
<div class="info">橙枫科技一直希望通过广泛的市场及品牌合作,为用户提供更全面的产品与服务。</div>
</div>
<div class="bazaar">
<div class="title">联系方式</div>
@ -42,7 +42,7 @@
<div class="foot_lable">
<div>备案号:<a class="beian" href="http://www.beian.miit.gov.cn" target="_blank">琼ICP备19000556号-1</a></div>
<div>网络文化经营许可证编号琼网文20192354-200号</div>
<div>海南万盟天下科技有限公司</div>
<div>橙枫科技有限公司</div>
</div>
</div>
<!-- 底部导航 -->

@ -58,7 +58,7 @@
<div class="foot_lable" style="position: absolute;bottom:61px;width: 100%;text-align: center;">
<div>备案号:<a class="beian" href="http://www.beian.miit.gov.cn" target="_blank">琼ICP备19000556号-1</a></div>
<div>网络文化经营许可证编号琼网文20192354-200号</div>
<div>海南万盟天下科技有限公司</div>
<div>橙枫科技有限公司</div>
</div>
</div>

@ -18,7 +18,7 @@
<div class="heard_title">公司介绍</div>
<div class="heard_en">COMPANY PROFILE</div>
<div class="introduce">
<div>万盟天下励志为玩家提供国内最精品的移动游戏,公司集休闲、娱乐、游戏、玩家互动为一体,以公司服务和玩家互动娱乐为核心, 并于游戏厂商共建良好的沟通反馈机制,力图为大家打造一个最优秀最专业的绿色健康游戏服务平台。</div>
<div>橙枫科技励志为玩家提供国内最精品的移动游戏,公司集休闲、娱乐、游戏、玩家互动为一体,以公司服务和玩家互动娱乐为核心, 并于游戏厂商共建良好的沟通反馈机制,力图为大家打造一个最优秀最专业的绿色健康游戏服务平台。</div>
<div>公司始终关注行业发展,为解决行业痛点不遗余力,专注于如何有效提升玩家用户体验,延长用户游戏周期,为玩家解决主要问题。在游戏中组织军团,带领玩家入门,一起畅玩游戏。我们的宗旨是:一对一,手把手,提供最贴心、最人性化的服务,帮助玩家找到最合适的游戏圈,带领玩家充分享受游戏带来的快乐。 公司现与知名互联网公司合作愉快。我们的愿景 :打造游戏行业最具影响力的【网络游戏运营模式】致力于真正做到让玩家快乐游戏! 用心享受快乐!</div>
<div>每一天,我们都致力于创造更美好的未来。我们的优质产品和服务,使人心情愉悦,神采焕发,享受更加完美生活。</div>
</div>
@ -27,7 +27,7 @@
<div class="foot_lable">
<div>备案号:<a class="beian" href="http://www.beian.miit.gov.cn" target="_blank">琼ICP备19000556号-1</a></div>
<div>网络文化经营许可证编号琼网文20192354-200号</div>
<div>海南万盟天下科技有限公司</div>
<div>橙枫科技有限公司</div>
</div>
</div>
<!-- 底部导航 -->

@ -78,7 +78,7 @@
<section class="footbox">
<p>备案号:{:C('PC_SET_FOR_THE_RECORD')}</p>
<p>网络文化经营许可证编号:{:C('PC_SET_LICENSE')}</p>
<p>海南万盟天下科技有限公司</p>
<p>橙枫科技有限公司</p>
</section>
</div>

@ -140,7 +140,7 @@ body{
</div>
</div>
<!--<div class="footer-pay">
<p>海南万盟天下科技有限公司 版权所有 ©2019 支付中心</p>
<p>橙枫科技有限公司 版权所有 ©2019 支付中心</p>
</div>-->
</body>
<script>

@ -11,7 +11,7 @@
<link rel="stylesheet" type="text/css" href="__CSS__/reset.css">
<link rel="stylesheet" type="text/css" href="__CSS__/name.css">
<link rel="stylesheet" type="text/css" href="__CSS__/common-cz.css">
<title>万盟天下</title>
<title>橙枫科技</title>
</head>
<body>
<form id="form" action="" method="post" onsubmit="return false" class="">

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save