Commit 2b12104c by liangjianmin

feat(tallyReceive): 增加拆货标识,优化列表展示

- 在列表项中新增“拆货”标识,提升信息展示的完整性
- 调整样式以支持多行文本显示,增强可读性
parent 89dc288f
......@@ -233,6 +233,7 @@
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
line-clamp: 2;
}
.ttt {
......
......@@ -62,6 +62,7 @@
<view class="list row bothSide" v-if="list.length > 0">
<view class="box" v-for="(item, index) in list" :key="index" :class="{ curr: filter_list[index] }">
<view class="is-watch row rowCenter verCenter" v-if="item.is_watch == 1">看货</view>
<view class="is-watch row rowCenter verCenter" v-if="item.is_apart == 1" :style="{ top: item.is_watch == 1 ? '136rpx' : '89rpx' }">拆货</view>
<view class="check-box-icon" @click="filterChange(index)"></view>
<view class="text-item row verCenter">
<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