|
@@ -155,6 +155,17 @@ const header = props => {
|
155
|
155
|
align: 'center',
|
156
|
156
|
render: (x, row) => <><span>{`${moment(row.updateDate).format('YYYY-MM-DD HH:mm:ss')}`}</span></>,
|
157
|
157
|
},
|
|
158
|
+ {
|
|
159
|
+ title: '操作',
|
|
160
|
+ dataIndex: '',
|
|
161
|
+ key: '',
|
|
162
|
+ align: 'center',
|
|
163
|
+ render: (text, record) => (
|
|
164
|
+ <AuthButton name="admin.live.detail.get" noRight={null}>
|
|
165
|
+ <a style={{ color: '#66B3FF' }} onClick={toAddLive(record)} >查看详情</a>
|
|
166
|
+ </AuthButton>
|
|
167
|
+ ),
|
|
168
|
+ },
|
158
|
169
|
];
|
159
|
170
|
const getSignList = dynamicId => {
|
160
|
171
|
router.push({
|
|
@@ -251,10 +262,10 @@ const header = props => {
|
251
|
262
|
</Button>
|
252
|
263
|
</Form.Item>
|
253
|
264
|
</Form>
|
254
|
|
- <AuthButton name="admin.liveActivity.add.post" noRight={null}>
|
|
265
|
+ <AuthButton name="admin.live.add.post" noRight={null}>
|
255
|
266
|
<Button type="danger" className={styles.addBtn} onClick={toAddLive()}>新增</Button>
|
256
|
267
|
</AuthButton>
|
257
|
|
- <AuthButton name="admin.liveActivity.del" noRight={null}>
|
|
268
|
+ <AuthButton name="admin.live.del" noRight={null}>
|
258
|
269
|
<Button type="primary" className={styles.addBtn} onClick={toDelBatch()} style={{marginLeft:'30px'}}>删除</Button>
|
259
|
270
|
</AuthButton>
|
260
|
271
|
<Table rowSelection={rowSelection}
|