2018-11-28 16:49:46 +08:00
|
|
|
<template>
|
|
|
|
|
<d2-container type="card">
|
|
|
|
|
<d2-crud
|
|
|
|
|
v-bind="crud"
|
|
|
|
|
@edit="handleEdit"
|
|
|
|
|
style="margin: -15px 0;"/>
|
|
|
|
|
<template slot="footer">
|
|
|
|
|
<d2-link-btn
|
|
|
|
|
title="issue #142"
|
|
|
|
|
link="https://github.com/d2-projects/d2-admin/issues/142"/>
|
|
|
|
|
</template>
|
|
|
|
|
</d2-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
crud: {
|
|
|
|
|
columns: [
|
|
|
|
|
{ title: '姓名', key: 'name' },
|
|
|
|
|
{ title: '地址', key: 'address' }
|
|
|
|
|
],
|
|
|
|
|
data: [
|
|
|
|
|
{ id: '1', name: '王小虎1', address: '上海市普陀区金沙江路 1518 弄' },
|
|
|
|
|
{ id: '2', name: '王小虎2', address: '上海市普陀区金沙江路 1517 弄' },
|
|
|
|
|
{ id: '3', name: '王小虎3', address: '上海市普陀区金沙江路 1519 弄' },
|
|
|
|
|
{ id: '4', name: '王小虎4', address: '上海市普陀区金沙江路 1516 弄' }
|
|
|
|
|
],
|
|
|
|
|
options: {
|
|
|
|
|
border: true,
|
|
|
|
|
size: 'mini'
|
|
|
|
|
},
|
|
|
|
|
rowHandle: {
|
|
|
|
|
align: 'center',
|
|
|
|
|
custom: [
|
|
|
|
|
{
|
2018-11-28 19:43:04 +08:00
|
|
|
text: '无缓存编辑',
|
2018-11-28 16:49:46 +08:00
|
|
|
size: 'mini',
|
|
|
|
|
emit: 'edit'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
handleEdit ({ index, row }) {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
name: 'demo-business-issues-142-edit',
|
|
|
|
|
params: {
|
|
|
|
|
id: row.id
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|