feat(order): 更新订单页面表单内容与提示信息

- 修改页面提示标题为"欢迎留言"
- 简化表单字段,移除产品选择、参考链接及文件上传功能
- 调整表单布局和标签文案,统一使用"留言标题"和"留言内容"
- 更新内容输入框的占位符文本
- 修改必填项验证提示信息,适配新的留言场景
This commit is contained in:
2025-12-23 22:47:50 +08:00
parent 7b43a20d43
commit c4d6657148
3 changed files with 29 additions and 56 deletions

View File

@@ -72,5 +72,6 @@ export interface CmsOrder {
export interface CmsOrderParam extends PageParam {
orderId?: number;
websiteId?: number;
isSettled?: boolean;
keywords?: string;
}