feat(demo): switch use in table

演示在table中渲染switch列并响应修改switch的动作
This commit is contained in:
无木
2021-06-04 16:11:18 +08:00
parent 41854121f3
commit 46899aa3cd
3 changed files with 43 additions and 7 deletions

View File

@@ -1,7 +1,10 @@
import { BasicColumn } from '/@/components/Table';
import { FormSchema } from '/@/components/Table';
import { h } from 'vue';
import { Tag } from 'ant-design-vue';
import { Switch } from 'ant-design-vue';
import { setRoleStatus } from '/@/api/demo/system';
import { useMessage } from '/@/hooks/web/useMessage';
export const columns: BasicColumn[] = [
{
title: '角色名称',
@@ -21,13 +24,33 @@ export const columns: BasicColumn[] = [
{
title: '状态',
dataIndex: 'status',
width: 80,
width: 120,
customRender: ({ record }) => {
const status = record.status;
const enable = ~~status === 0;
const color = enable ? 'green' : 'red';
const text = enable ? '启用' : '停用';
return h(Tag, { color: color }, () => text);
if (!Reflect.has(record, 'pendingStatus')) {
record.pendingStatus = false;
}
return h(Switch, {
checked: record.status === '1',
checkedChildren: '已启用',
unCheckedChildren: '已禁用',
loading: record.pendingStatus,
onChange(checked: boolean) {
record.pendingStatus = true;
const newStatus = checked ? '1' : '0';
const { createMessage } = useMessage();
setRoleStatus(record.id, newStatus)
.then(() => {
record.status = newStatus;
createMessage.success(`已成功修改角色状态`);
})
.catch(() => {
createMessage.error('修改角色状态失败');
})
.finally(() => {
record.pendingStatus = false;
});
},
});
},
},
{