
<template>
<a-table :columns="columns" :data-source="dataSource" bordered :pagination="pagination" @change="handleTableChange">
<template #bodyCell="{ column, text, record }">
<template v-if="['name', 'age', 'address'].includes(column.dataIndex)">
<div>
<a-input v-if="editableData[record.key]" v-model:value="editableData[record.key][column.dataIndex]"
style="margin: -5px 0" />
<template v-else>
{{ text }}
</template>
</div>
</template>
<template v-else-if="column.dataIndex === 'operation'">
<div class="editable-row-operations">
<span v-if="editableData[record.key]">
<a-typography-link @click="save(record.key)">Save</a-typography-link>
<a-popconfirm title="Sure to cancel?" @confirm="cancel(record.key)">
<a>Cancel</a>
</a-popconfirm>
</span>
<span v-else>
<a @click="edit(record.key)">Edit</a>
</span>
</div>
</template>
</template>
</a-table>
</template>
<script>
import { cloneDeep } from 'lodash-es';
import { defineComponent, reactive, ref } from 'vue';
const columns = [{
title: 'name',
dataIndex: 'name',
width: '25%',
}, {
title: 'age',
dataIndex: 'age',
width: '15%',
}, {
title: 'address',
dataIndex: 'address',
width: '40%',
}, {
title: 'operation',
dataIndex: 'operation',
}];
const data = [];
for (let i = 0; i < 100; i++) {
data.push({
key: i.toString(),
name: `Edrward ${i}`,
age: 32,
address: `London Park no. ${i}`,
});
}
export default defineComponent({
setup() {
const pageSize = ref(10);
const current = ref(1);
const dataSource = ref(data);
const pagination = {
current: current.value,
pageSize: pageSize.value,
defaultPageSize: 10,
// showTotal: `共 ${dataSource.length} 条数据`,
showSizeChanger: true, // 可以改变每页个数
pageSizeOptions: ["5", "10", "20", "30"],
onShowSizeChange: (current, pageSize) => pagination.pageSize = pageSize,
}
const handleTableChange = (pag, filters, sorter) => {
pagination.current = pag.current;
pagination.pageSize = pag.pageSize;
};
const editableData = reactive({});
const edit = key => {
editableData[key] = cloneDeep(dataSource.value.filter(item => key === item.key)[0]);
};
const save = key => {
Object.assign(dataSource.value.filter(item => key === item.key)[0], editableData[key]);
delete editableData[key];
};
const cancel = key => {
delete editableData[key];
};
return {
dataSource,
columns,
editingKey: '',
editableData,
edit,
save,
cancel,
pagination,
handleTableChange
};
},
});
</script>
<style scoped>
.editable-row-operations a {
margin-right: 8px;
}
</style>