领料出库因表单展开导致的无法滑动问题

This commit is contained in:
hongchao 2024-12-27 17:16:40 +08:00
parent fae075f9a4
commit 5fc8c82925
1 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,7 @@
<!-- 编码出库--> <!-- 编码出库-->
<view class="page-container"> <view class="page-container">
<!-- 表单信息区域 --> <!-- 表单信息区域 -->
<scroll-view scroll-y style="height: 100vh;">
<view class="form-section"> <view class="form-section">
<view class="section-header" @tap="toggleForm"> <view class="section-header" @tap="toggleForm">
<text class="title">表单信息</text> <text class="title">表单信息</text>
@ -62,6 +63,7 @@
</uni-row> </uni-row>
</view> </view>
<scroll-view scroll-y @scrolltolower="onScrollTolower" style="padding-bottom: 90rpx"> <scroll-view scroll-y @scrolltolower="onScrollTolower" style="padding-bottom: 90rpx">
<view class="table-list-item" v-for="item in codeDeviceList" :key="item.maId"> <view class="table-list-item" v-for="item in codeDeviceList" :key="item.maId">
<uni-row :gutter="24"> <uni-row :gutter="24">
@ -114,7 +116,7 @@
{{ finish ? '没有更多数据了~' : '正在加载...' }} {{ finish ? '没有更多数据了~' : '正在加载...' }}
</view> </view>
</scroll-view> </scroll-view>
</scroll-view>
<view class="outbound-btn" @tap="onHandleOutbound"> 出库 </view> <view class="outbound-btn" @tap="onHandleOutbound"> 出库 </view>
</view> </view>
</template> </template>