mirror of
https://github.com/whyour/qinglong.git
synced 2025-07-27 14:46:06 +08:00
修改cron管理操作按钮响应样式
This commit is contained in:
parent
5d43add6eb
commit
212cbd79e9
|
@ -516,28 +516,24 @@ const Crontab = () => {
|
||||||
>
|
>
|
||||||
{selectedRowIds.length > 0 && (
|
{selectedRowIds.length > 0 && (
|
||||||
<div style={{ marginBottom: 16 }}>
|
<div style={{ marginBottom: 16 }}>
|
||||||
<Button type="primary" onClick={delCrons}>
|
<Button type="primary" style={{ marginBottom: 5 }} onClick={delCrons}>
|
||||||
批量删除
|
批量删除
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
type="primary"
|
type="primary"
|
||||||
onClick={() => operateCrons(0)}
|
onClick={() => operateCrons(0)}
|
||||||
style={{ marginLeft: 8 }}
|
style={{ marginLeft: 8, marginBottom: 5 }}
|
||||||
>
|
>
|
||||||
批量启用
|
批量启用
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
type="primary"
|
type="primary"
|
||||||
onClick={() => operateCrons(1)}
|
onClick={() => operateCrons(1)}
|
||||||
style={{ marginLeft: 8 }}
|
style={{ marginLeft: 8, marginRight: 8 }}
|
||||||
>
|
>
|
||||||
批量禁用
|
批量禁用
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button type="primary" onClick={() => operateCrons(2)}>
|
||||||
type="primary"
|
|
||||||
onClick={() => operateCrons(2)}
|
|
||||||
style={{ marginLeft: 8 }}
|
|
||||||
>
|
|
||||||
批量运行
|
批量运行
|
||||||
</Button>
|
</Button>
|
||||||
<span style={{ marginLeft: 8 }}>
|
<span style={{ marginLeft: 8 }}>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user