Commit ca1ec37b by liangjianmin

feat(putaway): 添加货物处理方式字段显示

- 在上架单详情页面添加货物处理方式显示字段
- 在上架记录页面添加货物处理方式显示字段
- 字段仅在 goods_handle_plan_str 存在时显示
- 统一设置标签宽度为 125px 保持布局一致性
parent 03d1d427
...@@ -118,6 +118,10 @@ ...@@ -118,6 +118,10 @@
<text class="label">库存类型:</text> <text class="label">库存类型:</text>
<text class="tt" :style="{ color: [2, 3].includes(item.stock_type) ? '#f00' : '' }">{{ item.stock_type_val }}</text> <text class="tt" :style="{ color: [2, 3].includes(item.stock_type) ? '#f00' : '' }">{{ item.stock_type_val }}</text>
</view> </view>
<view class="text-item row verCenter" v-if="item.goods_handle_plan_str">
<text class="label" style="width:125px;">货物处理方式:</text>
<text class="tt">{{ item.goods_handle_plan_str }}</text>
</view>
<view class="text-item row"> <view class="text-item row">
<text class="label">上游备注:</text> <text class="label">上游备注:</text>
<text class="desc" style="color: #f00;">{{ item.upstream_remark }}</text> <text class="desc" style="color: #f00;">{{ item.upstream_remark }}</text>
......
...@@ -106,6 +106,10 @@ ...@@ -106,6 +106,10 @@
<text class="label">库位类型:</text> <text class="label">库位类型:</text>
<text class="tt">{{ item.stock_type_cn }}</text> <text class="tt">{{ item.stock_type_cn }}</text>
</view> </view>
<view class="text-item row verCenter" v-if="item.goods_handle_plan_str">
<text class="label" style="width:125px;">货物处理方式:</text>
<text class="tt">{{ item.goods_handle_plan_str }}</text>
</view>
<view class="text-item row verCenter"> <view class="text-item row verCenter">
<text class="label">库 位:</text> <text class="label">库 位:</text>
<text class="tt">{{ item.position_name }}</text> <text class="tt">{{ item.position_name }}</text>
......
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