user = $this->getUser(); // 运营中心用户信息 $this->Operations = OperationsUserModel::detail($this->user['user_id']); // 运营中心设置 $this->setting = Setting::getAll(); } /** * 运营中心订单列表 */ public function lists($settled = -1) { $model = new OrderModel; return $this->renderSuccess('', [ // 提现明细列表 'list' => $model->getList($this->user['user_id'], (int)$settled), // 页面文字 'words' => $this->setting['words']['values'], ]); } }