|
|
@@ -45,7 +45,7 @@
|
|
|
<view class="listBox-bottom rx">
|
|
|
<view v-for="(itm, index) in tableH(item.rootCategoryLevelId)" :key="index"
|
|
|
class="items" v-if="!itm.formatter">
|
|
|
- {{ itm.label }}:{{ item[itm.prop] }}
|
|
|
+ <text>{{ itm.label }}</text>{{ item[itm.prop] }}
|
|
|
</view>
|
|
|
|
|
|
|
|
|
@@ -53,24 +53,24 @@
|
|
|
|
|
|
<view class="items"
|
|
|
v-if='item.rootCategoryLevelId != 11 '>
|
|
|
- 可用库存:{{ item.availableCountBase }} {{item.unit}}
|
|
|
+ <text>可用库存</text>{{ item.availableCountBase }} {{item.unit}}
|
|
|
</view>
|
|
|
|
|
|
<view class="items"
|
|
|
v-if='item.rootCategoryLevelId == 1 '>
|
|
|
- 包装库存:{{ item.packingCountBase }} {{item.minUnit}}
|
|
|
+ <text>包装库存</text>{{ item.packingCountBase }} {{item.minUnit}}
|
|
|
</view>
|
|
|
|
|
|
<view class="items" v-if='item.rootCategoryLevelId == 11'>
|
|
|
<text
|
|
|
- :style="{ color: item.status == 0 ? '#157A2C' :'#FFA929' }">状态:{{ item.status == 0 ? '空闲' : item.status == 1 ? '占用' : ''}}</text>
|
|
|
+ :style="{ color: item.status == 0 ? '#157A2C' :'#FFA929' }">状态{{ item.status == 0 ? '空闲' : item.status == 1 ? '占用' : ''}}</text>
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<view class="items" v-if='item.rootCategoryLevelId == 11'>
|
|
|
- 位置:{{ item.region }}
|
|
|
+ <text>位置</text>{{ item.region }}
|
|
|
</view>
|
|
|
|
|
|
|
|
|
@@ -559,6 +559,7 @@
|
|
|
color: #090A0A;
|
|
|
font-size: 28rpx;
|
|
|
font-style: normal;
|
|
|
+ font-weight: 800;
|
|
|
}
|
|
|
|
|
|
.listBox-bottom {
|
|
|
@@ -568,8 +569,25 @@
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
.items {
|
|
|
- width: 50%;
|
|
|
- margin-top: 8rpx;
|
|
|
+
|
|
|
+ width: calc(50% - 1px);
|
|
|
+ border-left: 1rpx solid #E3E5E5;
|
|
|
+ border-right: 1rpx solid #E3E5E5;
|
|
|
+ border-bottom: 1rpx solid #E3E5E5;
|
|
|
+ box-sizing: border-box;
|
|
|
+
|
|
|
+ text{
|
|
|
+ display: inline-block;
|
|
|
+ background: #F7F9FA;
|
|
|
+ padding: 8rpx 10rpx;
|
|
|
+ color: #157A2C;
|
|
|
+
|
|
|
+ }
|
|
|
+ &:nth-child(1), &:nth-child(2) {
|
|
|
+ border-top: 1rpx solid #E3E5E5;
|
|
|
+ margin-top: 8rpx;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
}
|