mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2025-04-12 15:53:05 +08:00
29 lines
781 B
Vue
29 lines
781 B
Vue
<template>
|
|
<el-table :data="tableData" stripe border style="width: 100%">
|
|
<el-table-column prop="date" label="日期" width="180"></el-table-column>
|
|
<el-table-column prop="name" label="姓名" width="180"></el-table-column>
|
|
<el-table-column prop="address" label="地址"></el-table-column>
|
|
<el-table-column fixed="right" label="操作" width="100">
|
|
<template slot-scope="scope">
|
|
<el-button @click="handleClick(scope.row)" type="text" size="small">查看</el-button>
|
|
<el-button type="text" size="small">编辑</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "index",
|
|
methods: {
|
|
handleClick(row) {
|
|
console.log(row);
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|