Merge branch 'feature/statement_warning_change' of 8.136.139.249:wmtx/platform into hotfix/admin_department_search

master
ELF 4 years ago
commit 7e1387aef2

@ -1199,6 +1199,7 @@ class CompanyStatementController extends ThinkController
$count = [];
$week_line = 2;
$withdraw_type = false;
//获取对接人
foreach($infolist as $k=>&$v){
$infolist[$k]['reward'] = 0;
@ -1239,6 +1240,9 @@ class CompanyStatementController extends ThinkController
$row += count($va['game_list']);
foreach($va['game_list'] as $key=>&$val){
if(!$withdraw_type){
$withdraw_type = $v['withdraw_type'];
}
$line ++;
if($v['withdraw_type'] != 3) {
if(isset($val['ratio'])){
@ -1250,12 +1254,12 @@ class CompanyStatementController extends ThinkController
if($is_export){
if($v['withdraw_type'] != 3) {
$val['sum_money'] = "=ROUND((K{$line}-L{$line})*(M{$line}+N{$line}),2)";
$val['sum_money'] = "=ROUND((L{$line}-M{$line})*(N{$line}+O{$line}),2)";
} else {
$val['sum_money'] = "=ROUND((K{$line}-L{$line})*(N{$line}),2)";
$val['sum_money'] = "=ROUND((L{$line}-M{$line})*(O{$line}),2)";
}
// $val['sum_money'] = "=J{$line}*(K{$line}+L{$line})";
$v['statement_money'] .= "S{$line}+";
$v['statement_money'] .= "T{$line}+";
}else{
$count['platform_amount'] += $val['pay_amount'];
$count['sum_money'] += $val['sum_money'];
@ -1274,14 +1278,17 @@ class CompanyStatementController extends ThinkController
}
if($is_export){
$count["platform_amount"] = "=ROUND(SUM(K2:K".$line."),2)";
$count["week_money"] = "=ROUND(SUM(S2:S".$line."),2)";
$count["sum_money"] = "=ROUND(SUM(T2:T".$line."),2)";
$count["platform_amount"] = "=ROUND(SUM(L2:L".$line."),2)";
$count["week_money"] = "=ROUND(SUM(T2:T".$line."),2)";
$count["sum_money"] = "=ROUND(SUM(U2:U".$line."),2)";
}
$this->assign("data",$infolist);
$this->assign("count",$count);
$this->assign("is_export",$is_export);
$this->assign("withdraw_type",$withdraw_type);
// dd($infolist);
$this->display("CompanyStatementPool/viewPuPool");
}

@ -1054,7 +1054,7 @@ class CompanyStatementPoolController extends ThinkController
$week_line += count($hv['game_list'])-1;
}
$handle_data[$hk]['week_amount'] = "=ROUND(SUM(O{$old_line}:O{$week_line})+SUM(P{$old_line}:P{$week_line})-SUM(Q{$old_line}:Q{$week_line})-SUM(R{$old_line}:R{$week_line}),2)";
$handle_data[$hk]['week_amount'] = "=ROUND(SUM(P{$old_line}:P{$week_line})+SUM(Q{$old_line}:Q{$week_line})-SUM(R{$old_line}:R{$week_line})-SUM(S{$old_line}:S{$week_line}),2)";
if ($hk > 0) {
$handle_data[0]['week_amount'] = str_replace($old_line,$week_line,$handle_data[0]['week_amount']);

@ -18,15 +18,15 @@ class JumpController extends HomeController
public function getURLScheme()
{
header('Access-Control-Allow-Origin: *');
$id = I('request.id', 0);
$uniqueStr = I('request.unique_str', '');
$url = "https://api.weixin.qq.com/wxa/generatescheme?access_token=".$this->getAccessToken();
$data = [
'jump_wxa' => [
'path' => '/pages/index/index',
'query' => "id={$id}"
'query' => "id={$uniqueStr}"
],
'is_expire' => true,
"expire_time" => time() + 86400
"expire_time" => time() + 86400*21
];
$ret = $this->curl_post($url, json_encode($data));
@ -50,8 +50,11 @@ class JumpController extends HomeController
}
public function jumpMp() {
$id = I('request.id', 0);
$this->assign("id", $id);
$uniqueStr = I('server.QUERY_STRING');
$posStr = 'Qrcode/Jump/jumpMp/';
$pos = strpos($uniqueStr, $posStr) + strlen($posStr);
$uniqueStr = substr($uniqueStr, $pos, 8);
$this->assign("unique_str", $uniqueStr);
$this->display();
}
@ -59,10 +62,10 @@ class JumpController extends HomeController
public function getImgs()
{
$isHttps = is_https();
$backgroundImg = ($isHttps? 'https://': 'http://').$_SERVER['HTTP_HOST']."/Public/Qrcode/images/b.png";
$backgroundImg = ($isHttps? 'https://': 'http://').$_SERVER['HTTP_HOST']."/Public/Qrcode/images/b1.png";
$qrCodeImg = ($isHttps? 'https://': 'http://').$_SERVER['HTTP_HOST']."/Public/Qrcode/images/qrcode.png";
$id = I('request.id', 0);
if (!$id || !is_numeric($id)) {
$id = I('request.id', '');
if (!$id || $id == 'undefined') {
$this->ajaxReturn([
'id' => $_REQUEST['id'],
'status' => 1,
@ -71,7 +74,15 @@ class JumpController extends HomeController
]);
}
// 二维码:
$qrcodePromotionList = M('qrcode_promotion_list', 'tab_')->where(['id' => $id])->find();
$qrcodePromotionList = M('qrcode_promotion_list', 'tab_')->where(['unique_str' => $id])->find();
if (!$qrcodePromotionList) {
$this->ajaxReturn([
'id' => $_REQUEST['id'],
'status' => 1,
'background_img' => $backgroundImg,
'qrcode_img' => $qrCodeImg
]);
}
$qrcode = json_decode($qrcodePromotionList['qrcode_img'], true);
$qrcodeCnt = count($qrcode);
$intervalMin = $qrcodePromotionList['interval_min'];

@ -202,11 +202,12 @@ class QrCodePromotionController extends BaseController
'interval_min' => $params['interval_min'],
]);
if ($id > 0) {
$h5Link = ($isHttps? 'https://': 'http://').$_SERVER['HTTP_HOST']."/index.php?s=/Qrcode/Jump/jumpMp/id/{$id}";
$expireDate = date('Y-m-d', strtotime("+30 day"));
$shortLink = $this->getShortUrl($h5Link, $expireDate);
$uniqueStr = $this->getUniqueStr();
$h5Link = ($isHttps? 'https://': 'http://').$_SERVER['HTTP_HOST']."/index.php?s=/Qrcode/Jump/jumpMp/{$uniqueStr}";
$shortLink = $this->getShortUrl($h5Link);
M('qrcode_promotion_list', 'tab_')->where(['id' => $id])->save([
'unique_str' => $uniqueStr,
'h5_link' => $h5Link,
'short_link' => $shortLink
]);
@ -220,16 +221,40 @@ class QrCodePromotionController extends BaseController
$this->display();
}
private function getUniqueStr() {
while (1) {
$chars = $this->getRandomStr(8);
$find = M('qrcode_promotion_list', 'tab_')->where([
'unique_str' => $chars
])->find();
if (!$find) return $chars;
}
}
private function getRandomStr($len){
static $pol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
$str = '';
$max = strlen($pol) - 1;
for ($i = 0; $i < $len; $i++) {
$str .= $pol[mt_rand(0, $max)];
}
return $str;
}
public function linkEdit()
{
$id = I('request.id', 0);
if (!$id) return ;
if (IS_POST) {
// var_dump(json_encode(I('post.img'), JSON_FORCE_OBJECT));die;
M('qrcode_promotion_list', 'tab_')->where([
"id" => $id
])->save([
'interval_min' => I('post.interval_min')
'interval_min' => I('post.interval_min'),
'qrcode_img' => json_encode(I('post.img'), JSON_FORCE_OBJECT)
]);
$this->ajaxReturn(['status' => 1, 'message' => '保存成功!']);
}
@ -237,7 +262,9 @@ class QrCodePromotionController extends BaseController
$qrcodePromotionList = M('qrcode_promotion_list', 'tab_')->where([
"id" => $id
])->find();
$imgs = json_decode($qrcodePromotionList['qrcode_img'], true);
$this->assign('imgs', $imgs);
$this->assign('id', $id);
$this->assign('qp_id', $qrcodePromotionList['qp_id']);
$this->assign('interval_min', $qrcodePromotionList['interval_min']);
@ -256,6 +283,7 @@ class QrCodePromotionController extends BaseController
public function linkLists()
{
$this->getShortUrl('https://mg.wmtxkj.com');
$page = I('p', 1);
$row = I('row', 10);
$qpId = I('get.id', 0);
@ -288,23 +316,67 @@ class QrCodePromotionController extends BaseController
$this->display();
}
public function getShortUrl($long_url, $expire_date)
public function getShortUrl($longUrl)
{
$url = urlencode($long_url);
$key = "612a01db7889bec5e0d0d2d81f@df6cdda6eb39c505f08848f714b0433e";
$request_url = "http://api.3w.cn/api.htm?format=json&url={$url}&key={$key}&expireDate={$expire_date}&domain=0";
$result_str = file_get_contents($request_url);
$shortUrl = '';
$host = "https://encsholin.market.alicloudapi.com";
$path = "/shortlink";
$method = "GET";
$appcode = "783dde1552fa412293c56f9ad875579b";//开通服务后 买家中心-查看AppCode
$headers = array();
array_push($headers, "Authorization:APPCODE " . $appcode);
$querys = "password=&url={$longUrl}";
$url = $host . $path . "?" . $querys;
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
if (1 == strpos("$" . $host, "https://")) {
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
}
$out_put = curl_exec($curl);
$url = "";
if ($result_str) {
$result_arr = json_decode($result_str, true);
$httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
if ($result_arr && $result_arr['code'] == "0") {
$url = $result_arr['url'];
list($header, $body) = explode("\r\n\r\n", $out_put, 2);
if ($httpCode == 200) {
$url = json_decode($body, true);
$shortUrl = $url['url'];
if (!$shortUrl) $shortUrl = $url['msg'];
} else {
if ($httpCode == 400 && strpos($header, "Invalid Param Location") !== false) {
$shortUrl = ("参数错误");
} elseif ($httpCode == 400 && strpos($header, "Invalid AppCode") !== false) {
$shortUrl = ("AppCode错误");
} elseif ($httpCode == 400 && strpos($header, "Invalid Url") !== false) {
$shortUrl = ("请求的 Method、Path 或者环境错误");
} elseif ($httpCode == 403 && strpos($header, "Unauthorized") !== false) {
$shortUrl = ("服务未被授权或URL和Path不正确");
} elseif ($httpCode == 403 && strpos($header, "Quota Exhausted") !== false) {
$shortUrl = ("套餐包次数用完");
} elseif ($httpCode == 500) {
$shortUrl = ("API网关错误");
} elseif ($httpCode == 0) {
$shortUrl = ("URL错误");
} else {
$shortUrl .= ("参数名错误 或 其他错误");
$shortUrl .= ($httpCode);
$headers = explode("\r\n", $header);
$headList = array();
foreach ($headers as $head) {
$value = explode(':', $head);
$headList[$value[0]] = $value[1];
}
$shortUrl .= ($headList['x-ca-error-message']);
}
}
return $url;
return $shortUrl;
}
}

@ -88,6 +88,7 @@
var buttonEl = document.getElementById('public-web-jump-button')
var buttonLoadingEl = document.getElementById('public-web-jump-button-loading')
try {
jumpToMp();
await openWeapp(() => {
buttonEl.classList.remove('weui-btn_loading')
buttonLoadingEl.classList.add('hidden')
@ -120,9 +121,9 @@
dataType: 'json',
type: 'POST',
//url: 'http://10.0.10.185:8089/index.php?s=/Qrcode/Jump/getURLScheme',
url: 'https://mg.wmtxkj.cn/index.php?s=/Qrcode/Jump/getURLScheme',
url: 'https://mg.wmtxkj.com/index.php?s=/Qrcode/Jump/getURLScheme',
data: {
'id': "{$id}",
'unique_str': "{$unique_str}",
},
success: function(data){
window.location.href = data.openlink;
@ -196,10 +197,10 @@
<body>
<div class="page full">
<div id="public-web-container" class="hidden">
<p class="">正在打开 “小程序”...</p> <!-- replace -->
<p class="">正在打开 “微信小程序”...</p> <!-- replace -->
<a id="public-web-jump-button" href="javascript:" class="weui-btn weui-btn_primary weui-btn_loading" onclick="jumpToMp()">
<!--<span id="public-web-jump-button-loading" class="weui-primary-loading weui-primary-loading_transparent"><i class="weui-primary-loading__dot"></i></span>
-->打开小程序
-->打开微信小程序
</a>
</div>
<!--<div id="wechat-web-container" class="hidden">

@ -1,202 +0,0 @@
<html>
<head>
<title>打开小程序</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<script>
window.onerror = e => {
console.error(e)
alert('发生错误' + e)
}
</script>
<!-- weui 样式 -->
<link rel="stylesheet" href="https://res.wx.qq.com/open/libs/weui/2.4.1/weui.min.css"></link>
<!-- 调试用的移动端 console -->
<!-- <script src="https://cdn.jsdelivr.net/npm/eruda"></script> -->
<!-- <script>eruda.init();</script> -->
<!-- 公众号 JSSDK -->
<script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
<!-- 云开发 Web SDK -->
<script src="https://res.wx.qq.com/open/js/cloudbase/1.1.0/cloud.js"></script>
<script>
function docReady(fn) {
if (document.readyState === 'complete' || document.readyState === 'interactive') {
fn()
} else {
document.addEventListener('DOMContentLoaded', fn);
}
}
docReady(async function() {
var ua = navigator.userAgent.toLowerCase()
var isWXWork = ua.match(/wxwork/i) == 'wxwork'
var isWeixin = !isWXWork && ua.match(/micromessenger/i) == 'micromessenger'
var isMobile = false
var isDesktop = false
if (navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|IEMobile)/i)) {
isMobile = true
} else {
isDesktop = true
}
if (isWeixin) {
var containerEl = document.getElementById('wechat-web-container')
containerEl.classList.remove('hidden')
containerEl.classList.add('full', 'wechat-web-container')
var launchBtn = document.getElementById('launch-btn')
launchBtn.addEventListener('ready', function (e) {
console.log('开放标签 ready')
})
launchBtn.addEventListener('launch', function (e) {
console.log('开放标签 success')
})
launchBtn.addEventListener('error', function (e) {
console.log('开放标签 fail', e.detail)
})
wx.config({
// debug: true, // 调试时可开启
appId: 'wxab40e4470236e599', // <!-- replace -->
timestamp: 0, // 必填,填任意数字即可
nonceStr: 'nonceStr', // 必填,填任意非空字符串即可
signature: 'signature', // 必填,填任意非空字符串即可
jsApiList: ['chooseImage'], // 必填,随意一个接口即可
openTagList:['wx-open-launch-weapp'], // 填入打开小程序的开放标签名
})
} else if (isDesktop) {
// 在 pc 上则给提示引导到手机端打开
var containerEl = document.getElementById('desktop-web-container')
containerEl.classList.remove('hidden')
containerEl.classList.add('full', 'desktop-web-container')
} else {
var containerEl = document.getElementById('public-web-container')
containerEl.classList.remove('hidden')
containerEl.classList.add('full', 'public-web-container')
var c = new cloud.Cloud({
// 必填,表示是未登录模式
identityless: true,
// 资源方 AppID
resourceAppid: 'wxab40e4470236e599', // <!-- replace -->
// 资源方环境 ID
resourceEnv: 'tg-6gj0rw634dc8d837', // <!-- replace -->
})
await c.init()
window.c = c
var buttonEl = document.getElementById('public-web-jump-button')
var buttonLoadingEl = document.getElementById('public-web-jump-button-loading')
try {
await openWeapp(() => {
buttonEl.classList.remove('weui-btn_loading')
buttonLoadingEl.classList.add('hidden')
})
} catch (e) {
buttonEl.classList.remove('weui-btn_loading')
buttonLoadingEl.classList.add('hidden')
throw e
}
}
})
async function openWeapp(onBeforeJump) {
var c = window.c
const res = await c.callFunction({
name: 'public',
data: {
action: 'getUrlScheme',
},
})
console.warn(res)
if (onBeforeJump) {
onBeforeJump()
}
location.href = res.result.openlink
}
</script>
<style>
.hidden {
display: none;
}
.full {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.public-web-container {
display: flex;
flex-direction: column;
align-items: center;
}
.public-web-container p {
position: absolute;
top: 40%;
}
.public-web-container a {
position: absolute;
bottom: 40%;
}
.wechat-web-container {
display: flex;
flex-direction: column;
align-items: center;
}
.wechat-web-container p {
position: absolute;
top: 40%;
}
.wechat-web-container wx-open-launch-weapp {
position: absolute;
bottom: 40%;
left: 0;
right: 0;
display: flex;
flex-direction: column;
align-items: center;
}
.desktop-web-container {
display: flex;
flex-direction: column;
align-items: center;
}
.desktop-web-container p {
position: absolute;
top: 40%;
}
</style>
</head>
<body>
<div class="page full">
<div id="public-web-container" class="hidden">
<p class="">正在打开 “填入你的小程序名称”...</p> <!-- replace -->
<a id="public-web-jump-button" href="javascript:" class="weui-btn weui-btn_primary weui-btn_loading" onclick="openWeapp()">
<span id="public-web-jump-button-loading" class="weui-primary-loading weui-primary-loading_transparent"><i class="weui-primary-loading__dot"></i></span>
打开小程序
</a>
</div>
<div id="wechat-web-container" class="hidden">
<p class="">点击以下按钮打开 “填入你的小程序名称”</p> <!-- replace -->
<!-- 跳转小程序的开放标签。文档 https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html -->
<wx-open-launch-weapp id="launch-btn" username="gh_0d9d0461048c" path="\pages\index"> <!-- replace -->
<template>
<button style="width: 200px; height: 45px; text-align: center; font-size: 17px; display: block; margin: 0 auto; padding: 8px 24px; border: none; border-radius: 4px; background-color: #07c160; color:#fff;">打开小程序</button>
</template>
</wx-open-launch-weapp>
</div>
<div id="desktop-web-container" class="hidden">
<p class="">请在手机打开网页链接</p>
</div>
</div>
</body>
</html>

@ -53,6 +53,7 @@
<script type="text/javascript">
var imgIndex = 0;
var imgCnt = 0;
$('#imgFile').uploadifive({
'fileObjName':'file',
'removeCompleted' : true,
@ -60,7 +61,11 @@
'buttonText' : '上传',
'uploadScript' : '/index.php?s=/Qrcode/QrCodePromotion/uploadQrCodeBackground',
'multi' : true,
'onSelect' : function (queue) {
imgCnt = imgCnt + 1;
},
'onUploadComplete' : function(file, data) {
imgCnt = imgCnt - 1;
var res = eval('(' + data + ')');
var src = res.path;
$('#img').append('<img src=' + src + ' width="150px" height="150px"/>');
@ -83,10 +88,15 @@
$('.add-submit').on({
click: function() {
if (imgCnt > 0) {
alert('请等待上次结束再次提交。');
return ;
}
var id = $("#qp_id").val();
var imgs = $("#form_link_add").serialize();
if (!imgs) {
var data = $("#form_link_add").serialize();
if (!$(".images").val()) {
return layer.msg('二维码不能为空')
}
@ -94,7 +104,7 @@
url: '{:U("linkAdd")}',
type: 'post',
dataType: 'json',
data: imgs,
data: data,
success: function(result) {
if (result.status == 1) {
layer.msg(result.message)

@ -16,6 +16,21 @@
<form action="{:U('Promote/linkAdd')}" novalidate="novalidate" method="post" class="base_info" id="form_link_add">
<table class="table2">
<tr>
<input id="qp_id" type="hidden" name="qp_id" value="{$qp_id}">
<td class="l"><span class="req">*</span>推广二维码:</td>
<td class="r">
<span id="img">
<volist name="imgs" id="data" key="k">
<img src="{$data}" width="150px" height="150px"/>
<input class="images" name="img[{$k}]" type="hidden" value="{$data}">
<span class="del" data-id="{$k}" style="border: 1px solid #e6a23c; background: #ea9090; font-size: 20px;font-weight: 600;color: #3f51b5;">删除</span>
</volist>
</span>
<input type="file" id="imgFile"/>
</td>
</tr>
<tr>
<td class="l"><span class="req">*</span>轮播二维码间隔时间(分钟):</td>
<td class="r">
@ -57,6 +72,7 @@
var src = res.path;
$('#img').append('<img src=' + src + ' width="150px" height="150px"/>');
$('#img').append('<input class="images" name="img['+ imgIndex +']" type="hidden" value="'+ src +'">');
$('#img').append('<span class="del" data-id=' + imgIndex + ' style="border: 1px solid #e6a23c; background: #ea9090; font-size: 20px;font-weight: 600;color: #3f51b5;">删除</span>');
imgIndex = imgIndex + 1;
// $('#img').html('<img src=' + src + ' width="40%" height="40%"/>')
@ -77,7 +93,8 @@
click: function() {
var imgs = $("#form_link_add").serialize();
if (!imgs) {
console.log(imgs);
if (!$(".images").val()) {
return layer.msg('二维码不能为空')
}
@ -100,7 +117,14 @@
}
})
$(".del").click(function() {
if (!confirm("确定删除吗?")) return ;
var input = $(this).prev();
var img = input.prev();
input.remove();
img.remove();
$(this).remove();
});
</script>
</block>

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Loading…
Cancel
Save