ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
路径: config/blocks.php ```php return [ 'types' => [ 'html' => '自定义', 'htmlcode' => 'HTML源代码', 'phpcode' => 'PHP源代码', 'latestArticle' => '最新文章', 'hotArticle' => '热门文章', 'slide' => '幻灯片', 'articleTree' => '文章分类', 'pageList' => '单页列表', 'contact' => '联系我们', 'about' => '公司简介', 'links' => '友情链接', 'header' => '网站头部', 'followUs' => '关注我们', 'recommend' => '推荐位', ], // 结构体 'structure' => [ // 区块唯一标识 '2018_03_04_224524_index_slide_block' => [ 'id' => 1, // 区块ID 'object_id' => '2018_03_04_224524_index_slide_block', // 区块唯一标识 'group' => 0, // 区块分组ID [ 预留 ] 'type' => 'slide', // 区块类型 'template' => 'default', // 区块模板 [ 预留 ] 'title' => '首页幻灯', // 区块标题 'created_op'=>1, // 创建时间 'updated_op'=>1, // 更新时间 'content'=>'{"mark":"1"}', // 区块参数,定义的时候可以只写 '{}' 后台配置的时候回自动生成 ], ], ]; ```