mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
46 lines
1.7 KiB
Vue
46 lines
1.7 KiB
Vue
<template>
|
|
<div>
|
|
<p>子路由 1</p>
|
|
|
|
<vxe-table
|
|
border
|
|
height="400"
|
|
:loading="loading"
|
|
:data="tableData">
|
|
<vxe-column type="seq" width="60"></vxe-column>
|
|
<vxe-column field="name" title="Name"></vxe-column>
|
|
<vxe-column field="sex" title="Sex"></vxe-column>
|
|
<vxe-column field="address" title="Address" show-overflow></vxe-column>
|
|
</vxe-table>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
loading: false,
|
|
tableData: []
|
|
}
|
|
},
|
|
created () {
|
|
this.loading = true
|
|
setTimeout(() => {
|
|
this.tableData = [
|
|
{ id: 10001, name: 'Test1', role: 'Develop', sex: '0', age: 28, amount: 888, address: 'test abc' },
|
|
{ id: 10002, name: 'Test2', role: 'Test', sex: '1', age: 22, amount: 666, address: 'Guangzhou' },
|
|
{ id: 10003, name: 'Test3', role: 'PM', sex: '1', age: 32, amount: 89, address: 'Shanghai' },
|
|
{ id: 10004, name: 'Test4', role: 'Designer', sex: '0', age: 23, amount: 1000, address: 'test abc' },
|
|
{ id: 10005, name: 'Test5', role: 'Develop', sex: '0', age: 30, amount: 999, address: 'Shanghai' },
|
|
{ id: 10006, name: 'Test6', role: 'Designer', sex: '0', age: 21, amount: 998, address: 'test abc' },
|
|
{ id: 10007, name: 'Test7', role: 'Test', sex: '1', age: 29, amount: 2000, address: 'test abc' },
|
|
{ id: 10008, name: 'Test8', role: 'Develop', sex: '1', age: 35, amount: 999, address: 'test abc' },
|
|
{ id: 10009, name: 'Test9', role: 'Test', sex: '1', age: 26, amount: 2000, address: 'test abc' },
|
|
{ id: 100010, name: 'Test10', role: 'Develop', sex: '1', age: 21, amount: 666, address: 'test abc' }
|
|
]
|
|
this.loading = false
|
|
}, 300)
|
|
}
|
|
}
|
|
</script>
|