//遍历展示title

 

{field:'couponsList',title:'优惠劵类型',width:250,align:'center',sortable:true,
               formatter:function(value){
                   if(value.length>0){
                       var title ='';
                       for(var i=0;i<value.length;i++){
                           title = title + value[i].couponTypeName + '、';
                       }
                           title = title.substring(0,title.length-1);
                       return title ;
                   }else{
                       return '暂无';
                   }
               }
       },

 

    {field:'shareUserAmount',title:'分享者金额',width:250,align:'center',sortable:true,
               formatter:function(value){
                   return    value +'元/人'
               }
       },

 

相关文章:

  • 2022-02-05
  • 2021-08-19
  • 2021-10-16
  • 2021-12-19
  • 2021-06-28
  • 2022-01-27
  • 2021-06-20
猜你喜欢
  • 2021-07-22
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
  • 2021-11-04
  • 2022-12-23
  • 2021-11-09
相关资源
相似解决方案