Commit 73607348 authored by 王奇's avatar 王奇

=接口更改

parent ec500278
...@@ -99,6 +99,7 @@ ...@@ -99,6 +99,7 @@
</el-date-picker> </el-date-picker>
</div> </div>
<el-table <el-table
:cell-style="set_cell_style"
:header-cell-style="{background:'#EFF1F3',color:'#808080'}" :header-cell-style="{background:'#EFF1F3',color:'#808080'}"
:data="tableData" :data="tableData"
stripe stripe
...@@ -358,6 +359,19 @@ ...@@ -358,6 +359,19 @@
this.getRobotList(this.RobotListParams); this.getRobotList(this.RobotListParams);
} }
}, },
//动态单元格样式
set_cell_style({row, column, rowIndex, columnIndex}){
console.log("ss",row.coin_wave_status)
if(row.coin_wave_status=="abnormal"&&column.label=="目标币当日波动量(比例)"){
// console("ddd")
return 'color:#D97878'
}else if(row.base_wave_status=="abnormal"&&column.label=="基础币当日波动量(比例)"){
return 'color:#D97878'
}else{
}
},
// 筛选 // 筛选
clickFoldExchange(type) { clickFoldExchange(type) {
switch (type) { switch (type) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment