Example #1
0
 public function action($jump = FALSE, $commit = true)
 {
     \Model\Field::baseForm();
     parent::action($jump, $commit);
     if (empty($_GET['back_url'])) {
         $url = $this->url(GROUP . '-Model-fieldList', array('id' => $this->p('id'), 'model_id' => \Model\Field::$model['model_id']));
     } else {
         $url = base64_decode($_GET['back_url']);
     }
     $this->success('更新字段成功', $url);
 }
Example #2
0
 public function action($jump = FALSE, $commit = FALSE)
 {
     \Model\Field::baseForm();
     parent::action($jump, $commit);
     $filedID = $this->db()->getLastInsert;
     \Model\Field::addField($filedID);
     if (empty($_GET['back_url'])) {
         $url = $this->url(GROUP . '-Model-fieldList', array('id' => $filedID, 'model_id' => \Model\Field::$model['model_id']));
     } else {
         $url = base64_decode($_GET['back_url']);
     }
     $this->success('添加字段成功', $url);
 }