vue前端数据转换显示

时间:2024-04-17 17:25:28

 <el-table-column label="项目模板名称" align="center" prop="tempName" width="180" :formatter="templFormat" />

:formatter="templFormat"

 // 模板名单

optionTempls: [],

 // datas value

    templFormat(row, column) {

      var templName = "";

      Object.keys(this.optionTempls).some((key) => {

        if (this.optionTempls[key].templId == ("" + row.tempName)) {

          templName = this.optionTempls[key].templName

        }

      })

      return templName;

    },