Former-commit-id: 3673eec59eb46c38b9ae8ce91b1266aad2c5dad8 Former-commit-id: cefa3b9cadc9e6d08c871de341a9bff190095753 Former-commit-id: d5ca056fbc7d365144c17649d896d9aee035ce5d Former-commit-id: 6195c693929b52506195d8f5280b8f03ad4f6d47 [formerly 00bd4b8ea0fc897a02d2c10214a584b2e9d2938e] Former-commit-id: cabbed8c3d836fe5c26891119f6fdeb00aaae7c8 Former-commit-id: b972a4829b2c5ab9bbbf48dff6d997645f04e6c8 Former-commit-id: 1c1152f8a70de53296f7625e06036a9bf4ce842b Former-commit-id: f2b4b61ee5465c5edd3789cc52004d80188b5853 Former-commit-id: 78a67c9892149c27fc69e5dd079c2d1afeb33d1b
152 lines
3.5 KiB
Vue
152 lines
3.5 KiB
Vue
<template>
|
||
<d2-container>
|
||
<template slot="header">新增数据</template>
|
||
<d2-crud
|
||
ref="d2Crud"
|
||
:columns="columns"
|
||
:data="data"
|
||
add-title="我的新增"
|
||
:add-template="addTemplate"
|
||
:form-options="formOptions"
|
||
@dialog-open="handleDialogOpen"
|
||
@row-add="handleRowAdd"
|
||
@dialog-cancel="handleDialogCancel">
|
||
<el-button slot="header" style="margin-bottom: 5px" @click="addRow">新增</el-button>
|
||
<el-button slot="header" style="margin-bottom: 5px" @click="addRowWithNewTemplate">使用自定义模板新增</el-button>
|
||
</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>
|
||
<d2-link-btn
|
||
slot="footer"
|
||
title="文档"
|
||
link="https://fairyever.com/d2-admin/doc/zh/ecosystem-d2-crud/"/>
|
||
</d2-container>
|
||
</template>
|
||
|
||
<script>
|
||
import '../install'
|
||
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 弄'
|
||
},
|
||
{
|
||
date: '2016-05-04',
|
||
name: '王小虎',
|
||
address: '上海市普陀区金沙江路 1517 弄'
|
||
},
|
||
{
|
||
date: '2016-05-01',
|
||
name: '王小虎',
|
||
address: '上海市普陀区金沙江路 1519 弄'
|
||
},
|
||
{
|
||
date: '2016-05-03',
|
||
name: '王小虎',
|
||
address: '上海市普陀区金沙江路 1516 弄'
|
||
}
|
||
],
|
||
addTemplate: {
|
||
date: {
|
||
title: '日期',
|
||
value: '2016-05-05'
|
||
},
|
||
name: {
|
||
title: '姓名',
|
||
value: '王小虎'
|
||
},
|
||
address: {
|
||
title: '地址',
|
||
value: '上海市普陀区金沙江路 1520 弄'
|
||
}
|
||
},
|
||
formOptions: {
|
||
labelWidth: '80px',
|
||
labelPosition: 'left',
|
||
saveLoading: false
|
||
}
|
||
}
|
||
},
|
||
methods: {
|
||
handleDialogOpen ({ mode }) {
|
||
this.$message({
|
||
message: '打开模态框,模式为:' + mode,
|
||
type: 'success'
|
||
})
|
||
},
|
||
addRow () {
|
||
this.$refs.d2Crud.showDialog({
|
||
mode: 'add'
|
||
})
|
||
},
|
||
addRowWithNewTemplate () {
|
||
this.$refs.d2Crud.showDialog({
|
||
mode: 'add',
|
||
template: {
|
||
name: {
|
||
title: '姓名',
|
||
value: ''
|
||
},
|
||
value1: {
|
||
title: '新属性1',
|
||
value: ''
|
||
},
|
||
value2: {
|
||
title: '新属性2',
|
||
value: ''
|
||
}
|
||
}
|
||
})
|
||
},
|
||
handleRowAdd (row, done) {
|
||
this.formOptions.saveLoading = true
|
||
setTimeout(() => {
|
||
console.log(row)
|
||
this.$message({
|
||
message: '保存成功',
|
||
type: 'success'
|
||
})
|
||
done({
|
||
address: '我是通过done事件传入的数据!'
|
||
})
|
||
this.formOptions.saveLoading = false
|
||
}, 300)
|
||
},
|
||
handleDialogCancel (done) {
|
||
this.$message({
|
||
message: '取消保存',
|
||
type: 'warning'
|
||
})
|
||
done()
|
||
}
|
||
}
|
||
}
|
||
</script>
|