BootstrapTable 根据行数据动态渲染行样式

Step1: 

BootstrapTable 文档:

http://bootstrap-table.wenzhixin.net.cn/zh-cn/documentation/

Step2: 

选中如下表格参数:


Step3:

具体代码:

html部分代码:

<div class="col-sm-12 column" style="margin-top: 1%">
        <table id="table"
               data-row-style="rowStyle"
               data-unique-id="id"
               data-toggle="table"
               data-checkbox="true"
               data-url="/app/pageApi/singleSyn/synInfo"
               data-side-pagination="server"
               data-query-params="queryParams"
               data-response-handler="getServiceData"
               data-locale="zh-CN"
               data-page-size="100"
               data-pagination="true">
            <thead>

js:

// 设置 BootStrap Table 行样式
function rowStyle(row, index) {
    if (!isEmpty(row.error)){
        return {css:{"background-color":"#ff264e"}};
    }
    if (!isEmpty(row.runAt)){
        return {css:{"background-color":"#51ff35"}};
    }
    return {css:{}};
}

Step4:

效果:


代码地址:https://github.com/caiwangmeng/mywork

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值