|
@@ -167,23 +167,23 @@ function body(props) {
|
167
|
167
|
bodyStyle={{ padding: '10px 20px' }}
|
168
|
168
|
>
|
169
|
169
|
<AuthButton name="admin.taNews.id.put" noRight={null}>
|
170
|
|
- <span style={{ position: 'absolute', right: '20px', top: '20px', fontSize: ' 0.11rem', color: '#FF7E48' }} onClick={toEditList(data.newsId)}>
|
|
170
|
+ <span style={{ position: 'absolute', right: '20px', top: '20px', fontSize: ' 0.11rem', color: '#FF7E48', cursor: 'pointer' }} onClick={toEditList(data.newsId)}>
|
171
|
171
|
编辑
|
172
|
172
|
<Icon type="form" style={{ color: '#C0C4CC', marginLeft: '10px' }} />
|
173
|
173
|
</span>
|
174
|
174
|
{data.newsStatus === 0 ?
|
175
|
|
- <span style={{ position: 'absolute', left: '280px', bottom: ' 0.11rem', fontSize: ' 0.11rem', color: '#FF7E48',zIndex:1 }} onClick={cancelRelease.bind(this, data.newsId, 1, data.buildingId, data.newsType.newsTypeId)}>
|
|
175
|
+ <span style={{ position: 'absolute', left: '280px', bottom: ' 0.11rem', fontSize: ' 0.11rem', color: '#FF7E48',zIndex:1, cursor: 'pointer' }} onClick={cancelRelease.bind(this, data.newsId, 1, data.buildingId, data.newsType.newsTypeId)}>
|
176
|
176
|
取消发布
|
177
|
177
|
<Icon type="close-circle" style={{ color: '#C0C4CC', marginLeft: '8px' }} />
|
178
|
178
|
</span> :
|
179
|
|
- <span style={{ position: 'absolute', left: '280px', bottom: ' 0.11rem', fontSize: ' 0.11rem', color: '#FF7E48',zIndex:1 }} onClick={cancelRelease.bind(this, data.newsId, 0, data.buildingId, data.newsType.newsTypeId)}>
|
|
179
|
+ <span style={{ position: 'absolute', left: '280px', bottom: ' 0.11rem', fontSize: ' 0.11rem', color: '#FF7E48',zIndex:1, cursor: 'pointer' }} onClick={cancelRelease.bind(this, data.newsId, 0, data.buildingId, data.newsType.newsTypeId)}>
|
180
|
180
|
发布
|
181
|
181
|
<Icon type="form" style={{ color: '#C0C4CC', marginLeft: '8px' }} />
|
182
|
182
|
</span>
|
183
|
183
|
}
|
184
|
184
|
</AuthButton>
|
185
|
185
|
<AuthButton name="admin.taNews.id.delete" noRight={null}>
|
186
|
|
- <span style={{ position: 'absolute', right: '20px', bottom: ' 0.11rem', fontSize: ' 0.11rem', color: '#FF7E48' }} onClick={changeNewsListStatus(data.newsId)}>
|
|
186
|
+ <span style={{ position: 'absolute', right: '20px', bottom: ' 0.11rem', fontSize: ' 0.11rem', color: '#FF7E48', cursor: 'pointer' }} onClick={changeNewsListStatus(data.newsId)}>
|
187
|
187
|
删除
|
188
|
188
|
<Icon type="rest" style={{ color: '#C0C4CC', marginLeft: '8px' }} />
|
189
|
189
|
</span>
|