BootstrapTable 根據行資料動態渲染行樣式
阿新 • • 發佈:2019-01-21
Step1:
BootstrapTable 文件:
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:
效果: