|
|
@@ -67,7 +67,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" v-for="item in tableHeaders" :key="item.day" :prop="item.day" width="38">
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
- <div style="width:28px;font-size: 10px">{{ item.day }}</div>
|
|
|
+ <div style="width:28px;font-size: 9px">{{ item.day }}</div>
|
|
|
<div v-if="item.week=='周六'" style="width: 24px;font-size: 12px;color: #1c84c6">{{ item.week }}</div>
|
|
|
<div v-else-if="item.week=='周日'" style="width: 24px;font-size: 12px;color: #1c84c6">{{ item.week }}</div>
|
|
|
<div v-else-if="item.week=='今日'" style="width: 24px;font-size: 12px;color: #008000">{{ item.week }}</div>
|
|
|
@@ -121,7 +121,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <div slot="reference" style="font-size: 10px">{{ scope.row[item.day].value }}</div>
|
|
|
+ <div slot="reference" style="font-size: 10px;cursor: pointer">{{ scope.row[item.day].value }}</div>
|
|
|
</el-popover>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
@@ -266,6 +266,7 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
cell.style.color = '#306FB1';
|
|
|
+ cell.style.cursor = 'pointer';
|
|
|
cell.style.textDecoration = 'underline';
|
|
|
},
|
|
|
cellMouseLeave(row, column, cell, event) {
|