quanwei
18 hours ago c441dea81bd86bdfb12dff35821fed51f4cc91c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
 
namespace app\operations\controller\plus\regactivity;
 
use app\operations\controller\Controller;
use app\operations\model\plus\regactivity\User as UserModel;
 
/**
 * 分销控制器
 */
class User extends Controller
{
    /**
     * 用户报名列表
     */
    public function index($nick_name = '')
    {
        $data = $this->postData();
        $model = new UserModel;
        $list = $model->getList($nick_name,$data["list_rows"],$data["activity_id"]);
 
        return $this->renderSuccess('', compact('list'));
    }
 
 
    /**
     * 软删除报名用户
     */
    public function delete($order_id)
    {
        $model = UserModel::detail($order_id);
        if (!$model->setDelete()) {
            return $this->renderError('删除失败');
        }
        return $this->renderSuccess('删除成功');
    }
}