This commit is contained in:
@@ -378,7 +378,7 @@
|
||||
if (actionList.length <= props.inlineActionsCount) {
|
||||
return h(
|
||||
'div',
|
||||
{ style: 'display: flex; gap: 8px;' },
|
||||
{ style: 'display: flex; gap: 20px;' },
|
||||
actionList.map((action) =>
|
||||
h(
|
||||
'span',
|
||||
@@ -396,7 +396,7 @@
|
||||
const inlineActions = actionList.slice(0, props.inlineActionsCount)
|
||||
const moreActions = actionList.slice(props.inlineActionsCount)
|
||||
|
||||
return h('div', { style: 'display: flex; gap: 12px; align-items: center;' }, [
|
||||
return h('div', { style: 'display: flex; gap: 20px; align-items: center;' }, [
|
||||
...inlineActions.map((action) =>
|
||||
h(
|
||||
'span',
|
||||
@@ -418,9 +418,9 @@
|
||||
'span',
|
||||
{
|
||||
style:
|
||||
'display: flex; align-items: center; cursor: pointer; color: var(--el-color-primary);'
|
||||
'display: flex; align-items: center; cursor: pointer; color: var(--el-color-warning);'
|
||||
},
|
||||
[h('span', '更多操作')]
|
||||
[h('span', '更多')]
|
||||
),
|
||||
dropdown: () =>
|
||||
h(ElDropdownMenu, {}, () =>
|
||||
|
||||
Reference in New Issue
Block a user