Files
mes-ui-d2/src/pages/demo/d2-crud/demo17/index.vue
孙昊翔 de57257fb5 demo17添加新增按钮
Former-commit-id: 34d96627b919710b64e803a5e5ab68fe2235481d [formerly 34d96627b919710b64e803a5e5ab68fe2235481d [formerly 34d96627b919710b64e803a5e5ab68fe2235481d [formerly 34d96627b919710b64e803a5e5ab68fe2235481d [formerly 79475700095dccfe6def593052c8ec3546e03be3 [formerly bb8bc03ef1b92d3c3d273ab63f946950f6b93d31]]]]]
Former-commit-id: f0c50fb983eccde70c8c8aac36ea5758b0ff8260
Former-commit-id: 65958e5538546a9f5e3405611ee84a856a0c5786
Former-commit-id: 3ded50c5e6d12dae4296ee1803eec02f79d18494 [formerly 5b107d00a4b57dbbe3dadf968000725c3d9a1365]
Former-commit-id: 9544e7d44ff5aff4216e5ab453ecbb75c6ac55ca
Former-commit-id: e315194dbf92c7be8b9dcdede5c7396c073b9557
Former-commit-id: f5c2a82f27dc4913e43cfd700d1fae5b2437622c
Former-commit-id: b3a6c6aed49cde8783c3fe3266b9099343ffebea
Former-commit-id: de0594b2161cb2b0f4b65c51899820098b2abee1
2018-09-21 19:31:38 +08:00

172 lines
3.8 KiB
Vue

<template>
<d2-container>
<template slot="header">修改数据</template>
<d2-crud
:columns="columns"
:data="data"
title="D2 CRUD"
add-mode
:rowHandle="rowHandle"
:form-template="formTemplate"
:form-options="formOptions"
@row-add="handleRowAdd"
@row-edit="handleRowEdit"
@dialog-cancel="handleDialogCancel">
</d2-crud>
<el-card shadow="never" class="d2-mb">
<d2-markdown :source="doc"/>
</el-card>
<el-card shadow="never" class="d2-mb">
<d2-highlight :code="code"/>
</el-card>
<template slot="footer">
<d2-link-btn title="文档" link="https://d2-projects.github.io/d2-admin-doc/zh/ecosystem-d2-crud/"/>
</template>
</d2-container>
</template>
<script>
import doc from './doc.md'
import code from './code.js'
export default {
data () {
return {
doc,
code,
columns: [
{
title: '日期',
key: 'date'
},
{
title: '姓名',
key: 'name'
},
{
title: '地址',
key: 'address'
}
],
data: [
{
date: '2016-05-02',
name: '王小虎',
address: '上海市普陀区金沙江路 1518 弄',
forbidEdit: true,
showEditButton: true
},
{
date: '2016-05-04',
name: '王小虎',
address: '上海市普陀区金沙江路 1517 弄',
forbidEdit: false,
showEditButton: true
},
{
date: '2016-05-01',
name: '王小虎',
address: '上海市普陀区金沙江路 1519 弄',
forbidEdit: false,
showEditButton: false
},
{
date: '2016-05-03',
name: '王小虎',
address: '上海市普陀区金沙江路 1516 弄',
forbidEdit: false,
showEditButton: true
}
],
rowHandle: {
columnHeader: '编辑表格',
edit: {
icon: 'el-icon-edit',
text: '点我进行编辑',
size: 'small',
show (index, row) {
if (row.showEditButton) {
return true
}
return false
},
disabled (index, row) {
if (row.forbidEdit) {
return true
}
return false
}
}
},
formTemplate: {
date: {
title: '日期',
value: ''
},
name: {
title: '姓名',
value: ''
},
address: {
title: '地址',
value: ''
},
forbidEdit: {
title: '禁用按钮',
value: false,
component: {
show: false
}
},
showEditButton: {
title: '显示按钮',
value: true,
component: {
show: false
}
}
},
formOptions: {
labelWidth: '80px',
labelPosition: 'left',
saveLoading: false
}
}
},
methods: {
handleRowAdd (row, done) {
this.formOptions.saveLoading = true
setTimeout(() => {
console.log(row)
this.$message({
message: '保存成功',
type: 'success'
})
done()
this.formOptions.saveLoading = false
}, 300)
},
handleRowEdit ({ index, row }, done) {
this.formOptions.saveLoading = true
setTimeout(() => {
console.log(index)
console.log(row)
this.$message({
message: '编辑成功',
type: 'success'
})
done()
this.formOptions.saveLoading = false
}, 300)
},
handleDialogCancel (done) {
this.$message({
message: '取消编辑',
type: 'warning'
})
done()
}
}
}
</script>