|
@@ -160,14 +160,14 @@ const BasicForm = props => {
|
160
|
160
|
<Form.Item label="助力封面图2">
|
161
|
161
|
<img src={detailData.bannerListImg} height="125px" width="375px" />
|
162
|
162
|
</Form.Item>
|
163
|
|
- <Form.Item label="助力邀请次数">
|
|
163
|
+ <Form.Item label="助力邀请人数">
|
164
|
164
|
<span>{detailData.personNum}</span>
|
165
|
165
|
</Form.Item>
|
166
|
|
- <Form.Item label="助力发起次数">
|
|
166
|
+ <Form.Item label="助力次数">
|
167
|
167
|
<span>{detailData.helpNum === 0 ? '不限' : detailData.helpNum}</span>
|
168
|
168
|
</Form.Item>
|
169
|
169
|
<Form.Item label="活动时间">
|
170
|
|
- <span>{`${moment(detailData.startDate).format('YYYY-MM-DD')} —— ${moment(detailData.endDate).format('YYYY-MM-DD')}`}</span>
|
|
170
|
+ <span>{`${moment(detailData.startDate).format('YYYY-MM-DD HH:mm:ss')} —— ${moment(detailData.endDate).format('YYYY-MM-DD HH:mm:ss')}`}</span>
|
171
|
171
|
</Form.Item>
|
172
|
172
|
<Form.Item label="活动说明">
|
173
|
173
|
<img src={detailData.activityInstructions} height="300px" width="375px" />
|
|
@@ -179,7 +179,6 @@ const BasicForm = props => {
|
179
|
179
|
<AuthButton name="admin.SignList.get" noRight={null}>
|
180
|
180
|
{(detailData.activityStatus === 0 || detailData.activityStatus === 2) && <span style={{ color: '#1990FF',marginRight: '20px', cursor: 'pointer' }} onClick={getSignList.bind(this, detailData.helpActivityId)}><Button>助力记录</Button></span>}
|
181
|
181
|
</AuthButton>
|
182
|
|
- {(detailData.activityStatus === 0 || detailData.activityStatus === 2) &&<span style={{ color: '#1990FF', marginRight: '20px', cursor: 'pointer' }} onClick={newQrcode.bind(this, detailData)}>{<Button>下载二维码</Button>}</span>}
|
183
|
182
|
<Button onClick={() => cancelPage()}>
|
184
|
183
|
取消
|
185
|
184
|
</Button>
|