1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
| <template>
| <div class="landerBox">
| <div class="landerTopBox">
| <el-button :icon="Plus">新建</el-button>
| <el-input
| v-model="input4"
| style="width: 300px"
| placeholder="请输入关键字搜索"
| >
| <template #suffix>
| <el-icon class="el-input__icon"><search /></el-icon>
| </template>
| </el-input>
| </div>
| <div class="landerContentBox">
| <el-table
| ref="multipleTableRef"
| :data="tableData"
| row-key="id"
| border
| style="width: 100%"
| @selection-change="handleSelectionChange"
| >
| <el-table-column type="selection" width="55" />
| <el-table-column prop="index" label="序号" width="70" />
| <el-table-column prop="date" label="Date" width="180" />
| <el-table-column prop="name" label="Name" width="180" />
| <el-table-column prop="address" label="Address" />
| </el-table>
| </div>
| </div>
| </template>
|
| <script setup lang="ts">
| import { ref } from "vue";
| import { Plus } from "@element-plus/icons-vue";
| import type { TableInstance } from "element-plus";
|
| const input4 = ref("");
| const multipleTableRef = ref<TableInstance>();
| const multipleSelection = ref<any[]>([]);
|
| const tableData = [
| {
| id: 1,
| date: "2016-05-03",
| name: "Tom",
| address: "No. 189, Grove St, Los Angeles",
| },
| {
| id: 2,
| date: "2016-05-02",
| name: "Tom",
| address: "No. 189, Grove St, Los Angeles",
| },
| {
| id: 3,
| date: "2016-05-04",
| name: "Tom",
| address: "No. 189, Grove St, Los Angeles",
| },
| {
| id: 4,
| date: "2016-05-01",
| name: "Tom",
| address: "No. 189, Grove St, Los Angeles",
| },
| {
| id: 5,
| date: "2016-05-08",
| name: "Tom",
| address: "No. 189, Grove St, Los Angeles",
| },
| {
| id: 6,
| date: "2016-05-06",
| name: "Tom",
| address: "No. 189, Grove St, Los Angeles",
| },
| {
| id: 7,
| date: "2016-05-07",
| name: "Tom",
| address: "No. 189, Grove St, Los Angeles",
| },
| ];
|
| const handleSelectionChange = (val: []) => {
| console.log(val);
| multipleSelection.value = val;
| };
| </script>
|
| <style lang="less" scoped>
| .landerBox {
| width: 100%;
| .landerTopBox {
| display: flex;
| justify-content: space-between;
| margin-bottom: 10px;
| }
| .landerContentBox {
| width: 100%;
| }
| }
| </style>
|
|