处理接口返回的数据

1.platform,返回的值是1,2,3

方法一:如果支持render的话可以应用render 去改变接口返回数据的样式

拼接的写法

 render(h, row): any {
        return `${row.newVersionNo}(${row.newVersionCode})`;
      },

方法二:通过遍历去改变

这样最后回显的时候就是1,2,3所对应的标签了,

let app = '';
      if (this.appList && this.appList.length) {
        this.appList.forEach((item: any) => {
          if (item.value === row.app) {
            app = item.label;
          }
        });
      }

 this.updateForm = Object.assign({}, row, {app: app});

  最后应用Object.assign

你可能感兴趣的:(前端,javascript,开发语言)