更新部分功能

This commit is contained in:
孙景学
2025-07-03 10:24:33 +08:00
parent cf8e9d0820
commit e15c97d741
26 changed files with 199 additions and 114 deletions

View File

@ -115,10 +115,10 @@ const SupplierMessage: React.FC = () => {
<>
<Form form={form} layout="inline" style={{ marginBottom: 12 }}>
<Form.Item name="content" label="消息内容">
<Input placeholder="请输入" style={{ width: 220 }} />
<Input placeholder="请输入消息内容" style={{ width: 220 }} maxLength={50} />
</Form.Item>
<Form.Item name="type" label="业务类型">
<Select style={{ width: 200 }}>
<Select style={{ width: 200 }} placeholder="请选择业务类型">
{messageTypeOptions.map(opt => (
<Select.Option key={opt.value} value={opt.value}>{opt.label}</Select.Option>
))}