af-mobile-client-vue3 1.4.71 → 1.4.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
|
@@ -806,7 +806,7 @@ function emitFunc(func: any, data: any, value: any) {
|
|
|
806
806
|
|
|
807
807
|
<template>
|
|
808
808
|
<div id="XCellList">
|
|
809
|
-
<VanRow v-if="showFilter" class="filter-condition" :class="{ dark: isDark }"
|
|
809
|
+
<VanRow v-if="showFilter" class="filter-condition" :class="{ dark: isDark }">
|
|
810
810
|
<!-- 左侧动态插槽区域 -->
|
|
811
811
|
<template v-for="(_, name) in slots" :key="name">
|
|
812
812
|
<template v-if="typeof name === 'string' && name.startsWith('search-left-')">
|
|
@@ -862,9 +862,7 @@ function emitFunc(func: any, data: any, value: any) {
|
|
|
862
862
|
/>
|
|
863
863
|
</VanCol>
|
|
864
864
|
</VanRow>
|
|
865
|
-
<
|
|
866
|
-
<slot name="search-after" />
|
|
867
|
-
</div>
|
|
865
|
+
<slot name="search-after" />
|
|
868
866
|
|
|
869
867
|
<!-- 多选功能提示 -->
|
|
870
868
|
<div v-if="enableMultiSelect && !isMultiSelectMode" class="multi-select-tip">
|
|
@@ -1119,6 +1117,7 @@ function emitFunc(func: any, data: any, value: any) {
|
|
|
1119
1117
|
height: calc(100vh - var(--van-nav-bar-height) - 20px);
|
|
1120
1118
|
display: flex;
|
|
1121
1119
|
flex-direction: column;
|
|
1120
|
+
overflow: hidden;
|
|
1122
1121
|
--van-search-padding: 3px;
|
|
1123
1122
|
--van-dropdown-menu-title-padding: 3px;
|
|
1124
1123
|
--van-text-color-2: rgb(75, 85, 99);
|
|
@@ -1463,6 +1462,9 @@ function emitFunc(func: any, data: any, value: any) {
|
|
|
1463
1462
|
.filter-condition {
|
|
1464
1463
|
display: flex;
|
|
1465
1464
|
align-items: center;
|
|
1465
|
+
flex-shrink: 0;
|
|
1466
|
+
overflow: hidden;
|
|
1467
|
+
touch-action: none;
|
|
1466
1468
|
padding: 8px 12px;
|
|
1467
1469
|
background-color: #fff;
|
|
1468
1470
|
gap: 1px;
|