一键设置代理价格

This commit is contained in:
“wanyongkang”
2021-02-22 14:52:47 +08:00
parent 85231e25d0
commit 231d934727

View File

@@ -12,7 +12,6 @@ class Score extends Controller
//账号列表
public function getList ()
{
$get_data = $_GET;
$agent_id = $this->userinfo['OperaterID'];
$page = 0;
if (isset($_GET['PageIndex'])) {
@@ -46,12 +45,15 @@ class Score extends Controller
//账号列表
public function getScoreList ()
{
$get_data = $_GET;
$page = 0;
if (isset($_GET['PageIndex'])) {
$page = ($_GET['PageIndex'] - 1) * 50;
}
$where = [];
$where_str = '';
$where['agent_id'] = $get_data['id'];
if (!empty($_GET['Btime'])){
$date1 = date('Y-m-d', strtotime($_GET['Btime']));