后台会员级别及会员权益关联入会类型

This commit is contained in:
2026-04-25 14:20:30 +08:00
parent 3e735efd23
commit a9751ef42c
7 changed files with 45 additions and 22 deletions

View File

@@ -20,11 +20,16 @@ use app\common\controller\Backend;
*/
class Rights extends Backend
{
protected $join_config_model = null;
public function _initialize()
{
parent::_initialize();
$this->model = new \app\admin\model\wdsxh\member\MemberBenefits();
$this->view->assign("statusList", $this->model->getDisabledList());
$this->join_config_model = new \app\admin\model\wdsxh\member\JoinConfig();
$this->view->assign('join_config', $this->join_config_model->getSimpleByStatus());
$this->searchFields = ['title'];
}
}