推广平台>数据管理>充值玩家--更新

master
chenxiaojun 5 years ago
commit f16949935f

@ -0,0 +1,16 @@
<?php
namespace Admin\Controller;
use Think\Controller;
class PromoteGameRatioController extends ThinkController
{
public function lists()
{
$params = I('get.');
$promoteAccount = $params['promote_account'] ?? '';
$gameId = $params['game_id'] ?? 0;
$status = $params['status'] ?? '';
}
}

@ -0,0 +1,8 @@
<?php
namespace Admin\Model;
class PromoteGameRatioModel
{
}

@ -159,7 +159,7 @@
<i class="iconfont iconsort"></i>
</if>
</th>
<th class="sort" sort-name="create_time" class="title-cursor-pointer" title="账号所注册的时间">注册时间
<th class="sort" sort-name="create_time" class="title-cursor-pointer" title="角色创建的时间">注册时间
<if condition="'create_time' == I('sort_name', '')">
<if condition="1 == $sort">
<i class="iconfont iconsort-down"></i>

@ -724,4 +724,23 @@ INSERT INTO `sys_menu`(`title`, `pid`, `sort`, `url`, `hide`, `tip`, `group`, `i
--2019-12-13
--
ALTER TABLE `tab_game`
ADD COLUMN `flooring_page_video_cover` int(11) NOT NULL DEFAULT 0 COMMENT '落地页视频封面';
ADD COLUMN `flooring_page_video_cover` int(11) NOT NULL DEFAULT 0 COMMENT '落地页视频封面';
--2019-12-16
--
CREATE TABLE `tab_promote_game_ratio` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`promote_id` int(11) NOT NULL DEFAULT 0 COMMENT '推广员id',
`game_id` int(11) NOT NULL DEFAULT 0 COMMENT '游戏id',
`ratio` decimal(5, 2) NOT NULL DEFAULT 0 COMMENT '分成比例',
`begin_time` int(10) NOT NULL DEFAULT 0 COMMENT '开始时间',
`end_time` int(10) NOT NULL DEFAULT 0 COMMENT '过期时间',
`remark` varchar(255) NOT NULL COMMENT '备注',
`status` tinyint(3) NOT NULL DEFAULT 0 COMMENT '审核状态:-1-未通过 0-待审核 1-通过',
`applicant_id` int(11) NOT NULL DEFAULT 0 COMMENT '申请人',
`reviewer_id` int(11) NOT NULL DEFAULT 0 COMMENT '审核人',
`create_time` int(10) NOT NULL DEFAULT 0 COMMENT '创建时间',
`update_time` int(10) NOT NULL DEFAULT 0 COMMENT '更新时间',
PRIMARY KEY (`id`),
INDEX `promote_id`(`promote_id`, `game_id`, `status`) USING BTREE
);
Loading…
Cancel
Save