关于elementui 中select选中值绑定为对象时

注:值为对象类型时,需要提供一个 value-key 作为唯一性标识

HTML:



      
         
      

      





JS:

fncselvchange(item){
        var _this = this;
        var qs=require('qs');
        item.options=[];
        axios.post("/api/base/para/getParaListByCode", qs.stringify({
          code:item.code,
          token:this.$store.state.token.token
        })).then(function (response) {
          response.data.data.forEach((item1)=>{
            item.options.push({
              id:item1.id,
              valStr:item1.valStr,
              name:item1.name,
            });
          })
        })
   },
    fpselpchange(item){
        if(item.hasCasc==true){
          var _this = this;
          var qs=require('qs');
          item.options=[];
          axios.post("/api/base/para/getParaListByCode", qs.stringify({
            code:item.code,
            token:this.$store.state.token.token
          })).then(function (response) {
            response.data.data.forEach((item1)=>{
              item.options.push({
                id:item1.id,
                valStr:item1.valStr,
                name:item1.name,
                paraInfo:item1.paraList[0]
              });
            })
          })
        }
      },

 

你可能感兴趣的:(关于elementui 中select选中值绑定为对象时)