-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
70 lines (65 loc) · 2.3 KB
/
table.html
File metadata and controls
70 lines (65 loc) · 2.3 KB
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
<!--
@dauthor : cpucode
@date : 2021/3/25
@time : 10:59
@github : https://github.com/CPU-Code
@csdn : https://blog.csdn.net/qq_44226094
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表格</title>
<!-- 引入ElementUI样式 -->
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<!-- 引入ElementUI组件库 -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
</head>
<body>
<div id="app">
<el-table :data="tableData" stripe>
<el-table-column prop="date" label="日期"></el-table-column>
<el-table-column prop="name" label="姓名"></el-table-column>
<el-table-column prop="address" label="地址"></el-table-column>
<el-table-column label="操作" align="center">
<!--
slot-scope:作用域插槽,可以获取表格数据
scope:代表表格数据,可以通过scope.row来获取表格当前行数据,scope不是固定写法
-->
<template slot-scope="scope">
<el-button type="primary" size="mini"
@click="handleUpdate(scope.row)">
编辑
</el-button>
<el-button type="danger" size="mini"
@click="handleDelete(scope.row)">
删除
</el-button>
</template>
</el-table-column>
</el-table>
</div>
<script>
new Vue({
el:'#app',
data:{
//定义VUE对象的模型数据,用于table展示
tableData:[
{date:'2020.10.10',name:'cpu',address:'北京'},//每个json对象对应表格中一条数据
{date:'2020.10.21',name:'cpucode',address:'南京'}
]
},
methods:{
//定义VUE对象的方法
handleUpdate(row){
alert(row.name);
},
handleDelete(row){
alert(row.date);
}
}
});
</script>
</body>
</html>