Пример #1
0
 /**
  * Action Detail
  * @param int $id 演讲集id
  */
 public function actionDetial($id)
 {
     $model = new Speech();
     $result = $model->getById(intval($id));
     if ($result) {
         return $this->render('detial', ['model' => $result]);
     } else {
         echo '<script>alert("此产品不存在"),window.location.href="' . Url::toRoute('speech/list') . '";</script>';
         exit;
     }
 }