Files
vxe-table/examples/views/table/grid/CellDisable.vue
xuliangzhan eccdb81816 优化重构
2020-08-30 22:45:19 +08:00

173 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 class="tip">通过 <table-api-link prop="edit-config"/>.<table-api-link prop="activeMethod"/> 方法来判断单元格是否禁用禁用后不可编辑</p>
<vxe-grid
border
show-overflow
:columns="tableColumn"
:data="tableData"
:edit-config="{trigger: 'click', mode: 'cell', activeMethod: activeCellMethod}"
@edit-disabled="editDisabledEvent">
</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>
<p class="tip">禁用第二行编辑</p>
<vxe-grid
border
show-overflow
:columns="tableColumn2"
:data="tableData"
:edit-config="{trigger: 'click', mode: 'cell', activeMethod: activeRowMethod}"
@edit-disabled="editDisabledEvent">
</vxe-grid>
<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: [],
tableColumn: [
{ type: 'seq', width: 50 },
{ field: 'name', title: 'app.body.label.name', editRender: { name: 'input' } },
{ field: 'sex', title: 'app.body.label.sex', editRender: { name: 'input' } },
{ field: 'age', title: 'Age', editRender: { name: 'input' } },
{ field: 'address', title: 'Address', editRender: { name: 'input' } }
],
tableColumn2: [
{ type: 'seq', width: 50 },
{ field: 'name', title: 'app.body.label.name', editRender: { name: 'input' } },
{ field: 'sex', title: 'app.body.label.sex', editRender: { name: 'input' } },
{ field: 'age', title: 'Age', editRender: { name: 'input' } },
{ field: 'address', title: 'Address', editRender: { name: 'input' } }
],
demoCodes: [
`
<vxe-grid
border
show-overflow
:columns="tableColumn"
:data="tableData"
:edit-config="{trigger: 'click', mode: 'cell', activeMethod: activeCellMethod}"
@edit-disabled="editDisabledEvent">
</vxe-grid>
`,
`
export default {
data () {
return {
tableData: [],
tableColumn: [
{ type: 'seq', width: 50 },
{ field: 'name', title: 'app.body.label.name', editRender: { name: 'input' } },
{ field: 'sex', title: 'app.body.label.sex', editRender: { name: 'input' } },
{ field: 'age', title: 'Age', editRender: { name: 'input' } },
{ field: 'address', title: 'Address', editRender: { name: 'input' } }
]
}
},
created () {
this.tableData = window.MOCK_DATA_LIST.slice(0, 6)
},
methods: {
activeCellMethod ({ column, columnIndex }) {
if (columnIndex === 1) {
return false
}
return true
},
editDisabledEvent ({ row, column }) {
alert('禁止编辑')
}
}
}
`,
`
<vxe-grid
border
show-overflow
:columns="tableColumn"
:data="tableData"
:edit-config="{trigger: 'click', mode: 'cell', activeMethod: activeRowMethod}"
@edit-disabled="editDisabledEvent">
</vxe-grid>
`,
`
export default {
data () {
return {
tableData: [],
tableColumn: [
{ type: 'seq', width: 50 },
{ field: 'name', title: 'app.body.label.name', editRender: { name: 'input' } },
{ field: 'sex', title: 'app.body.label.sex', editRender: { name: 'input' } },
{ field: 'age', title: 'Age', editRender: { name: 'input' } },
{ field: 'address', title: 'Address', editRender: { name: 'input' } }
]
}
},
created () {
this.tableData = window.MOCK_DATA_LIST.slice(0, 6)
},
methods: {
activeRowMethod ({ row, rowIndex }) {
if (rowIndex === 1) {
return false
}
return true
},
editDisabledEvent ({ row, column }) {
this.$XModal.alert('禁止编辑')
}
}
}
`
]
}
},
created () {
this.tableData = window.MOCK_DATA_LIST.slice(0, 6)
},
mounted () {
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
hljs.highlightBlock(block)
})
},
methods: {
activeCellMethod ({ columnIndex }) {
if (columnIndex === 1) {
return false
}
return true
},
activeRowMethod ({ rowIndex }) {
if (rowIndex === 1) {
return false
}
return true
},
editDisabledEvent () {
this.$XModal.alert('禁止编辑')
}
}
}
</script>