Commit 2068449b by liangjianmin

fix(putaway): 添加上游备注字段及库存类型显示

- 在上架任务列表和详情页新增上游备注字段显示
- 在单个上架任务详情页添加库存类型字段展示
- 统一备注字段样式,使用红色突出显示重要信息
- 优化详情页布局,确保备注信息完整显示
parent bcdd32b6
......@@ -104,6 +104,10 @@
<text class="tt" :style="{ color: [2, 3].includes(item.stock_type) ? '#f00' : '' }">{{ item.stock_type_val }}</text>
</view>
<view class="text-item row">
<text class="label">上游备注:</text>
<text class="desc" style="color: #f00;">{{ item.upstream_remark }}</text>
</view>
<view class="text-item row">
<text class="label">明细备注:</text>
<text class="desc" style="color: #f00;">{{ item.remark }}</text>
</view>
......
......@@ -37,6 +37,18 @@
<text class="label">容 器:</text>
<text class="text">{{ detail.container_name }}</text>
</view>
<view class="item row verCenter">
<text class="label">库存类型:</text>
<text class="text" :style="{ color: [2, 3].includes(detail.stock_type) ? '#f00' : '' }">{{ detail.stock_type_val }}</text>
</view>
<view class="item row verCenter" style="flex: 0 0 100%;">
<text class="label">上游备注:</text>
<text class="desc" style="color: #f00;">{{ detail.upstream_remark }}</text>
</view>
<view class="item row verCenter" style="flex: 0 0 100%;">
<text class="label">明细备注:</text>
<text class="desc" style="color: #f00;">{{ detail.remark }}</text>
</view>
</view>
<view class="bor"></view>
<view class="item-tit row verCenter">
......
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