2018-08-28 10:40:17 +08:00
|
|
|
<template>
|
2019-04-27 20:08:40 +08:00
|
|
|
<d2-container>
|
2018-08-28 10:40:17 +08:00
|
|
|
<template slot="header">合并行</template>
|
|
|
|
|
<d2-crud
|
|
|
|
|
:columns="columns"
|
|
|
|
|
:data="data"
|
|
|
|
|
:options="options">
|
|
|
|
|
</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>
|
2019-08-28 09:41:42 +08:00
|
|
|
<d2-link-btn
|
|
|
|
|
slot="footer"
|
|
|
|
|
title="文档"
|
2019-10-11 10:27:56 +08:00
|
|
|
link="https://fairyever.com/d2-admin/doc//zh/ecosystem-d2-crud/"/>
|
2018-08-28 10:40:17 +08:00
|
|
|
</d2-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import doc from './doc.md'
|
|
|
|
|
import code from './code.js'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
doc,
|
|
|
|
|
code,
|
|
|
|
|
columns: [
|
|
|
|
|
{
|
|
|
|
|
title: 'ID',
|
|
|
|
|
key: 'id'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '姓名',
|
|
|
|
|
key: 'name'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '数值 1',
|
|
|
|
|
key: 'amount1'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '数值 2',
|
|
|
|
|
key: 'amount2'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '数值 3',
|
|
|
|
|
key: 'amount3'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
data: [
|
|
|
|
|
{
|
|
|
|
|
id: '12987122',
|
|
|
|
|
name: '王小虎',
|
|
|
|
|
amount1: '234',
|
|
|
|
|
amount2: '3.2',
|
|
|
|
|
amount3: 10
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: '12987123',
|
|
|
|
|
name: '王小虎',
|
|
|
|
|
amount1: '165',
|
|
|
|
|
amount2: '4.43',
|
|
|
|
|
amount3: 12
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: '12987124',
|
|
|
|
|
name: '王小虎',
|
|
|
|
|
amount1: '324',
|
|
|
|
|
amount2: '1.9',
|
|
|
|
|
amount3: 9
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: '12987125',
|
|
|
|
|
name: '王小虎',
|
|
|
|
|
amount1: '621',
|
|
|
|
|
amount2: '2.2',
|
|
|
|
|
amount3: 17
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: '12987126',
|
|
|
|
|
name: '王小虎',
|
|
|
|
|
amount1: '539',
|
|
|
|
|
amount2: '4.1',
|
|
|
|
|
amount3: 15
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
options: {
|
|
|
|
|
border: true,
|
|
|
|
|
spanMethod ({ row, column, rowIndex, columnIndex }) {
|
|
|
|
|
if (rowIndex % 2 === 0) {
|
|
|
|
|
if (columnIndex === 0) {
|
|
|
|
|
return [1, 2]
|
|
|
|
|
} else if (columnIndex === 1) {
|
|
|
|
|
return [0, 0]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|