当前位置:主页 > 网页前端 > JavaScript代码 >

layui 表格的属性的显示转换方法

时间:2020-10-28 21:43:36 | 栏目:JavaScript代码 | 点击:

如下所示:

layui.render({
  url:'/xxxxx'
  ,cols:[[ 
    {field:'status',title:'状态'}
  ]]

,done:function(res, curr, count){  //res 接口返回的信息

  $("[data-field = '属性名(status)']").children().each(function(){

    if($(this).text() == '1'){

      $(this).text("发布");

    }else if($(this).text() == '1'){

       $(this).text("禁用");
    }
  })
})

您可能感兴趣的文章:

相关文章