|
@@ -26,7 +26,14 @@
|
|
|
<text class="info-value">{{ inventoryInfo.operator }}</text>
|
|
|
</view>
|
|
|
<view class="progress-box">
|
|
|
- <text class="progress-label">盘点进度</text>
|
|
|
+ <view class="progress-label-box">
|
|
|
+ <text class="progress-label">
|
|
|
+ 盘点进度
|
|
|
+ </text>
|
|
|
+ <text class="progress-value"
|
|
|
+ >{{ inventoryInfo.progress }}/{{ inventoryInfo.total }}</text
|
|
|
+ >
|
|
|
+ </view>
|
|
|
<view class="progress-bar-wrap">
|
|
|
<u-line-progress
|
|
|
:percentage="getProgressPercentage"
|
|
@@ -36,9 +43,6 @@
|
|
|
>
|
|
|
</u-line-progress>
|
|
|
</view>
|
|
|
- <text class="progress-value"
|
|
|
- >{{ inventoryInfo.progress }}/{{ inventoryInfo.total }}</text
|
|
|
- >
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 筛选按钮 -->
|
|
@@ -344,6 +348,12 @@ export default {
|
|
|
}
|
|
|
|
|
|
.progress-box {
|
|
|
+
|
|
|
+ .progress-label-box{
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+
|
|
|
.progress-label {
|
|
|
font-size: 28rpx;
|
|
|
color: #666;
|