Browse Source

2026-04-16

优化
master
fengyuan_yang 5 hours ago
parent
commit
4f4e88dd3d
  1. 44
      src/views/modules/warehouse/labelTransactionLog.vue

44
src/views/modules/warehouse/labelTransactionLog.vue

@ -175,14 +175,14 @@
</el-button>
<el-button
v-if="isAuth('105006:try')"
type="warning"
class="btn-retry"
icon="el-icon-refresh-right"
@click="batchRetryHandle">
手动重试
</el-button>
<el-button
v-if="isAuth('105006:exceptionTry')"
type="danger"
class="btn-exception-retry"
icon="el-icon-warning-outline"
@click="exceptionRetryHandle">
异常重试
@ -1089,27 +1089,45 @@ export default {
transform: scale(0.98);
}
/* 自定义按钮背景色 */
/* 自定义按钮背景色 - 柔和标签风格 */
.btn-reverse {
background-color: #386adc !important;
border-color: #386adc !important;
color: #fff !important;
background-color: #E6F7FF !important;
border-color: #1890FF !important;
color: #1890FF !important;
}
.btn-reverse:hover {
background-color: #4a7be8 !important;
border-color: #4a7be8 !important;
background-color: #d2e3fc !important;
}
.btn-retry {
background-color: #FFFBE6 !important;
border-color: #d99817 !important;
color: #d99817 !important;
}
.btn-retry:hover {
background-color: #faecd8 !important;
}
.btn-exception-retry {
background-color: #FFF1F0 !important;
border-color: #FF4D4F !important;
color: #FF4D4F !important;
}
.btn-exception-retry:hover {
background-color: #fde2e2 !important;
}
.btn-exception-close {
background-color: #50c541 !important;
border-color: #50c541 !important;
color: #fff !important;
background-color: #e6f6e4 !important;
border-color: #52b945 !important;
color: #52b945 !important;
}
.btn-exception-close:hover {
background-color: #63d154 !important;
border-color: #63d154 !important;
background-color: #d3f0cf !important;
}
/* 页签样式 */

Loading…
Cancel
Save