Commit e4d2d88e by liangjianmin

feat(picking): 优化拣货详情弹窗布局

- 将拣货详情弹窗内容包裹在scroll-view中,提升用户体验
- 调整样式以支持更好的信息展示,确保内容可滚动
- 保持信息一致性,更新部分字段的显示逻辑
parent bdfa457f
Showing with 3 additions and 1 deletions
......@@ -213,11 +213,12 @@
</view>
<!-- 按货品拣货详情弹窗 -->
<uni-drawer ref="showRight" mode="right">
<view class="uni-drawer-picking" v-if="detail">
<view class="uni-drawer-picking" v-if="detail" style="display:flex;flex-direction:column;height:100%;">
<view class="title row rowCenter verCenter">
<text class="iconfont icon-juxing2" @click="closeDrawer()"></text>
<text class="text">{{ stock_out_sn }}</text>
</view>
<scroll-view scroll-y="true" style="flex:1;overflow-y:auto;padding-bottom:100rpx;">
<view class="field-item row" style="margin-top: 30rpx;">
<view class="item row verCenter">
<text class="label">入库批次号:</text>
......@@ -423,6 +424,7 @@
</view>
<view style="font-size: 18rpx;color: #F98119;" v-if="detail.pick_type_val == '散'">该货品需拆出部分拣货并重贴标签</view>
</view>
</scroll-view>
<view class="btn row verCenter bothSide">
<view class="btn1 row rowCenter verCenter" @click="pick(detail.lock_id, formParams.pick_qty, detail.stock_out_item_id)">拣 货</view>
</view>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment