zoukankan      html  css  js  c++  java
  • easyUI---datagrid--显示

    $("#MultiPoint").datagrid({
      url:"${pageContext.request.contextPath}/TDataMonitoring/TDataMonitoringGrid.do;"+ $.now(),
      rownumbers:true,
      pageSize:10,
      pagination:true,
      striped:true,
      singleSelect:true,
      //fitColumns:true,
      fit:true,
      queryParams: {
        protype:$('#protype').val(),
        factorcode:$('#factorcode').val(),
        factorname:$('#factorname').val()
      },
    columns:[[
      {field:'psname',title:'企业名称',180,align:'center'},
      {field:'progressname',title:'工艺类型',150,align:'center'},
      {field:'mttime',title:'时间',180,align:'center'},
      {field:'linknet',title:'联网',150,align:'center',
      formatter: function(value,row,index){
        if(value =="1"){
          linkRate++;
          return "联网";
        }else if(value =="2"){
          return "断网";
        }
        }
      },
      {field:'runstate',title:'运行状态',150, align:'center',
        formatter: function(value,row,index){
          if(value =="1"){
            normal++;
            return "正常";
          }else if(value =="4"){
            error++;
            return "异常";
          }else if(value =="2"){
            stop++;
            return "停运";
          }else if(value =="3"){
            steal++;
            return "偷排";
          } else{
            return "超标";
          }
        }
      },
    {field: "_",title: "操作", 200,align: "center",
    formatter: function(value,row,index) {
    return "<a href='#' onclick='lookinfo(""+row.psbaseinfoid+","+row.psname+"")' >查看</a><span style='font-size:12px;'></span>"; }
    }
    ]],
    onLoadSuccess:function(rowData){
    $("#normal").empty().append(normal);
    $("#stop").empty().append(stop);
    $("#error").empty().append(error);
    $("#steal").empty().append(steal);
    $("#overproof").empty().append(overproof);

    onClickRow:function(rowIndex, rowData){



    });

  • 相关阅读:
    基本算法 st
    winServer服务器设置多用户同时远程访问!
    类的实例化顺序
    基于layui的数据列表展示数据中template的作用。使得日期等数据符合预期进行展示
    基于layui的laydate,在加载后台数据时laydate.render()不起作用。
    微信企业号两种常用搜索加载方式
    Docker搭建私有仓库registry
    第7章 Dockerfile详解
    第6章 docker数据管理
    第5章 Docker的四种网络模式
  • 原文地址:https://www.cnblogs.com/latter/p/5478138.html
Copyright © 2011-2022 走看看