mirror of
https://github.com/jekip/naive-ui-admin.git
synced 2026-02-08 15:32:28 +08:00
133 lines
3.2 KiB
Vue
133 lines
3.2 KiB
Vue
<template>
|
|
<n-card :bordered="false" class="proCard">
|
|
<BasicTable
|
|
title="表格列表"
|
|
titleTooltip="这是一个提示"
|
|
:columns="columns"
|
|
:request="loadDataTable"
|
|
:row-key="(row) => row.id"
|
|
ref="actionRef"
|
|
:actionColumn="actionColumn"
|
|
@edit-end="editEnd"
|
|
@edit-change="onEditChange"
|
|
@update:checked-row-keys="onCheckedRow"
|
|
:scroll-x="1510"
|
|
>
|
|
<template #toolbar>
|
|
<n-button type="primary" @click="reloadTable">刷新数据</n-button>
|
|
</template>
|
|
</BasicTable>
|
|
</n-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, reactive, toRefs, ref, h } from 'vue';
|
|
import { BasicTable, TableAction } from '@/components/Table';
|
|
import { getTableList } from '@/api/table/list';
|
|
import { columns } from './rowColumns';
|
|
|
|
export default defineComponent({
|
|
components: { BasicTable },
|
|
setup() {
|
|
const actionRef = ref();
|
|
const currentEditKeyRef = ref('');
|
|
const state = reactive({
|
|
params: {
|
|
pageSize: 5,
|
|
name: 'xiaoMa',
|
|
},
|
|
actionColumn: {
|
|
width: 150,
|
|
title: '操作',
|
|
key: 'action',
|
|
fixed: 'right',
|
|
align: 'center',
|
|
render(record) {
|
|
return h(TableAction, {
|
|
style: 'button',
|
|
actions: createActions(record),
|
|
});
|
|
},
|
|
},
|
|
});
|
|
|
|
function handleEdit(record) {
|
|
currentEditKeyRef.value = record.key;
|
|
record.onEdit?.(true);
|
|
}
|
|
|
|
function handleCancel(record: EditRecordRow) {
|
|
currentEditKeyRef.value = '';
|
|
record.onEdit?.(false, false);
|
|
}
|
|
|
|
function onEditChange({ column, value, record }) {
|
|
if (column.key === 'id') {
|
|
record.editValueRefs.name4.value = `${value}`;
|
|
}
|
|
console.log(column, value, record);
|
|
}
|
|
|
|
async function handleSave(record: EditRecordRow) {
|
|
const pass = await record.onEdit?.(false, true);
|
|
if (pass) {
|
|
currentEditKeyRef.value = '';
|
|
}
|
|
}
|
|
|
|
function createActions(record) {
|
|
if (!record.editable) {
|
|
return [
|
|
{
|
|
label: '编辑',
|
|
onClick: handleEdit.bind(null, record),
|
|
},
|
|
];
|
|
} else {
|
|
return [
|
|
{
|
|
label: '保存',
|
|
onClick: handleSave.bind(null, record),
|
|
},
|
|
{
|
|
label: '取消',
|
|
onClick: handleCancel.bind(null, record),
|
|
},
|
|
];
|
|
}
|
|
}
|
|
|
|
const loadDataTable = async (params) => {
|
|
const data = await getTableList(params);
|
|
return data;
|
|
};
|
|
|
|
function onCheckedRow(rowKeys) {
|
|
console.log(rowKeys);
|
|
}
|
|
|
|
function reloadTable() {
|
|
console.log(actionRef.value);
|
|
actionRef.value.reload();
|
|
}
|
|
|
|
function editEnd({ record, index, key, value }) {
|
|
console.log(value);
|
|
}
|
|
|
|
return {
|
|
...toRefs(state),
|
|
columns,
|
|
actionRef,
|
|
loadDataTable,
|
|
onCheckedRow,
|
|
reloadTable,
|
|
editEnd,
|
|
onEditChange,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|