af-mobile-client-vue3 1.4.70 → 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "af-mobile-client-vue3",
3
3
  "type": "module",
4
- "version": "1.4.70",
4
+ "version": "1.4.72",
5
5
  "packageManager": "pnpm@10.13.1",
6
6
  "description": "Vue + Vite component lib",
7
7
  "engines": {
@@ -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 }" @touchmove.prevent>
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-')">
@@ -1117,6 +1117,7 @@ function emitFunc(func: any, data: any, value: any) {
1117
1117
  height: calc(100vh - var(--van-nav-bar-height) - 20px);
1118
1118
  display: flex;
1119
1119
  flex-direction: column;
1120
+ overflow: hidden;
1120
1121
  --van-search-padding: 3px;
1121
1122
  --van-dropdown-menu-title-padding: 3px;
1122
1123
  --van-text-color-2: rgb(75, 85, 99);
@@ -1461,6 +1462,9 @@ function emitFunc(func: any, data: any, value: any) {
1461
1462
  .filter-condition {
1462
1463
  display: flex;
1463
1464
  align-items: center;
1465
+ flex-shrink: 0;
1466
+ overflow: hidden;
1467
+ touch-action: none;
1464
1468
  padding: 8px 12px;
1465
1469
  background-color: #fff;
1466
1470
  gap: 1px;