Files
vxe-table/examples/views/table/grid/RowDisable.vue
xuliangzhan 44f91141ae 工程优化
2020-02-21 18:19:51 +08:00

192 lines
6.5 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: 'row', activeMethod: activeRowMethod}"
@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">配合 <table-api-link prop="edit-actived"/> 事件实现行编辑中对列的权限控制例如限制 age 小于 27 的与 name 'x' 开头的列禁止编辑</p>
<vxe-grid
border
show-overflow
ref="xGrid"
:columns="tableColumn2"
:data="tableData"
:edit-config="{trigger: 'click', mode: 'row'}"
@edit-actived="editActivedEvent">
</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', attrs: { disabled: false } } },
{ field: 'sex', title: 'app.body.label.sex', editRender: { name: 'input', attrs: { disabled: false } } },
{ field: 'age', title: 'Age', editRender: { name: 'input', attrs: { disabled: false } } },
{ field: 'address', title: 'Address', editRender: { name: 'input' } }
],
demoCodes: [
`
<vxe-grid
border
show-overflow
:columns="tableColumn"
:data="tableData"
:edit-config="{trigger: 'click', mode: 'row', 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 }) {
alert('禁止编辑')
}
}
}
`,
`
<vxe-grid
border
show-overflow
ref="xGrid"
:columns="tableColumn"
:data="tableData"
:edit-config="{trigger: 'click', mode: 'row'}"
@edit-actived="editActivedEvent">
</vxe-grid>
`,
`
export default {
data () {
return {
tableData: [],
tableColumn: [
{ type: 'seq', width: 50 },
{ field: 'name', title: 'app.body.label.name', editRender: { name: 'input', attrs: { disabled: false } } },
{ field: 'sex', title: 'app.body.label.sex', editRender: { name: 'input', attrs: { disabled: false } } },
{ field: 'age', title: 'Age', editRender: { name: 'input', attrs: { disabled: false } } },
{ field: 'address', title: 'Address', editRender: { name: 'input' } }
]
}
},
created () {
this.tableData = window.MOCK_DATA_LIST.slice(0, 6)
},
methods: {
editActivedEvent ({ row }) {
let xGrid = this.$refs.xGrid
let nameColumn = xGrid.getColumnByField('name')
let ageColumn = xGrid.getColumnByField('age')
let sexColumn = xGrid.getColumnByField('sex')
// name 为 'x' 开头的列禁止编辑
let isNameDisabled = (row.name || '').indexOf('x') === 0
// age 小于 27 的列禁止编辑
let isAgeDisabled = row.age < 27
// sex 值编辑为 1 的列禁止编辑
let isSexDisabled = row.sex === '1'
nameColumn.editRender.attrs.disabled = isNameDisabled
ageColumn.editRender.attrs.disabled = isAgeDisabled
sexColumn.editRender.attrs.disabled = isSexDisabled
}
}
}
`
]
}
},
created () {
this.tableData = window.MOCK_DATA_LIST.slice(0, 6)
},
mounted () {
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
hljs.highlightBlock(block)
})
},
methods: {
activeRowMethod ({ rowIndex }) {
if (rowIndex === 1) {
return false
}
return true
},
editActivedEvent ({ row }) {
const xGrid = this.$refs.xGrid
const nameColumn = xGrid.getColumnByField('name')
const ageColumn = xGrid.getColumnByField('age')
const sexColumn = xGrid.getColumnByField('sex')
// name 为 'x' 开头的列禁止编辑
const isNameDisabled = (row.name || '').indexOf('x') === 0
// age 小于 27 的列禁止编辑
const isAgeDisabled = row.age < 27
// sex 值编辑为 1 的列禁止编辑
const isSexDisabled = row.sex === '1'
nameColumn.editRender.attrs.disabled = isNameDisabled
ageColumn.editRender.attrs.disabled = isAgeDisabled
sexColumn.editRender.attrs.disabled = isSexDisabled
},
editDisabledEvent () {
this.$XModal.alert('禁止编辑')
}
}
}
</script>