|
@@ -86,7 +86,7 @@ const header = props => {
|
86
|
86
|
<span>{demandData.sampleName}</span>
|
87
|
87
|
</Form.Item>
|
88
|
88
|
{demandData.sampleTryLink != '' && demandData.sampleTryLink != null && <Form.Item label="样例体验链接" help="请复制发送到手机,用手机微信打开,PC端打开样式比例与手机端不同,以手机端为准">
|
89
|
|
- <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>
|
|
89
|
+ <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>
|
90
|
90
|
</Form.Item>}
|
91
|
91
|
{demandData.sampleTryCode != '' && demandData.sampleTryCode != null && <Form.Item label="样例体验小程序码/二维码" help="请使用微信扫码查看样例体验">
|
92
|
92
|
<img src={demandData.sampleTryCode} height="100px" width="120px" />
|
|
@@ -96,7 +96,7 @@ const header = props => {
|
96
|
96
|
<DragableUploadImageList sampleId={sampleId}></DragableUploadImageList>
|
97
|
97
|
</Form.Item>}
|
98
|
98
|
<Form.Item label="样例内容">
|
99
|
|
- {demandData.sampleType === 'rich' ? getFieldDecorator('sampleContent')(<Wangedit contenteditable={false}/>) : getFieldDecorator('sampleContentLink')(<a style={{color: "blue"}} href={demandData.sampleContentLink} target="_blank" >{demandData.sampleContentLink}</a>)}
|
|
99
|
+ {demandData.sampleType === 'rich' ? getFieldDecorator('sampleContent')(<Wangedit contenteditable={false} />) : getFieldDecorator('sampleContentLink')(<a style={{ color: "blue" }} href={demandData.sampleContentLink} target="_blank" >{demandData.sampleContentLink}</a>)}
|
100
|
100
|
</Form.Item>
|
101
|
101
|
<Form.Item wrapperCol={{ span: 15, offset: 7 }}>
|
102
|
102
|
<div style={{ margin: '0.16rem 0 0.06rem' }}>
|
|
@@ -108,7 +108,7 @@ const header = props => {
|
108
|
108
|
</Button>
|
109
|
109
|
</div>
|
110
|
110
|
</Form.Item>
|
111
|
|
- <div style={{ position: 'absolute', right: '0', bottom: '-16px' }}>
|
|
111
|
+ <div style={{ position: 'fixed', right: '0.4rem', bottom: '6%' }}>
|
112
|
112
|
<div style={{ display: 'flex', alignItems: 'center', minWidth: '1.1rem', justifyContent: 'space-between' }}>我想办类似活动 <span style={{ color: '#EF273A', margin: '0 0.1rem' }}>>></span>
|
113
|
113
|
<Button type="primary" onClick={toDetail(sampleId)} >
|
114
|
114
|
提交需求
|