You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
527 B
28 lines
527 B
<?php
|
|
|
|
namespace app\admin\controller\setting;
|
|
|
|
use app\admin\controller\AdminBaseController;
|
|
use app\admin\service\setting\DrawalService;
|
|
|
|
class Drawal extends AdminBaseController
|
|
{
|
|
|
|
// 提现手续费
|
|
|
|
public function index()
|
|
{
|
|
|
|
$service = new DrawalService();
|
|
$result = $service->index();
|
|
return json($result);
|
|
}
|
|
|
|
|
|
public function edit()
|
|
{
|
|
$service = new DrawalService();
|
|
$result = $service->edit($this->request->param());
|
|
return json($result);
|
|
}
|
|
}
|