2 changed files with 55 additions and 5 deletions
@ -1,8 +1,54 @@ |
|||||||
<template> |
<template> |
||||||
<div> |
<div> |
||||||
<!-- <div class="tab-pane fade" id="list-people" role="tabpanel" aria-labelledby="list-people-list"> |
<h1>部门管理功能</h1> |
||||||
people |
<div class="centent"> |
||||||
</div> --> |
<vxe-table |
||||||
部门管理功能 |
round |
||||||
|
border |
||||||
|
height="300" |
||||||
|
:row-config="{isCurrent: true, isHover: true}" |
||||||
|
:seq-config="tableSeq3" |
||||||
|
:data="tableData3"> |
||||||
|
<vxe-column type="seq" title="序号" width="80"></vxe-column> |
||||||
|
<vxe-column field="name" title="Name" sortable></vxe-column> |
||||||
|
<vxe-column field="sex" title="Sex"></vxe-column> |
||||||
|
<vxe-column field="age" title="Age"></vxe-column> |
||||||
|
<vxe-column field="address" title="Address" show-overflow></vxe-column> |
||||||
|
</vxe-table> |
||||||
|
</div> |
||||||
</div> |
</div> |
||||||
</template> |
</template> |
||||||
|
<script> |
||||||
|
import { defineComponent, ref } from 'vue' |
||||||
|
|
||||||
|
export default defineComponent({ |
||||||
|
setup () { |
||||||
|
const tableData3 = ref([ |
||||||
|
{ id: 10001, name: 'Test1', role: 'Develop', sex: 'Man', age: 28, address: 'test abc' }, |
||||||
|
{ id: 10002, name: 'Test2', role: 'Test', sex: 'Women', age: 22, address: 'Guangzhou' }, |
||||||
|
{ id: 10003, name: 'Test3', role: 'PM', sex: 'Man', age: 32, address: 'Shanghai' }, |
||||||
|
{ id: 10004, name: 'Test4', role: 'Designer', sex: 'Women', age: 23, address: 'test abc' }, |
||||||
|
{ id: 10005, name: 'Test5', role: 'Develop', sex: 'Women', age: 30, address: 'Shanghai' }, |
||||||
|
{ id: 10006, name: 'Test6', role: 'Designer', sex: 'Women', age: 21, address: 'test abc' }, |
||||||
|
{ id: 10007, name: 'Test7', role: 'Test', sex: 'Man', age: 29, address: 'test abc' }, |
||||||
|
{ id: 10008, name: 'Test8', role: 'Develop', sex: 'Man', age: 35, address: 'test abc' } |
||||||
|
]) |
||||||
|
|
||||||
|
const tableSeq3 = ref({ |
||||||
|
seqMethod ({ rowIndex }) { |
||||||
|
return `NO${rowIndex + 1000}` |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
return { |
||||||
|
tableData3, |
||||||
|
tableSeq3 |
||||||
|
} |
||||||
|
} |
||||||
|
}) |
||||||
|
</script> |
||||||
|
<style> |
||||||
|
.centent{ |
||||||
|
padding: 0 1%; |
||||||
|
} |
||||||
|
</style> |
||||||
Loading…
Reference in new issue