|
|
@ -131,7 +131,7 @@ function TemplateConfig(props) { |
|
|
|
<div className="form-row"> |
|
|
|
<div className="title">活动说明</div> |
|
|
|
<div style={{width: "300px"}}> |
|
|
|
<Input.TextArea rows={4} showCount={true} maxLength={200} style={{width: '100%'}} value={formData.description} onChange={(e)=>{setFormData({...formData, description: e.target.value})}} /> |
|
|
|
<Input.TextArea placeholder="请输入长度不超过200的字符串" rows={4} showCount={true} maxLength={200} style={{width: '100%'}} value={formData.description} onChange={(e)=>{setFormData({...formData, description: e.target.value})}} /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div className="form-row"> |
|
|
@ -146,12 +146,12 @@ function TemplateConfig(props) { |
|
|
|
<div className="big-title" style={{marginTop: '20px'}}>分享配置</div> |
|
|
|
<div className="form-row"> |
|
|
|
<div className="title">分享标题</div> |
|
|
|
<div style={{width: "300px"}}><Input placeholder="请输入长度不超过30的字符串" style={{width: '100%'}} value={formData.title} onChange={(e)=>{setFormData({...formData, title: e.target.value})}} /></div> |
|
|
|
<div style={{width: "300px"}}><Input showCount={true} maxLength={30} placeholder="请输入长度不超过30的字符串" style={{width: '100%'}} value={formData.title} onChange={(e)=>{setFormData({...formData, title: e.target.value})}} /></div> |
|
|
|
</div> |
|
|
|
<div className="form-row"> |
|
|
|
<div className="title">分享文案</div> |
|
|
|
<div style={{width: "300px"}}> |
|
|
|
<Input.TextArea placeholder="请输入长度不超过50的字符串" style={{width: '100%'}} value={formData.copywriting} onChange={(e)=>{setFormData({...formData, copywriting: e.target.value})}} /> |
|
|
|
<Input.TextArea rows={4} showCount={true} maxLength={50} placeholder="请输入长度不超过50的字符串" style={{width: '100%'}} value={formData.copywriting} onChange={(e)=>{setFormData({...formData, copywriting: e.target.value})}} /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div className="form-row"> |
|
|
|