🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### c\_init **初始化对象** 跳转 编辑/查看页面 参数 : perm = view/edit ~~~ function c_init() { $this->permCheck (); //安全校验 $obj = $this->service->get_d ( $_GET ['id'] ); foreach ( $obj as $key => $val ) { $this->assign ( $key, $val ); } if (isset ( $_GET ['perm'] ) && $_GET ['perm'] == 'view') { $this->display ( 'view' ); } else { $this->display ( 'edit' ); } } ~~~