Skip to content

Commit

Permalink
chore(workflow): 修复eslint问题
Browse files Browse the repository at this point in the history
  • Loading branch information
wenmine committed Nov 22, 2023
1 parent 16842a2 commit 7445e1d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ const state = vue.reactive({
]
},
slots: {
default: ({ row }, h) => (
default: ({ row }) => (
<div>
<TinyIconEdit></TinyIconEdit>
{props.isEdit && (
Expand Down Expand Up @@ -232,7 +232,7 @@ const state = vue.reactive({
{
title: '操作',
slots: {
default: ({ row }, h) => (
default: ({ row }) => (
<div
style="color: rgb(94,124, 224);cursor:pointer;"
text={t('operation.delete')}
Expand Down Expand Up @@ -335,7 +335,7 @@ const state = vue.reactive({
field: 'employees',
title: '员工数',
slots: {
default: ({ row, rowIndex }, h) => <TinyInput></TinyInput>
default: () => <TinyInput></TinyInput>
}
},
{
Expand All @@ -355,7 +355,7 @@ const state = vue.reactive({
{
title: '操作',
slots: {
default: ({ row }, h) => (
default: ({ row }) => (
<TinyButton text="删除" icon={TinyIconDel} onClick={(...eventArgs) => emit(eventArgs, row)}></TinyButton>
)
}
Expand Down

0 comments on commit 7445e1d

Please sign in to comment.