element table format

裴畅
2023-12-01

table 经常要format 性别 ,地名等列

现在有个需求 按下拉框,按数组来format

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
    },
 类似资料:

相关阅读

相关文章

相关问答