|
@@ -93,7 +93,7 @@ const header = props => {
|
93
|
93
|
<span>{demandData.sampleName}</span>
|
94
|
94
|
</Form.Item>
|
95
|
95
|
{demandData.sampleTryLink != '' && demandData.sampleTryLink != null && <Form.Item label="样例体验链接" help="请复制发送到手机,用手机微信打开,PC端打开样式比例与手机端不同,以手机端为准">
|
96
|
|
- <span>{demandData.sampleTryLink}</span><span style={{marginLeft:'10px'}}><a onClick={(e) => copyLink(demandData.sampleTryLink)} style={{ color: 'orange' }}> <img src={copyImg} height="16px" width="14px" /> 复制链接</a></span>
|
|
96
|
+ <span>{demandData.sampleTryLink}</span><span style={{ marginLeft: '10px' }}><a onClick={(e) => copyLink(demandData.sampleTryLink)} style={{ color: 'orange' }}> <img src={copyImg} height="16px" width="14px" /> 复制链接</a></span>
|
97
|
97
|
</Form.Item>}
|
98
|
98
|
{demandData.sampleTryCode != '' && demandData.sampleTryCode != null && <Form.Item label="样例体验小程序码/二维码" help="请使用微信扫码查看样例体验">
|
99
|
99
|
<img src={demandData.sampleTryCode} height="100px" width="120px" />
|
|
@@ -103,7 +103,7 @@ const header = props => {
|
103
|
103
|
<DragableUploadImageList sampleId={sampleId}></DragableUploadImageList>
|
104
|
104
|
</Form.Item>}
|
105
|
105
|
<Form.Item label="样例内容">
|
106
|
|
- {demandData.sampleType === 'rich' ? getFieldDecorator('sampleContent')(<Wangedit contenteditable={false}/>) : getFieldDecorator('sampleContentLink')(<a style={{color: "blue"}} href={demandData.sampleContentLink} target="_blank" >{demandData.sampleContentLink}</a>)}
|
|
106
|
+ {demandData.sampleType === 'rich' ? getFieldDecorator('sampleContent')(<Wangedit contenteditable={false} />) : getFieldDecorator('sampleContentLink')(<a style={{ color: "blue" }} href={demandData.sampleContentLink} target="_blank" >{demandData.sampleContentLink}</a>)}
|
107
|
107
|
</Form.Item>
|
108
|
108
|
<Form.Item wrapperCol={{ span: 15, offset: 7 }}>
|
109
|
109
|
<div style={{ margin: '0.16rem 0 0.06rem' }}>
|
|
@@ -115,7 +115,7 @@ const header = props => {
|
115
|
115
|
</Button>
|
116
|
116
|
</div>
|
117
|
117
|
</Form.Item>
|
118
|
|
- <div style={{ position: 'absolute', right: '0', bottom: '-16px' }}>
|
|
118
|
+ <div style={{ position: 'fixed', right: '0.4rem', bottom: '6%' }}>
|
119
|
119
|
<div style={{ display: 'flex', alignItems: 'center', minWidth: '1.1rem', justifyContent: 'space-between' }}>我想办类似活动 <span style={{ color: '#EF273A', margin: '0 0.1rem' }}>>></span>
|
120
|
120
|
<Button type="primary" onClick={toDetail(sampleId)} >
|
121
|
121
|
提交需求
|