diff --git a/kicc-ui/src/components/Button/src/PopConfirmButton.vue b/kicc-ui/src/components/Button/src/PopConfirmButton.vue index 8bdb41fd..60f5ba7f 100644 --- a/kicc-ui/src/components/Button/src/PopConfirmButton.vue +++ b/kicc-ui/src/components/Button/src/PopConfirmButton.vue @@ -41,7 +41,6 @@ return () => { const bindValues = omit(unref(getBindValues), 'icon'); const btnBind = omit(bindValues, 'title'); - // @ts-ignore if (btnBind.disabled) btnBind.color = ''; const Button = h(BasicButton, btnBind, extendSlots(slots)); diff --git a/kicc-ui/src/views/system/dept/index.vue b/kicc-ui/src/views/system/dept/index.vue index 90cd65dd..69f99cbd 100644 --- a/kicc-ui/src/views/system/dept/index.vue +++ b/kicc-ui/src/views/system/dept/index.vue @@ -25,7 +25,7 @@ label: '新增', icon: 'ant-design:plus-circle-outlined', auth: ['dept_add'], - onClick: handleAdd.bind(null, record), + onClick: handleAdd.bind(null, record) }, { label: '删除', @@ -34,8 +34,8 @@ color: 'error', popConfirm: { title: '是否确认删除', - confirm: handleDel.bind(null, record), - }, + confirm: handleDel.bind(null, record) + } }]" /> @@ -81,7 +81,7 @@ showIndexColumn: false, canResize: false, actionColumn: { - width: 220, + width: 250, title: '操作', dataIndex: 'action', slots: { customRender: 'action' }, diff --git a/kicc-ui/src/views/system/menu/index.vue b/kicc-ui/src/views/system/menu/index.vue index ba41e69f..bbc79cb0 100644 --- a/kicc-ui/src/views/system/menu/index.vue +++ b/kicc-ui/src/views/system/menu/index.vue @@ -81,7 +81,7 @@ showIndexColumn: false, canResize: false, actionColumn: { - width: 220, + width: 250, title: '操作', dataIndex: 'action', slots: { customRender: 'action' },