af-mobile-client-vue3 1.3.71 → 1.3.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import XBadge from '@af-mobile-client-vue3/components/data/XBadge/index.vue'
|
|
3
3
|
import XCellListFilter from '@af-mobile-client-vue3/components/data/XCellListFilter/index.vue'
|
|
4
|
+
import { isDark } from '@af-mobile-client-vue3/composables/dark'
|
|
4
5
|
import { getConfigByName, query } from '@af-mobile-client-vue3/services/api/common'
|
|
5
6
|
import useUserStore from '@af-mobile-client-vue3/stores/modules/user'
|
|
6
7
|
import { getRangeByType } from '@af-mobile-client-vue3/utils/queryFormDefaultRangePicker'
|
|
@@ -724,7 +725,7 @@ function handleCheckboxChange(item: any, checked: boolean) {
|
|
|
724
725
|
|
|
725
726
|
<template>
|
|
726
727
|
<div id="XCellList">
|
|
727
|
-
<VanRow class="filter-condition">
|
|
728
|
+
<VanRow class="filter-condition" :class="{ dark: isDark }">
|
|
728
729
|
<!-- 左侧动态插槽区域 -->
|
|
729
730
|
<template v-for="(_, name) in slots" :key="name">
|
|
730
731
|
<template v-if="typeof name === 'string' && name.startsWith('search-left-')">
|
|
@@ -1290,7 +1291,7 @@ function handleCheckboxChange(item: any, checked: boolean) {
|
|
|
1290
1291
|
}
|
|
1291
1292
|
|
|
1292
1293
|
.van-popover__content {
|
|
1293
|
-
background-color: #ffffff !important;
|
|
1294
|
+
//background-color: #ffffff !important;
|
|
1294
1295
|
border: none !important;
|
|
1295
1296
|
outline: none !important;
|
|
1296
1297
|
border-radius: 8px !important;
|
|
@@ -1298,7 +1299,7 @@ function handleCheckboxChange(item: any, checked: boolean) {
|
|
|
1298
1299
|
|
|
1299
1300
|
.van-popover__arrow,
|
|
1300
1301
|
.van-popover_arrow {
|
|
1301
|
-
background-color: #ffffff !important;
|
|
1302
|
+
//background-color: #ffffff !important;
|
|
1302
1303
|
border: none !important;
|
|
1303
1304
|
outline: none !important;
|
|
1304
1305
|
}
|
|
@@ -1306,9 +1307,9 @@ function handleCheckboxChange(item: any, checked: boolean) {
|
|
|
1306
1307
|
.van-popover__action {
|
|
1307
1308
|
color: #333 !important;
|
|
1308
1309
|
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
}
|
|
1310
|
+
//&:hover {
|
|
1311
|
+
// //background-color: #f5f5f5 !important;
|
|
1312
|
+
//}
|
|
1312
1313
|
}
|
|
1313
1314
|
}
|
|
1314
1315
|
|
|
@@ -1406,6 +1407,9 @@ function handleCheckboxChange(item: any, checked: boolean) {
|
|
|
1406
1407
|
}
|
|
1407
1408
|
}
|
|
1408
1409
|
}
|
|
1410
|
+
.filter-condition.dark {
|
|
1411
|
+
background-color: #222222;
|
|
1412
|
+
}
|
|
1409
1413
|
|
|
1410
1414
|
.multi-select-hint {
|
|
1411
1415
|
display: flex;
|
package/src/styles/var.less
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
.van-popover,
|
|
19
19
|
.van-popover.van-popover--light,
|
|
20
20
|
.van-popover.van-popover--dark {
|
|
21
|
-
background-color: #ffffff !important;
|
|
21
|
+
//background-color: #ffffff !important;
|
|
22
22
|
border: none !important;
|
|
23
23
|
outline: none !important;
|
|
24
24
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
|