You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
628 B
27 lines
628 B
<?php
|
|
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: GuaPi
|
|
* @Date: 2021-07-29 10:40:46
|
|
* @LastEditors: GuaPi
|
|
* @LastEditTime: 2021-08-14 10:16:48
|
|
*/
|
|
return [
|
|
'labels' => [
|
|
'Article' => '文章列表',
|
|
],
|
|
'fields' => [
|
|
'admin_user_id' => '文章作者',
|
|
'body' => '文章内容',
|
|
'title' => '文章标题',
|
|
'category_id' => '文章分类',
|
|
'view_count' => '查看数',
|
|
'cover' => '缩略图',
|
|
'excerpt' => '摘要',
|
|
'status' => '是否显示',
|
|
'order' => '排序',
|
|
'is_recommend' => '推荐'
|
|
],
|
|
'options' => [],
|
|
];
|
|
|