titleOptions 下拉框的数据
有两种遍历 数组 的方式
find
forEach
titleFormat (row, column) {
var title = row.title // 取出 table 的title
// titleOptions 下拉框的数据
const item = this.titleOptions.find(item => item.value === title)
return item.label
},
titleFormat2 (row, column) {
var title = row.title // 取出 table 的title
var result = ''
// titleOptions 下拉框的数据
this.titleOptions.forEach(item => {
if (item.value === title) {
result = item.label
}
})
return result
},