user = $this->getUser(); // 分销商用户信息 $this->dealer = DealerUserModel::detail($this->user['user_id']); // 分销商设置 $this->setting = Setting::getAll(); } /** * 分销商订单列表 * @param int $settled * @return array * @throws \think\exception\DbException */ 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'], ]); } }