Files
mes-ui-d2/src/pages/demo/business/issues/142/index.vue

79 lines
1.7 KiB
Vue
Raw Normal View History

<template>
<d2-container :filename="filename" type="card">
<d2-crud
v-bind="crud"
@edit="({ index, row }) => goToEditPage('demo-business-issues-142-edit', row.id)"
@edit-cache-db="({ index, row }) => goToEditPage('demo-business-issues-142-edit-cache-db', row.id)"
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>
// API
import {
fetch
} from '@/api/demo.business.issues.142'
export default {
data () {
return {
filename: __filename,
crud: {
columns: [
{ title: '姓名', key: 'name', width: 100 },
{ title: '地址', key: 'address' }
],
data: [],
options: {
border: true,
size: 'mini'
},
rowHandle: {
align: 'center',
width: 240,
custom: [
{
text: '无缓存编辑',
size: 'mini',
emit: 'edit'
},
{
text: '带缓存编辑 DB',
size: 'mini',
emit: 'edit-cache-db'
}
]
}
}
}
},
created () {
this.getTableData()
},
methods: {
// 请求表格数据
getTableData () {
fetch()
.then(res => {
this.crud.data = res.list
})
.catch(err => console.log(err))
},
// 跳转到编辑页面
goToEditPage (name, id) {
this.$router.push({
name,
params: {
id
}
})
}
}
}
</script>