コード例 #1
0
 public function actionView($id)
 {
     $model = Buyer::findOne($id);
     if (empty($model)) {
         throw new HttpException(404, '小号不存在!');
     }
     if (empty($model->regarea)) {
         $model->regarea = '';
     }
     if (empty($model->id_verifi)) {
         $model->id_verifi = '';
     }
     if (empty($model->address)) {
         $model->address = '';
     }
     return $this->render('view', array('model' => $model));
 }