Commit 17d648fe by liangjianmin

fix(stockOut): 调整业务/商务字段显示顺序

- 将业务/商务字段的显示顺序从 bs_name/sale_name 调整为 sale_name/bs_name
- 确保出库回单上传页面中字段显示的一致性和正确性
parent f802df01
Showing with 1 additions and 1 deletions
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
</view> </view>
<view class="sc-card-item row full"> <view class="sc-card-item row full">
<text class="label">业务/商务:</text> <text class="label">业务/商务:</text>
<text class="text" v-if="item.bs_name && item.sale_name">{{ item.bs_name }}/{{ item.sale_name }}</text> <text class="text" v-if="item.bs_name && item.sale_name">{{ item.sale_name }}/{{ item.bs_name }}</text>
</view> </view>
<view class="sc-card-item row"> <view class="sc-card-item row">
<text class="label">型号数:</text> <text class="label">型号数:</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