|
|
@@ -1800,7 +1800,7 @@
|
|
|
<el-space wrap>
|
|
|
<!-- 右侧内容 -->
|
|
|
<template v-for="item in processList.total_process">
|
|
|
- <el-button disabled :type="! processList.process.includes(item) ? 'danger' : 'info'" plain style="width: 50px">{{ item }}</el-button>
|
|
|
+ <el-button class="custom-button" disabled :type="! processList.process.includes(item) ? 'danger' : 'info'" plain style="width: 50px">{{ item }}</el-button>
|
|
|
</template>
|
|
|
</el-space>
|
|
|
</layout-main>
|
|
|
@@ -6055,6 +6055,19 @@ const sbzyqdsatusCellClass = ({row, column, rowIndex, columnIndex}) =>{
|
|
|
.buleaa-input input{
|
|
|
color: red !important;
|
|
|
}
|
|
|
+/*!* 流程单查询按钮颜色控制未完成*/
|
|
|
+:deep(.custom-button.el-button--info) {
|
|
|
+ background-color: palegreen !important;
|
|
|
+ color: #155724;
|
|
|
+ border-color: #c3e6cb;
|
|
|
+}
|
|
|
+/* 已完成 */
|
|
|
+:deep(.custom-button.el-button--danger) {
|
|
|
+ background-color: rgb(236, 135, 135) !important;
|
|
|
+ color: #721c24;
|
|
|
+ border-color: #f5c6cb;
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
/*!* 选中某行时的背景色*!font-weight: bold;*/
|
|
|
:deep(.el-table__body tr.current-row)>td {
|