diff --git a/src/views/main/BookingLedger/detail/components/sedOrder.vue b/src/views/main/BookingLedger/detail/components/sedOrder.vue index acc7438..338c09f 100644 --- a/src/views/main/BookingLedger/detail/components/sedOrder.vue +++ b/src/views/main/BookingLedger/detail/components/sedOrder.vue @@ -455,7 +455,18 @@ export default { } .active{ color: @primary-color; - background: #f5f9fe; + // background: #f5f9fe; + position: relative; + &::after{ + content: ''; + position: absolute; + top: 0;left: 0; + width:100%; + height: 100%; + z-index: 0; + background: @primary-color; + opacity: .04; + } } .sed-order-btn{ margin: 20px auto; diff --git a/src/views/main/BookingLedger/list/index.vue b/src/views/main/BookingLedger/list/index.vue index 34e1f4a..3954cf6 100644 --- a/src/views/main/BookingLedger/list/index.vue +++ b/src/views/main/BookingLedger/list/index.vue @@ -563,7 +563,19 @@ export default { } /*列表表头 */ .vxe-table--header-wrapper { - background-color: #f5f9fe !important; + // background-color: #f5f9fe !important; + position: relative; + background: #fff !important; + &::after{ + content: ''; + position: absolute; + top: 0;left: 0; + width:100%; + height: 100%; + z-index: 0; + background: @primary-color; + opacity: .04; + } } /*列表分页 */ .vxe-pager { @@ -798,7 +810,21 @@ export default { } /*列表双列背景色 */ /deep/ .vxe-table--render-default .vxe-body--row.row--stripe { - background: #f5f9fe; + // background: #f5f9fe; + position: relative; + background: #fff; + z-index: 1; + &::after{ + content: ''; + position: absolute; + top: 0;left: 0; + width:100%; + height: 100%; + z-index: 0; + background: @primary-color; + opacity: .04; + z-index: -1; + } } /*列表操作按钮颜色 */ /deep/ .operate-btn {