|
@@ -64,11 +64,11 @@ const { TextArea } = Input;
|
64
|
64
|
]
|
65
|
65
|
},
|
66
|
66
|
{
|
67
|
|
- label: '资讯列表图',
|
|
67
|
+ label: '资讯列表',
|
68
|
68
|
name: 'newsImg',
|
69
|
69
|
type: FieldTypes.ImageUploader,
|
70
|
70
|
value: dynamicData.newsImg,
|
71
|
|
- help: '建议图片尺寸:660px*416px',
|
|
71
|
+ help: '建议图片尺寸:320*256px,比例5:4,格式:jpg,用于资讯列表',
|
72
|
72
|
},
|
73
|
73
|
{
|
74
|
74
|
label: '资讯标题',
|
|
@@ -215,9 +215,10 @@ const { TextArea } = Input;
|
215
|
215
|
|
216
|
216
|
<div >
|
217
|
217
|
<div style={{ display: 'flex', width: '100%', margin: '60px 0' }}>
|
218
|
|
- <p style={{ minWidth: '200px', color: '#222', textAlign: 'right', margin: '0 30px 0 0' }}>海报图片</p>
|
|
218
|
+ <p style={{ minWidth: '200px', color: '#222', textAlign: 'right', margin: '0 30px 0 0' }}>资讯海报图</p>
|
219
|
219
|
<ImageUploader value={imgValue} onChange={e => changeImg(e)} />
|
220
|
220
|
</div>
|
|
221
|
+ <p style={{ fontSize: '0.5vw', color: '#A9A9A9', marginLeft: '230px', marginBottom: '30px'}}>建议图片尺寸:750*600px,比例5:4,格式:jpg,用于资讯海报</p>
|
221
|
222
|
<div style={{ display: 'flex', alignItems: 'center', width: '100%', marginBottom: '60px' }}>
|
222
|
223
|
<p style={{ minWidth: '200px', color: '#222', textAlign: 'right', margin: '0 30px 0 0' }}>海报标题</p>
|
223
|
224
|
<Input style={{ width: '20vw' }} value={inputValue} placeholder="请输入海报标题" onChange={e => changeInput(e.target.value)} />
|
|
@@ -290,10 +291,10 @@ const { TextArea } = Input;
|
290
|
291
|
<Input placeholder="请输入分享标题" value={inputValue} onChange={e => changeInput(e.target.value)} />
|
291
|
292
|
</div>
|
292
|
293
|
<div style={{ display: 'flex', width: '100%', marginTop: '40px' }}>
|
293
|
|
- <p style={{ minWidth: '200px', color: '#222', textAlign: 'right', margin: '0 30px 0 0' }}>分享图片</p>
|
|
294
|
+ <p style={{ minWidth: '200px', color: '#222', textAlign: 'right', margin: '0 30px 0 0' }}>资讯分享好友图</p>
|
294
|
295
|
<ImageUploader value={imgValue} onChange={e => changeImg(e)} />
|
295
|
296
|
</div>
|
296
|
|
- <p style={{ fontSize: '0.5vw', color: '#A9A9A9', marginLeft: '250px' }}>图片比例: 5:4</p>
|
|
297
|
+ <p style={{ fontSize: '0.5vw', color: '#A9A9A9', marginLeft: '230px', marginTop: '20px' }}>建议图片尺寸:750*600px,比例5:4,格式:jpg,用于资讯分享好友</p>
|
297
|
298
|
<Button type="primary" htmlType="submit" onClick={submitShare} style={{ margin: '40px 40px 40px 220px' }}> 确定</Button>
|
298
|
299
|
<Button onClick={() => router.go(-1)}>取消</Button>
|
299
|
300
|
</div>
|