Files
template-10586/app/api/cms/cmsArticleContent/model/index.ts
gxwebsoft 60c39cfec4 feat(article): 优化文章列表页面功能
- 将标题列改为可点击链接,支持直接跳转到文章详情页
- 新增操作列,添加查看按钮便于访问文章详情
- 修复事件绑定语法错误,将@pressEnter改为@press-enter
- 修复分页组件事件绑定错误,将@showSizeChange改为@show-size-change
- 实现路由参数监听,支持通过URL参数keywords自动搜索文章
- 临时禁用开发者中心的产品选择下拉菜单
- 移除已废弃的开发者中心相关页面和百色中学API接口文件
2026-01-21 15:04:16 +08:00

27 lines
438 B
TypeScript

import type { PageParam } from '@/api';
/**
* 文章记录表
*/
export interface CmsArticleContent {
//
id?: number;
// 文章ID
articleId?: number;
// 文章内容
content?: string;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 文章记录表搜索条件
*/
export interface CmsArticleContentParam extends PageParam {
id?: number;
articleId?: number;
keywords?: string;
}