Files
vxe-table/examples/views/table/grid/CustomToolbar.vue
xuliangzhan ac68fa40a1 update
2019-07-26 16:10:07 +08:00

146 lines
5.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div>
<p>工具栏通过 <grid-api-link prop="toolbar"/> 属性配置使用 <grid-api-link prop="slot"/> 自定义模板</p>
<vxe-grid
border
resizable
ref="xGrid"
height="530"
:pager-config="tablePage"
:proxy-config="tableProxy"
:columns="tableColumn"
:toolbar="toolbar"
:edit-config="{trigger: 'click', mode: 'row', showStatus: true}">
<template v-slot:buttons>
<input type="text"/>
<button>搜索</button>
<vxe-button @click="$refs.xGrid.commitProxy('reload')">刷新</vxe-button>
<vxe-button @click="$refs.xGrid.commitProxy('insert_actived')">新增</vxe-button>
<vxe-button @click="$refs.xGrid.commitProxy('mark_cancel')">标记/取消</vxe-button>
<vxe-button @click="$refs.xGrid.commitProxy('save')">保存</vxe-button>
<vxe-button @click="$refs.xGrid.exportCsv()">导出.csv</vxe-button>
</template>
</vxe-grid>
<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 XEAjax from 'xe-ajax'
import hljs from 'highlight.js'
export default {
data () {
return {
tablePage: {
pageSize: 15
},
tableProxy: {
props: {
result: 'data.result',
total: 'data.page.total'
},
ajax: {
// page 对象: { pageSize, currentPage }
query: ({ page }) => XEAjax.doGet(`/api/user/page/list/${page.pageSize}/${page.currentPage}`),
// body 对象: { removeRecords }
delete: ({ body }) => XEAjax.doPost('/api/user/save', body),
// body 对象: { insertRecords, updateRecords, removeRecords, pendingRecords }
save: ({ body }) => XEAjax.doPost('/api/user/save', body)
}
},
toolbar: {
id: 'toolbar_demo_2',
setting: {
storage: true
}
},
tableColumn: [
{ type: 'selection', width: 50 },
{ type: 'index', width: 60 },
{ field: 'name', title: 'Name', editRender: { name: 'input' } },
{ field: 'nickname', title: 'Nickname', editRender: { name: 'input' } },
{ field: 'role', title: 'Role', editRender: { name: 'input' } },
{ field: 'describe', title: 'Describe', showOverflow: true, editRender: { name: 'input' } }
],
demoCodes: [
`
<vxe-grid
border
resizable
ref="xGrid"
height="530"
:pager-config="tablePage"
:proxy-config="tableProxy"
:columns="tableColumn"
:toolbar="toolbar"
:edit-config="{trigger: 'click', mode: 'row', showStatus: true}">
<template v-slot:buttons>
<input type="text"/>
<vxe-button>搜索</vxe-button>
<vxe-button @click="$refs.xGrid.commitProxy('reload')">刷新</vxe-button>
<vxe-button @click="$refs.xGrid.commitProxy('insert_actived')">新增</vxe-button>
<vxe-button @click="$refs.xGrid.commitProxy('mark_cancel')">标记/取消</vxe-button>
<vxe-button @click="$refs.xGrid.commitProxy('save')">保存</vxe-button>
<vxe-button @click="$refs.xGrid.exportCsv()">导出.csv</vxe-button>
</template>
</vxe-grid>
`,
`
export default {
data () {
return {
tablePage: {
pageSize: 15
},
tableProxy: {
// 配置响应的数据属性
props: {
result: 'data.result',
total: 'data.page.total'
},
ajax: {
// page 对象: { pageSize, currentPage }
query: ({ page }) => XEAjax.doGet(\`/api/user/page/list/\${page.pageSize}/\${page.currentPage}\`), // 模拟请求
// body 对象: { removeRecords }
delete: ({ body }) => XEAjax.doPost('/api/user/save', body),
// body 对象: { insertRecords, updateRecords, removeRecords, pendingRecords }
save: ({ body }) => XEAjax.doPost('/api/user/save', body)
}
},
toolbar: {
id: 'toolbar_demo_2',
setting: {
storage: true
}
},
tableColumn: [
{ type: 'selection', width: 50 },
{ type: 'index', width: 60 },
{ field: 'name', title: 'Name', editRender: { name: 'input' } },
{ field: 'nickname', title: 'Nickname', editRender: { name: 'input' } },
{ field: 'role', title: 'Role', editRender: { name: 'input' } },
{ field: 'describe', title: 'Describe', showOverflow: true, editRender: { name: 'input' } }
]
}
}
}
`
]
}
},
mounted () {
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
hljs.highlightBlock(block)
})
}
}
</script>