mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
121 lines
3.9 KiB
Vue
121 lines
3.9 KiB
Vue
<template>
|
||
<div>
|
||
<p class="tip">
|
||
固定列,通过设置 <table-column-api-link prop="fixed"/>=left 参数<br>
|
||
当横向内容过多时,将列固定在左右两侧
|
||
</p>
|
||
|
||
<vxe-table
|
||
border="none"
|
||
show-overflow
|
||
:data="tableData">
|
||
<vxe-table-column type="seq" width="60" fixed="left"></vxe-table-column>
|
||
<vxe-table-column field="name" title="Name" width="300"></vxe-table-column>
|
||
<vxe-table-column field="role" title="Role" width="300"></vxe-table-column>
|
||
<vxe-table-column field="sex" title="Sex" width="300"></vxe-table-column>
|
||
<vxe-table-column field="date" title="Date" width="300"></vxe-table-column>
|
||
<vxe-table-column field="address" title="Address" fixed="right" width="300"></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>
|
||
|
||
<p class="tip">如果列宽足够的情况下,固定列不会浮动</p>
|
||
|
||
<vxe-table
|
||
border
|
||
show-overflow
|
||
:data="tableData">
|
||
<vxe-table-column type="seq" width="60" fixed="left"></vxe-table-column>
|
||
<vxe-table-column field="name" title="Name"></vxe-table-column>
|
||
<vxe-table-column field="role" title="Role"></vxe-table-column>
|
||
<vxe-table-column field="sex" title="Sex"></vxe-table-column>
|
||
<vxe-table-column field="age" title="Age"></vxe-table-column>
|
||
<vxe-table-column field="address" title="Address" fixed="right" width="300"></vxe-table-column>
|
||
</vxe-table>
|
||
|
||
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
|
||
|
||
<pre>
|
||
<code class="xml">{{ demoCodes[2] }}</code>
|
||
<code class="javascript">{{ demoCodes[3] }}</code>
|
||
</pre>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import hljs from 'highlight.js'
|
||
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableData: [],
|
||
demoCodes: [
|
||
`
|
||
<vxe-table
|
||
border="none"
|
||
show-overflow
|
||
:data="tableData">
|
||
<vxe-table-column type="seq" width="60" fixed="left"></vxe-table-column>
|
||
<vxe-table-column field="name" title="Name" width="300"></vxe-table-column>
|
||
<vxe-table-column field="role" title="Role" width="300"></vxe-table-column>
|
||
<vxe-table-column field="sex" title="Sex" width="300"></vxe-table-column>
|
||
<vxe-table-column field="date" title="Date" width="300"></vxe-table-column>
|
||
<vxe-table-column field="address" title="Address" fixed="right" width="300"></vxe-table-column>
|
||
</vxe-table>
|
||
`,
|
||
`
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableData: []
|
||
}
|
||
},
|
||
created () {
|
||
this.tableData = window.MOCK_DATA_LIST.slice(0, 4)
|
||
}
|
||
}
|
||
`,
|
||
`
|
||
<vxe-table
|
||
border
|
||
show-overflow
|
||
:data="tableData">
|
||
<vxe-table-column type="seq" width="60" fixed="left"></vxe-table-column>
|
||
<vxe-table-column field="name" title="Name"></vxe-table-column>
|
||
<vxe-table-column field="role" title="Role"></vxe-table-column>
|
||
<vxe-table-column field="sex" title="Sex"></vxe-table-column>
|
||
<vxe-table-column field="age" title="Age"></vxe-table-column>
|
||
<vxe-table-column field="address" title="Address" fixed="right" width="300"></vxe-table-column>
|
||
</vxe-table>
|
||
`,
|
||
`
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableData: []
|
||
}
|
||
},
|
||
created () {
|
||
this.tableData = window.MOCK_DATA_LIST.slice(0, 4)
|
||
}
|
||
}
|
||
`
|
||
]
|
||
}
|
||
},
|
||
created () {
|
||
this.tableData = window.MOCK_DATA_LIST.slice(0, 4)
|
||
},
|
||
mounted () {
|
||
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
|
||
hljs.highlightBlock(block)
|
||
})
|
||
}
|
||
}
|
||
</script>
|