order_id = $orderId; $this->currentPage = $currentPage; $this->last_url = $lastUrl; parent::__construct($title); } /** * 添加JS * @return string */ protected function script() { return <<order_id}').on('click', function () { //window.location.href ="detail?order_id={$this->order_id}&page={$this->currentPage}&last_url={$this->last_url}"; window.open("detail?order_id={$this->order_id}&page={$this->currentPage}&last_url={$this->last_url}"); }); JS; } public function html() { $this->setHtmlAttribute(['class'=>"detail_{$this->order_id}"]); return parent::html(); } }