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

master
chenxiaojun 5 years ago
commit bc515d7fb9

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

@ -127,6 +127,7 @@
<th>审核状态</th>
<th>打包状态</th>
<th>审核时间</th>
<th>打包顺序</th>
<th>下载状态</th>
<th>分成比例</th>
<th>注册单价</th>
@ -164,6 +165,15 @@
</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>
<div class="download_status">
<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>分成比例</th>
<th>注册单价</th>
@ -267,7 +278,15 @@
</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">
<div class="download_status">
<span class="download_butnbox yes">
@ -461,13 +480,29 @@ $(".editTab").click(function(){
var promote_id = that.attr("promote-id");
var field = that.attr('field');
layer.prompt({title:title,formType:0},function(value,index) {
if (field == 'promote_ratio' || field == 'promote_money') {
if (!/^(((\d|[1-9]\d)(\.\d{1,2})?)|100|100.0|100.00)$/.test(value)) {
if (field == 'promote_ratio') {
updateAlert('分成比例输入错误','tip_error');
} else {
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({
async: false,
url:"{:U('Apply/setRatio')}",

@ -62,3 +62,6 @@ INSERT INTO `tab_promote_quick_menu` VALUES ('18', '1', '1', '1569720739');
-- 2019-10-01
alter table tab_game_source add column `original_url` varchar(255) NOT NULL default '' COMMENT '原包路径';
alter table tab_game_source add column `org_plist_url` varchar(255) NOT NULL default '' COMMENT '原包Plist路径';
-- 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