提交 f540860d 编写于 作者: S shenjizhe

1

上级 da3bd075
<template>
<view>
<thirdlucky-data-table @click="onClick" actions="+-" :columns="columns" :datas="datas"></thirdlucky-data-table>
</view>
</template>
<script>
export default {
data() {
return {
columns: [
{
name: 'name',
info: '姓名',
},
{
name: 'age',
info: '年龄',
},
{
name: 'sex',
info: '性别',
}
],
datas: [{
"name": '张三',
"age": 18,
"sex": ''
},
{
"name": '李四',
"age": 20,
"sex": ''
},
{
"name": '小红',
"age": 17,
"sex": ''
},
]
};
},
methods: {
onClick(rindex, id) {
console.log("点击了:" + id + ";索引:" + rindex);
}
}
};
</script>
<style>
</style>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册