layui/src/component/table/index.vue

246 lines
7.0 KiB
Vue
Raw Normal View History

<script lang="ts">
export default {
name: "LayTable",
};
</script>
<script setup lang="ts">
import {
ref,
watch,
useSlots,
defineProps,
withDefaults,
defineEmits,
} from "vue";
2022-01-27 08:18:16 +00:00
import { Recordable } from "../../types";
2022-01-22 13:30:17 +00:00
import { guid } from "../../utils/guidUtil";
2022-01-28 08:45:15 +00:00
import LayCheckbox from "../checkbox";
2022-01-27 08:18:16 +00:00
import "./index.less";
2021-11-28 10:53:42 +00:00
const tableId = guid();
const props = withDefaults(
defineProps<{
id?: string;
skin?: string;
size?: string;
page?: Recordable;
checkbox?: boolean;
columns: Recordable[];
dataSource: Recordable[];
defaultToolbar?: boolean;
selectedKeys?: Recordable[];
}>(),
{
id: "id",
size: "md",
dataSource: () => [],
selectedKeys: () => [],
}
);
const emit = defineEmits([
"change",
"row",
"row-double",
"update:selectedKeys",
]);
const slot = useSlots();
const slots = slot.default && slot.default();
const allChecked = ref(false);
const tableSelectedKeys = ref([...props.selectedKeys]);
const tableColumns = ref([...props.columns]);
const tableColumnKeys = ref(
props.columns.map((item: any) => {
return item.key;
})
);
const changeAll = function (checked: any) {
const ids = props.dataSource.map((item: any) => {
return item[props.id];
});
tableSelectedKeys.value.splice(0, ids.length);
if (checked) {
ids.forEach((id) => {
tableSelectedKeys.value.push(id);
});
}
emit("update:selectedKeys", tableSelectedKeys.value);
};
watch(
tableSelectedKeys,
function () {
if (tableSelectedKeys.value.length === props.dataSource.length) {
allChecked.value = true;
} else {
allChecked.value = false;
}
emit("update:selectedKeys", tableSelectedKeys.value);
},
{ deep: true }
);
const change = function (page: any) {
emit("change", page);
};
const rowClick = function (data: any) {
emit("row", data);
};
const rowDoubleClick = function (data: any) {
emit("row-double", data);
};
const print = function () {
2021-11-28 10:53:42 +00:00
let subOutputRankPrint = document.getElementById(tableId) as HTMLElement;
let newContent = subOutputRankPrint.innerHTML;
let oldContent = document.body.innerHTML;
document.body.innerHTML = newContent;
window.print();
window.location.reload();
document.body.innerHTML = oldContent;
};
</script>
2021-10-09 02:41:52 +00:00
<template>
2021-11-28 10:53:42 +00:00
<div :id="tableId">
2021-12-24 16:09:30 +00:00
<table class="layui-hide" lay-filter="test"></table>
2021-10-09 02:41:52 +00:00
<div
class="layui-form layui-border-box layui-table-view layui-table-view-1"
>
<div v-if="defaultToolbar || slot.toolbar" class="layui-table-tool">
2021-10-15 01:46:45 +00:00
<div v-if="slot.toolbar" class="layui-table-tool-temp">
<slot name="toolbar"></slot>
</div>
<div v-if="defaultToolbar" class="layui-table-tool-self">
2021-11-07 07:55:08 +00:00
<lay-dropdown>
<div class="layui-inline" title="筛选列" lay-event="LAYTABLE_COLS">
<i class="layui-icon layui-icon-cols"></i>
</div>
<template #content>
2021-11-07 07:56:24 +00:00
<div style="padding: 10px">
<lay-checkbox
2021-11-07 07:56:24 +00:00
v-for="column in columns"
:key="column"
v-model="tableColumnKeys"
2021-11-07 07:56:24 +00:00
skin="primary"
:label="column.key"
>{{ column.title }}</lay-checkbox
2021-11-07 07:56:24 +00:00
>
2021-11-07 07:55:08 +00:00
</div>
</template>
</lay-dropdown>
<div
class="layui-inline"
title="打印"
lay-event="LAYTABLE_PRINT"
@click="print()"
>
2021-12-24 16:09:30 +00:00
<i class="layui-icon layui-icon-print"></i>
2021-10-09 02:41:52 +00:00
</div>
</div>
</div>
2021-10-09 02:41:52 +00:00
<div class="layui-table-box">
<!-- 表格头部 -->
2021-10-09 02:41:52 +00:00
<div class="layui-table-header">
<table class="layui-table" :lay-size="size">
2021-10-09 02:41:52 +00:00
<thead>
<tr>
<th v-if="checkbox" class="layui-table-col-special">
2021-10-09 21:48:45 +00:00
<div class="layui-table-cell laytable-cell-checkbox">
2021-10-11 07:46:44 +00:00
<lay-checkbox
v-model="allChecked"
skin="primary"
2021-10-11 07:46:44 +00:00
label="all"
@change="changeAll"
/>
2021-10-09 02:41:52 +00:00
</div>
</th>
2021-11-07 07:55:08 +00:00
<template v-for="column in columns" :key="column">
<th v-if="tableColumnKeys.includes(column.key)">
2021-11-07 07:55:08 +00:00
<div
class="layui-table-cell"
:style="{ width: column.width }"
>
<span>{{ column.title }}</span>
</div>
</th>
</template>
2021-10-09 02:41:52 +00:00
</tr>
</thead>
</table>
</div>
<!-- 表格数据 -->
2021-10-09 02:41:52 +00:00
<div class="layui-table-body layui-table-main">
<table class="layui-table" :lay-size="size">
2021-10-09 02:41:52 +00:00
<tbody>
2021-10-09 21:48:45 +00:00
<template v-for="data in dataSource" :key="data">
2021-11-04 17:26:20 +00:00
<tr
@click.stop="rowClick(data)"
@dblclick.stop="rowDoubleClick(data)"
>
<td v-if="checkbox" class="layui-table-col-special">
2021-10-09 21:48:45 +00:00
<div class="layui-table-cell laytable-cell-checkbox">
<lay-checkbox
v-model="tableSelectedKeys"
skin="primary"
2021-10-11 07:46:44 +00:00
:label="data[id]"
2021-12-24 16:09:30 +00:00
/>
2021-10-09 02:41:52 +00:00
</div>
2021-10-09 21:48:45 +00:00
</td>
2021-11-07 07:55:08 +00:00
<template v-for="column in columns" :key="column">
<template v-if="tableColumnKeys.includes(column.key)">
2021-11-07 07:55:08 +00:00
<template v-if="column.customSlot">
<td class="layui-table-cell">
<div :style="{ width: column.width }">
2021-12-24 16:09:30 +00:00
<slot :name="column.customSlot" :data="data"></slot>
2021-11-07 07:55:08 +00:00
</div>
</td>
</template>
2021-11-07 07:55:08 +00:00
<template
v-for="(value, key) in data"
2021-11-07 07:56:24 +00:00
v-else
2021-11-07 07:55:08 +00:00
:key="value"
>
<td v-if="column.key == key" class="layui-table-cell">
<div :style="{ width: column.width }">
<span v-if="column.slot">
2021-12-24 16:09:30 +00:00
<slot :name="column.slot" :data="data"></slot>
2021-11-07 07:55:08 +00:00
</span>
<span v-else> {{ value }} </span>
</div>
</td>
</template>
2021-10-09 21:48:45 +00:00
</template>
</template>
</tr>
</template>
2021-10-09 02:41:52 +00:00
</tbody>
</table>
</div>
</div>
<div v-if="page" class="layui-table-page">
<lay-page
:total="page.total"
:limit="page.limit"
show-page
show-limit
show-skip
@jump="change"
>
2021-12-24 16:09:30 +00:00
<template #prev><lay-icon type="layui-icon-left" /></template>
<template #next><lay-icon type="layui-icon-right" /></template>
</lay-page>
2021-10-09 02:41:52 +00:00
</div>
</div>
</div>
2022-01-27 08:18:16 +00:00
</template>