Commit fa33e169 authored by youjie's avatar youjie

no message

parent d03f20af
...@@ -35,7 +35,9 @@ ...@@ -35,7 +35,9 @@
<el-table-column width="150" fixed prop="EmpName" label="姓名"></el-table-column> <el-table-column width="150" fixed prop="EmpName" label="姓名"></el-table-column>
<el-table-column width="100" prop="RankName" label="排名"> <el-table-column width="100" prop="RankName" label="排名">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.RankName}}</span> <span :class="{'activeOne':scope.row.RankName=='第一名',
'activeTwo':scope.row.RankName=='第二名',
'activeThree':scope.row.RankName=='第三名'}">{{scope.row.RankName}}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column :label="i.Name" align="center" v-for="i in PlatformTypeList"> <el-table-column :label="i.Name" align="center" v-for="i in PlatformTypeList">
...@@ -459,15 +461,15 @@ ...@@ -459,15 +461,15 @@
</script> </script>
<style> <style>
@import "../../assets/css/customerManage.css"; @import "../../assets/css/customerManage.css";
.activeThree{ /* .activeThree{
background: #FDE9D9; color: #B97234;
} }
.activeTwo{ .activeTwo{
background: #FCD5B4; color: #C7CED7;
} }
.activeOne{ .activeOne{
background: #FABF8F; color: #F9AE0E;
} } */
.activeNumB{ .activeNumB{
color: red; color: red;
} }
......
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