forked from opentiny/tiny-vue
114 lines
2.6 KiB
Vue
114 lines
2.6 KiB
Vue
<template>
|
|
<tiny-grid ref="cleargridRef" :data="tableData" @toolbar-button-click="toolbarButtonClickEvent">
|
|
<template #toolbar>
|
|
<tiny-grid-toolbar :buttons="toolbarButtons"></tiny-grid-toolbar>
|
|
</template>
|
|
<tiny-grid-column type="index" width="60"></tiny-grid-column>
|
|
<tiny-grid-column type="selection" width="60"></tiny-grid-column>
|
|
<tiny-grid-column field="name" title="公司名称"></tiny-grid-column>
|
|
<tiny-grid-column field="employees" title="员工数"></tiny-grid-column>
|
|
<tiny-grid-column field="createdDate" title="创建日期"></tiny-grid-column>
|
|
<tiny-grid-column field="city" title="城市"></tiny-grid-column>
|
|
</tiny-grid>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { ref } from 'vue'
|
|
import { Grid as TinyGrid, GridColumn as TinyGridColumn, GridToolbar as TinyGridToolbar } from '@opentiny/vue'
|
|
|
|
const toolbarButtons = ref([
|
|
{
|
|
code: 'clearData',
|
|
name: '清空表格所有数据'
|
|
},
|
|
{
|
|
code: 'clearRowData',
|
|
name: '清空表格第一行数据'
|
|
},
|
|
{
|
|
code: 'clearFieldData',
|
|
name: '清空公司名称字段数据'
|
|
}
|
|
])
|
|
const tableData = ref([
|
|
{
|
|
id: '1',
|
|
name: 'GFD科技YX公司',
|
|
city: '福州',
|
|
employees: 800,
|
|
createdDate: '2014-04-30 00:56:00'
|
|
},
|
|
{
|
|
id: '2',
|
|
name: 'WWW科技YX公司',
|
|
city: '深圳',
|
|
employees: 300,
|
|
createdDate: '2016-07-08 12:36:22'
|
|
},
|
|
{
|
|
id: '3',
|
|
name: 'RFV有限责任公司',
|
|
city: '中山',
|
|
employees: 1300,
|
|
createdDate: '2014-02-14 14:14:14'
|
|
},
|
|
{
|
|
id: '4',
|
|
name: 'TGB科技YX公司',
|
|
city: '龙岩',
|
|
employees: 360,
|
|
createdDate: '2013-01-13 13:13:13'
|
|
},
|
|
{
|
|
id: '5',
|
|
name: 'YHN科技YX公司',
|
|
city: '韶关',
|
|
employees: 810,
|
|
createdDate: '2012-12-12 12:12:12'
|
|
},
|
|
{
|
|
id: '6',
|
|
name: 'WSX科技YX公司',
|
|
city: '黄冈',
|
|
employees: 800,
|
|
createdDate: '2011-11-11 11:11:11'
|
|
},
|
|
{
|
|
id: '7',
|
|
name: 'KBG物业YX公司',
|
|
city: '赤壁',
|
|
employees: 400,
|
|
createdDate: '2016-04-30 23:56:00'
|
|
},
|
|
{
|
|
id: '8',
|
|
name: '深圳市福德宝网络技术YX公司',
|
|
city: '厦门',
|
|
employees: 540,
|
|
createdDate: '2016-06-03 13:53:25'
|
|
}
|
|
])
|
|
const cleargridRef = ref()
|
|
|
|
function toolbarButtonClickEvent({ code }) {
|
|
switch (code) {
|
|
case 'clearData': {
|
|
cleargridRef.value.clearData()
|
|
break
|
|
}
|
|
case 'clearRowData': {
|
|
let grid = cleargridRef.value
|
|
|
|
grid.clearData(grid.getData(0))
|
|
break
|
|
}
|
|
case 'clearFieldData': {
|
|
let grid = cleargridRef.value
|
|
|
|
grid.clearData(grid.getTableData().fullData, 'name')
|
|
break
|
|
}
|
|
}
|
|
}
|
|
</script>
|