0
点赞
收藏
分享

微信扫一扫

前端那些事20240112-前端那些事-数据之间的转换

野见 03-19 12:00 阅读 2


changeSupplie(data) {
      let arr = "";
      this.optionList &&
        this.optionList.supplierEnumList.map((item, index) => {
          if (item.value == data) {
            arr = item.desc;
          }
        });
      return arr;
    },

举报

相关推荐

0 条评论