const columns = this.$refs.table.columns;怎么将columns中id为enable的column赋值到一个数组中
时间: 2023-11-26 21:04:25 浏览: 143
你可以使用 JavaScript 的 `filter` 方法过滤出 `columns` 中 `id` 属性为 `"enable"` 的项,然后将它们存放在一个新数组中。具体实现如下:
```javascript
const columns = this.$refs.table.columns;
const enableColumns = columns.filter(column => column.id === 'enable');
```
这样,`enableColumns` 就是一个由 `columns` 中 `id` 属性为 `"enable"` 的项组成的新数组了。
相关问题
computed: { enable() { const columns = this.$refs.table.columns; const enableColumns = columns.filter(column => column.id === 'enable'); return enableColumns; }, },这段代码有错误吗
这段代码的语法没有错误,但是可能会存在一些逻辑上的问题。
在这段代码中,computed属性`enable`的值是由对`$refs.table`的引用进行计算得出的。在计算过程中,会从`$refs.table.columns`数组中筛选出所有`id`属性值为`'enable'`的元素,返回一个新的数组。最后,这个新数组将作为`enable`属性的值返回。
但是,这个计算属性返回的是一个数组,而不是一个布尔值。如果您希望返回一个布尔值,您可以将`enableColumns`数组的长度作为计算属性的值返回,例如:
```
computed: {
enable() {
const columns = this.$refs.table.columns;
const enableColumns = columns.filter(column => column.id === 'enable');
return enableColumns.length > 0;
},
},
```
这样计算属性`enable`的值就会是一个布尔值,表示是否存在`id`属性值为`'enable'`的列。
<q-table ref="myRequestTable" class="col-md-12" style="margin-top: 15px" dense :pagination="pagination" :rows="rows" :columns="columns" row-key="FORM_ID" :selected-rows-label="getSelectedString" selection="multiple" :loading="loading" v-model:selected="selected" > </q-table>const myRequestTableRef = ref(null)onMounted(() => { const myRequestTable = myRequestTableRef.value if (myRequestTable != null) { highlightRows(myRequestTable) } }) function highlightRows(myRequestTable) { const test = this.$refs.myRequestTable const tabletr = document.querySelectorAll('.q-table tbody tr'); if (tabletr instanceof NodeList && tabletr.length > 0) { for (const row of tabletr) { const stepName = row.querySelectorAll('td')[10].innerText || ''; const isClarification = stepName === 'In Clarification' || stepName === 'Supplement Event Details'; row.style.backgroundColor = ((event.searchInfo.ViewType === 'InProcess' && isClarification) || (event.searchInfo.ViewType === 'All' && isClarification) ? 'yellow' : '') } } }
在你的代码中,你定义了 `myRequestTableRef` 并在 `onMounted` 钩子里访问了它。但是在 `highlightRows` 函数中,你又使用了 `this.$refs.myRequestTable` 来获取表格实例。
这会导致问题,因为 `this.$refs.myRequestTable` 和 `myRequestTableRef.value` 是不同的对象。在 `setup` 函数中,你使用了 `ref` 函数来创建了一个响应式引用,并将其赋值给了 `myRequestTableRef`。在模板中,你使用了 `ref` 指令来将表格实例赋值给了 `$refs.myRequestTable`。这两个引用虽然都指向同一个 DOM 元素,但是它们是不同的对象。
所以,在 `highlightRows` 函数中,你应该使用 `myRequestTable` 参数来访问表格实例,而不是使用 `this.$refs.myRequestTable`。
修改后的代码如下所示:
```html
<q-table
ref="myRequestTable"
class="col-md-12"
style="margin-top: 15px"
dense
:pagination="pagination"
:rows="rows"
:columns="columns"
row-key="FORM_ID"
:selected-rows-label="getSelectedString"
selection="multiple"
:loading="loading"
v-model:selected="selected"
></q-table>
<script>
import { ref, onMounted } from 'vue'
export default {
setup() {
const myRequestTableRef = ref(null)
onMounted(() => {
const myRequestTable = myRequestTableRef.value
if (myRequestTable != null) {
highlightRows(myRequestTable)
}
})
function highlightRows(myRequestTable) {
const tabletr = document.querySelectorAll('.q-table tbody tr');
if (tabletr instanceof NodeList && tabletr.length > 0) {
for (const row of tabletr) {
const stepName = row.querySelectorAll('td')[10].innerText || '';
const isClarification = stepName === 'In Clarification' || stepName === 'Supplement Event Details';
row.style.backgroundColor = ((event.searchInfo.ViewType === 'InProcess' && isClarification) ||
(event.searchInfo.ViewType === 'All' && isClarification) ? 'yellow' : '')
}
}
}
return {
myRequestTableRef
}
}
}
</script>
```
阅读全文