Files
mes-ui-d2/src/pages/demo/d2-crud/demo7/code.js
liyang 1681e1be5c d2-crud
Former-commit-id: d876013a5a6a12790e5d10d1956a3808a23dc10a [formerly 11bdae178465c4c3a7ec9dff5621338eca4b6d24] [formerly d876013a5a6a12790e5d10d1956a3808a23dc10a [formerly 11bdae178465c4c3a7ec9dff5621338eca4b6d24] [formerly d876013a5a6a12790e5d10d1956a3808a23dc10a [formerly 11bdae178465c4c3a7ec9dff5621338eca4b6d24] [formerly 11bdae178465c4c3a7ec9dff5621338eca4b6d24 [formerly 313036625eb510849023ef4aa00d94c1d3d4f4ef [formerly 3eaceb2222af3ed269e2f95204b56f89315a74b2]]]]]
Former-commit-id: 2166580659f160bd7b30c9b049bca2548333621b
Former-commit-id: 1938a77ab8bdeae6efe51f36024895a4cb07a1f4
Former-commit-id: 82916837f7183e162885cf8a5f20ca9c73911a46 [formerly 19b9a865abc3cca51326cb91f666e46ff585f102]
Former-commit-id: 9aeba5040b519da573e06c137668453e46e73968
Former-commit-id: 6771a4df5fe47f0673153b0cc30234c40f809d3f
Former-commit-id: d972bea6b7fdcda81c5c916407863e6f20c7e856
Former-commit-id: 743b520c7d94f05666a2b1e29801c34a522a8db5
Former-commit-id: 9fb3892f735aeb5a0daf472b4e93e58d90e983cb
2018-11-17 11:32:29 +08:00

114 lines
2.4 KiB
JavaScript

export default `<template>
<div>
<d2-crud
:columns="columns"
:data="data"
:options="options"
:rowHandle="rowHandle"/>
</div>
</template>
<script>
export default {
data () {
return {
filename: __filename,
columns: [
{
title: '日期',
key: 'date'
},
{
title: '姓名',
key: 'name'
},
{
title: '省份',
key: 'province'
},
{
title: '市区',
key: 'city'
},
{
title: '地址',
key: 'address',
width: '300'
},
{
title: '邮编',
key: 'zip'
}
],
data: [
{
date: '2016-05-03',
name: '王小虎',
province: '上海',
city: '普陀区',
address: '上海市普陀区金沙江路 1518 弄',
zip: 200333
},
{
date: '2016-05-02',
name: '王小虎',
province: '上海',
city: '普陀区',
address: '上海市普陀区金沙江路 1518 弄',
zip: 200333
},
{
date: '2016-05-04',
name: '王小虎',
province: '上海',
city: '普陀区',
address: '上海市普陀区金沙江路 1518 弄',
zip: 200333
},
{
date: '2016-05-01',
name: '王小虎',
province: '上海',
city: '普陀区',
address: '上海市普陀区金沙江路 1518 弄',
zip: 200333
},
{
date: '2016-05-08',
name: '王小虎',
province: '上海',
city: '普陀区',
address: '上海市普陀区金沙江路 1518 弄',
zip: 200333
},
{
date: '2016-05-06',
name: '王小虎',
province: '上海',
city: '普陀区',
address: '上海市普陀区金沙江路 1518 弄',
zip: 200333
},
{
date: '2016-05-07',
name: '王小虎',
province: '上海',
city: '普陀区',
address: '上海市普陀区金沙江路 1518 弄',
zip: 200333
}
],
options: {
maxHeight: '250'
},
rowHandle: {
remove: {
size: 'mini',
confirm: false
}
}
}
}
}
</script>`