Former-commit-id: e8d0399649f030c9876ba1d69464693936bed060 [formerly e8d0399649f030c9876ba1d69464693936bed060 [formerly e8d0399649f030c9876ba1d69464693936bed060 [formerly e8d0399649f030c9876ba1d69464693936bed060 [formerly bc48870f23c75a583db5b9e41936f1437c470ac0 [formerly c68b2fb0992173d2441fd536233d5c2075fc544e]]]]] Former-commit-id: a36c5ce2a288d2d909ce8b09cc595ce80d28c15e Former-commit-id: d4c76f476b1fa7f38e6fabdd9d21f520f5f14a34 Former-commit-id: 9c745093b13b846bfd627b7f7fb011db7b7297da [formerly 3f3223ff1a1e480c6864b96a76aec0f175b6678a] Former-commit-id: 1d749c73671d29fc363199fb248d5997fe7e92b3 Former-commit-id: cb85dac90c6fa2062882ea2ebf6e40518e91a54b Former-commit-id: 9dc07127b3a14f3a7a00b1d26b679f6866a487cd Former-commit-id: d6298c124901c531fd1bfb87b865d11e0454875e Former-commit-id: a1996901ac9efc4e1e94fe5e8548bd40ae8c7366
156 lines
3.4 KiB
JavaScript
156 lines
3.4 KiB
JavaScript
export default `<template>
|
|
<div>
|
|
<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"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
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>`
|