cms/entcms/json/cms_content_list.json
yumoqing 5cfb0e867b feat: 开元云科技官网CMS系统初始版本
entcms模块:
- 4个数据表(cms_content/cms_categories/cms_leads/cms_site_config)
- 22个.dspy API(含公开API和data_filter)
- 4个公开页面(首页/新闻/案例)+管理后台
- 完整营销站点CSS/JS(暗色主题/渐变/动画/响应式)
- 云宝SVG线稿占位符
- RBAC权限配置

dingdingflow模块:
- 2个数据表(dd_approvals/dd_approval_configs)
- 10个.dspy API(含钉钉回调endpoint)
- 钉钉API客户端(环境变量配置,开发模式mock)
- 管理UI

文档: 架构设计/53条测试用例/开发日志
2026-05-27 15:44:26 +08:00

97 lines
3.0 KiB
JSON

{
"tblname": "cms_content",
"alias": "cms_content_list",
"title": "内容管理",
"params": {
"sortby": [
"sort_order asc",
"created_at desc"
],
"logined_userorgid": "org_id",
"data_filter": {
"AND": [
{
"field": "title",
"op": "LIKE",
"var": "title"
},
{
"field": "content_type",
"op": "=",
"var": "content_type"
},
{
"field": "status",
"op": "=",
"var": "status"
}
]
},
"browserfields": {
"exclouded": [
"body",
"extra_json"
],
"alters": {
"content_type": {
"uitype": "code",
"data": [
{
"value": "banner",
"text": "Banner"
},
{
"value": "product",
"text": "产品"
},
{
"value": "case",
"text": "案例"
},
{
"value": "news",
"text": "新闻"
}
]
},
"status": {
"uitype": "code",
"data": [
{
"value": "draft",
"text": "草稿"
},
{
"value": "pending",
"text": "待审批"
},
{
"value": "approved",
"text": "已审批"
},
{
"value": "published",
"text": "已发布"
},
{
"value": "archived",
"text": "已归档"
}
]
},
"category_id": {
"uitype": "code",
"dataurl": "{{entire_url('../api/category_options.dspy')}}",
"data_field": "options",
"textField": "text",
"valueField": "value"
}
}
},
"editable": {
"new_data_url": "{{entire_url('../api/cms_content_create.dspy')}}",
"update_data_url": "{{entire_url('../api/cms_content_update.dspy')}}",
"delete_data_url": "{{entire_url('../api/cms_content_delete.dspy')}}"
}
}
}