'version_log', # 显示给用户看的名称 'lang' => '版本提交历史', 'menu' => false, # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', 'search' => 'order', 'list' => true, ), 'project_id' => array ( 'type' => 'int-11', 'name' => '项目', 'default' => '', 'desc' => '请输入项目', 'match' => 'is_numeric', ), 'version_id' => array ( 'type' => 'int-11', 'name' => '版本', 'default' => '', 'desc' => '版本', 'match' => 'is_numeric', //'search' => 'order,fulltext', 'update' => 'checkbox', 'option' => $version, //'list' => true, ), 'user_id' => array ( 'type' => 'int-11', 'name' => '用户', 'default' => '', 'desc' => '用户', 'match' => 'is_numeric', //'search' => 'order,fulltext', 'update' => 'select', 'option' => $user, 'list' => true, ), 'name' => array ( 'type' => 'varchar-60', 'name' => '版本号', 'default' => '', 'desc' => '版本号', 'match' => 'is_string', 'update' => 'text', 'search' => 'fulltext', 'list' => true, ), 'template_id' => array ( 'type' => 'int-11', 'name' => '小程序模板', 'default' => '1', 'desc' => '小程序模板', 'match' => 'is_numeric', 'update' => 'select', 'option' => $template, 'list' => true, ), 'result' => array ( 'type' => 'text-255', 'name' => '微信返回信息', 'default' => '', 'desc' => '微信返回信息', 'match' => 'option', 'update' => 'textarea', 'list' => 'Dever::load("wechat_component/user.qrcode", {user_id}, {id})', 'modal' => '查看详情', ), 'state' => array ( 'type' => 'tinyint-1', 'name' => '状态', 'default' => '1', 'desc' => '请选择状态', 'match' => 'is_numeric', ), 'cdate' => array ( 'type' => 'int-11', 'name' => '提交时间', 'match' => array('is_numeric', time()), 'desc' => '', # 只有insert时才生效 'insert' => true, 'list' => 'date("Y-m-d H:i:s", {cdate})', ), ), 'top' => Dever::config('base', 'component')->top, 'manage' => array ( 'edit' => false, 'delete' => false, 'insert' => false, ), );