新增->游戏分包打包顺序

# Conflicts:
#	Data/update.sql
master
chenxiaojun 5 years ago
commit a1476436d2

@ -314,7 +314,7 @@ class AutoPackController extends Think
$apply_data = $applyModel $apply_data = $applyModel
-> field('id,game_id,game_name,promote_id,promote_account,sdk_version') -> field('id,game_id,game_name,promote_id,promote_account,sdk_version')
-> where($map) -> where($map)
-> order('id desc') -> order('bale_sort desc,id desc')
-> limit(200) -> limit(200)
-> select(); -> select();

@ -127,6 +127,7 @@
<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>
@ -164,6 +165,15 @@
</td> </td>
<td>{:set_show_time($data['dispose_time'],'','other')}</td> <td>{:set_show_time($data['dispose_time'],'','other')}</td>
<td>
<?php
$ratio = is_null($data['promote_ratio'])?$data['game_ratio']:$data['promote_ratio'];
$ratio || $ratio = 0;
?>
<div name="dow_num" data-title="打包顺序" promote-id="{$data.promote_id}" game-id="{$data.game_id}" field='bale_sort' class="tab_not_same editTab">
<span>{$data.bale_sort}</span>
</div>
</td>
<td> <td>
<div class="download_status"> <div class="download_status">
<span class="download_butnbox"> <span class="download_butnbox">
@ -227,6 +237,7 @@
<th style="text-align:center">审核状态</th> <th style="text-align:center">审核状态</th>
<th style="text-align:center">打包状态</th> <th style="text-align:center">打包状态</th>
<th style="text-align:center">审核时间</th> <th style="text-align:center">审核时间</th>
<th style="text-align:center">打包顺序</th>
<th style="text-align:center">下载状态</th> <th style="text-align:center">下载状态</th>
<th>分成比例</th> <th>分成比例</th>
<th>注册单价</th> <th>注册单价</th>
@ -267,7 +278,15 @@
</td> </td>
<td style="border-right:1px solid #DDDDDD;text-align:center">{:set_show_time($data['dispose_time'],'','other')}</td> <td style="border-right:1px solid #DDDDDD;text-align:center">{:set_show_time($data['dispose_time'],'','other')}</td>
<td>
<?php
$ratio = is_null($data['promote_ratio'])?$data['game_ratio']:$data['promote_ratio'];
$ratio || $ratio = 0;
?>
<div name="dow_num" data-title="打包顺序" promote-id="{$data.promote_id}" game-id="{$data.game_id}" field='bale_sort' class="tab_not_same editTab">
<span>{$data.bale_sort}</span>
</div>
</td>
<td style="border-right:1px solid #DDDDDD;text-align:center"> <td style="border-right:1px solid #DDDDDD;text-align:center">
<div class="download_status"> <div class="download_status">
<span class="download_butnbox yes"> <span class="download_butnbox yes">
@ -461,13 +480,29 @@ $(".editTab").click(function(){
var promote_id = that.attr("promote-id"); var promote_id = that.attr("promote-id");
var field = that.attr('field'); var field = that.attr('field');
layer.prompt({title:title,formType:0},function(value,index) { layer.prompt({title:title,formType:0},function(value,index) {
if (!/^(((\d|[1-9]\d)(\.\d{1,2})?)|100|100.0|100.00)$/.test(value)) { if (field == 'promote_ratio' || field == 'promote_money') {
updateAlert('分成比例输入错误','tip_error'); if (!/^(((\d|[1-9]\d)(\.\d{1,2})?)|100|100.0|100.00)$/.test(value)) {
setTimeout(function(){ if (field == 'promote_ratio') {
$('#tip').find('.tipclose').click(); updateAlert('分成比例输入错误','tip_error');
},2000); } else {
return false; updateAlert('游戏注册单价输入错误','tip_error');
}
setTimeout(function(){
$('#tip').find('.tipclose').click();
},2000);
return false;
}
} else if (field = 'bale_sort') {
if (!/^(?:0|[1-9][0-9]*)$/.test(value)) {
updateAlert('请输入正整数','tip_error');
setTimeout(function(){
$('#tip').find('.tipclose').click();
},2000);
return false;
}
} }
$.ajax({ $.ajax({
async: false, async: false,
url:"{:U('Apply/setRatio')}", url:"{:U('Apply/setRatio')}",

@ -1085,12 +1085,12 @@ class ApplyController extends BaseController
if (($updateStatus == 0 && $res) || ($updateStatus == 1 && $res !== false)) { if (($updateStatus == 0 && $res) || ($updateStatus == 1 && $res !== false)) {
$thsiAppltId = M('Apply', 'tab_')->where(array('game_id' => $list['id'], 'promote_id' => $promoteId))->getField('id'); $thsiAppltId = M('Apply', 'tab_')->where(array('game_id' => $list['id'], 'promote_id' => $promoteId))->getField('id');
$gameSource = M('Game_source', 'tab_')->field('id,source_version')->where(['game_id' => $list['id']])->find(); $gameSource = M('Game_source', 'tab_')->field('id,source_version')->where(['game_id' => $list['id']])->find();
if (file_exists(get_game_source_file_url($list['id'])) || null == $gameSource) { if (!file_exists(get_game_source_file_url($list['id'])) || null == $gameSource) {
M('apply', 'tab_')->where(['id' => $thsiAppltId])->setField(['enable_status' => 2, 'pack_url' => '', 'plist_url' => '']);
M('apply_launch', 'tab_')->where(['apply_id' => $thsiAppltId])->setField('launch_packge', 0);
} else {
M('apply', 'tab_')->where(['id' => $thsiAppltId])->setField('enable_status', -1); M('apply', 'tab_')->where(['id' => $thsiAppltId])->setField('enable_status', -1);
M('apply_launch', 'tab_')->where(['apply_id' => $thsiAppltId])->setField('launch_packge', -1); M('apply_launch', 'tab_')->where(['apply_id' => $thsiAppltId])->setField('launch_packge', -1);
} else {
M('apply', 'tab_')->where(['id' => $thsiAppltId])->setField(['enable_status' => 2, 'pack_url' => '', 'plist_url' => '']);
M('apply_launch', 'tab_')->where(['apply_id' => $thsiAppltId])->setField('launch_packge', 0);
} }
} else { } else {
$this->ajaxReturn(array("status" => 0, "msg" => "申请失败", 'ret' => $res)); $this->ajaxReturn(array("status" => 0, "msg" => "申请失败", 'ret' => $res));

@ -73,3 +73,6 @@ ALTER TABLE `tab_game` ADD COLUMN `detail_content` MEDIUMTEXT NULL DEFAULT NULL
-- 2019-10-10 cxj -- 2019-10-10 cxj
-- ---------------------------- -- ----------------------------
ALTER TABLE `tab_promote` ADD COLUMN `child_game_permission` tinyint(2) NOT NULL DEFAULT 0 COMMENT '下级游戏添加权限 0-本账号已添加游戏 1-所有游戏' AFTER `idcard`; ALTER TABLE `tab_promote` ADD COLUMN `child_game_permission` tinyint(2) NOT NULL DEFAULT 0 COMMENT '下级游戏添加权限 0-本账号已添加游戏 1-所有游戏' AFTER `idcard`;
-- 2019-10-11 cxj
ALTER TABLE `tab_apply` ADD COLUMN `bale_sort` int(5) NOT NULL DEFAULT 0 COMMENT '打包顺序' AFTER `offline_status`;

Loading…
Cancel
Save