mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
154 lines
4.3 KiB
Vue
154 lines
4.3 KiB
Vue
<template>
|
||
<div>
|
||
<p class="tip">
|
||
使用自带的工具栏 <toolbar-api-link name="vxe-toolbar"/>,配合模板可以非常简单的实现强大的功能<br>
|
||
支持显示/隐藏列、列宽拖动状态的保存功能<br>
|
||
<span class="red">注:组成一套完整的表格,工具栏和表格必须是上下相邻关系,渲染时会自动进行上下关联,不允许更换位置(如果是复杂的布局不建议使用工具栏,自行写模板即可)</span>
|
||
</p>
|
||
|
||
<vxe-toolbar
|
||
custom
|
||
export
|
||
:buttons="toolbarButtons"
|
||
:refresh="{query: findList}"></vxe-toolbar>
|
||
|
||
<vxe-table
|
||
border
|
||
height="400"
|
||
:loading="loading"
|
||
:data="tableData">
|
||
<vxe-table-column type="seq" width="60"></vxe-table-column>
|
||
<vxe-table-column field="name" title="app.body.label.name"></vxe-table-column>
|
||
<vxe-table-column field="role" title="Role"></vxe-table-column>
|
||
<vxe-table-column field="sex" title="app.body.label.sex"></vxe-table-column>
|
||
<vxe-table-column field="age" title="app.body.label.age"></vxe-table-column>
|
||
<vxe-table-column field="rate" title="Rate"></vxe-table-column>
|
||
</vxe-table>
|
||
|
||
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
|
||
|
||
<pre>
|
||
<code class="xml">{{ demoCodes[0] }}</code>
|
||
<code class="javascript">{{ demoCodes[1] }}</code>
|
||
</pre>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import hljs from 'highlight.js'
|
||
|
||
export default {
|
||
data () {
|
||
return {
|
||
loading: false,
|
||
tableData: [],
|
||
toolbarButtons: [
|
||
{
|
||
code: 'btn1',
|
||
name: 'app.body.button.insert'
|
||
},
|
||
{
|
||
name: '下拉按钮',
|
||
dropdowns: [
|
||
{
|
||
name: '按钮111',
|
||
code: 'btn2'
|
||
},
|
||
{
|
||
name: '按钮222',
|
||
code: 'btn3'
|
||
}
|
||
]
|
||
}
|
||
],
|
||
demoCodes: [
|
||
`
|
||
<vxe-toolbar
|
||
custom
|
||
export
|
||
:buttons="toolbarButtons"
|
||
:refresh="{query: findList}"></vxe-toolbar>
|
||
|
||
<vxe-table
|
||
border
|
||
height="400"
|
||
:loading="loading"
|
||
:data="tableData">
|
||
<vxe-table-column type="seq" width="60"></vxe-table-column>
|
||
<vxe-table-column field="name" title="app.body.label.name"></vxe-table-column>
|
||
<vxe-table-column field="role" title="Role"></vxe-table-column>
|
||
<vxe-table-column field="sex" title="app.body.label.sex"></vxe-table-column>
|
||
<vxe-table-column field="age" title="app.body.label.age"></vxe-table-column>
|
||
<vxe-table-column field="rate" title="Rate"></vxe-table-column>
|
||
</vxe-table>
|
||
`,
|
||
`
|
||
export default {
|
||
data () {
|
||
return {
|
||
loading: false,
|
||
tableData: [],
|
||
toolbarButtons: [
|
||
{
|
||
code: 'btn1',
|
||
name: 'app.body.button.insert'
|
||
},
|
||
{
|
||
name: '下拉按钮',
|
||
dropdowns: [
|
||
{
|
||
name: '按钮111',
|
||
code: 'btn2'
|
||
},
|
||
{
|
||
name: '按钮222',
|
||
code: 'btn3'
|
||
}
|
||
]
|
||
}
|
||
]
|
||
}
|
||
},
|
||
created () {
|
||
this.findList()
|
||
},
|
||
methods: {
|
||
findList () {
|
||
this.loading = true
|
||
return new Promise(resolve => {
|
||
setTimeout(() => {
|
||
this.tableData = window.MOCK_DATA_LIST.slice(0, 20)
|
||
this.loading = false
|
||
resolve()
|
||
}, 300)
|
||
})
|
||
}
|
||
}
|
||
}
|
||
`
|
||
]
|
||
}
|
||
},
|
||
created () {
|
||
this.findList()
|
||
},
|
||
mounted () {
|
||
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
|
||
hljs.highlightBlock(block)
|
||
})
|
||
},
|
||
methods: {
|
||
findList () {
|
||
this.loading = true
|
||
return new Promise(resolve => {
|
||
setTimeout(() => {
|
||
this.tableData = window.MOCK_DATA_LIST.slice(0, 20)
|
||
this.loading = false
|
||
resolve()
|
||
}, 300)
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|