|
@@ -3,7 +3,7 @@
|
|
<div class="_font">{{ Statistics.total }}</div>
|
|
<div class="_font">{{ Statistics.total }}</div>
|
|
<div style="height: calc(100vh - 200px); overflow: scroll; overflow-x: hidden;">
|
|
<div style="height: calc(100vh - 200px); overflow: scroll; overflow-x: hidden;">
|
|
<el-table :data="tableData" style="width: 100%;" :header-cell-style="{ 'color':'rgba(74,74,74,1)','font-size':'14px','font-weight':'500' }" class="integration-num">
|
|
<el-table :data="tableData" style="width: 100%;" :header-cell-style="{ 'color':'rgba(74,74,74,1)','font-size':'14px','font-weight':'500' }" class="integration-num">
|
|
- <el-table-column label="优先级" min-width="100">
|
|
|
|
|
|
+ <el-table-column label="优先级" min-width="100" align="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div class="div_priority" :style="{background: priorityColors[scope.row.priority % priorityColors.length]}">{{ 'P'+scope.row.priority }}</div>
|
|
<div class="div_priority" :style="{background: priorityColors[scope.row.priority % priorityColors.length]}">{{ 'P'+scope.row.priority }}</div>
|
|
</template>
|
|
</template>
|
|
@@ -179,11 +179,14 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.div_priority {
|
|
.div_priority {
|
|
- color: #ffffff;
|
|
|
|
- width:fit-content;
|
|
|
|
- padding: 0 12px;
|
|
|
|
|
|
+ display: inline-block;
|
|
|
|
+ width: 38px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ line-height: 24px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ color: #fff;
|
|
border-radius: 4px;
|
|
border-radius: 4px;
|
|
- margin-left: 4px;
|
|
|
|
|
|
+ margin-right: 30px;
|
|
}
|
|
}
|
|
.drawer-id {
|
|
.drawer-id {
|
|
color: rgb(167, 174, 188);
|
|
color: rgb(167, 174, 188);
|