123

允我心安 提交于 2019-12-03 23:26:09
{    field: "billNumber",    locked: true,    title: '<@spring.message "测试单号"/>',    width: 170,    headerAttributes: {        style: "text-align: center"    },    attributes: {        style: "white-space:nowrap;text-overflow:ellipsis;text-align: center"    },    template: function (rowdata) {        if (rowdata.billStatus == "CANCELLED") {            return '<a href="javascript:void(0);" onclick="openDetail(\'' + rowdata.billId + '\',\'' + rowdata.billStatus + '\',\'' + rowdata.billNumber + '\',\'' + rowdata.sampleSourceCode + '\')"><del><b style="color:#009999;" >' + rowdata.billNumber + '</b></del></a>';        }        else {            return '<a href="javascript:void(0);" onclick="openDetail(\'' + rowdata.billId + '\',\'' + rowdata.billStatus + '\',\'' + rowdata.billNumber + '\',\'' + rowdata.sampleSourceCode + '\')"><b style="color:#009999;" >' + rowdata.billNumber + '</b></a>';        }    }},
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!