|
|
|
@ -53,9 +53,9 @@ |
|
|
|
<image src="/static/imgs/factory/electric-box-icon.png" class="image_6" /> |
|
|
|
<text class="text_16">当月产能(件)</text> |
|
|
|
</view> |
|
|
|
<text class="text_17">{{ info.monthCapacity }}</text> |
|
|
|
<text class="text_18">今日:{{ info.todayCapacity }}</text> |
|
|
|
<text class="text_18">昨日:{{ info.yesterdayCapacity }}</text> |
|
|
|
<text class="text_17">{{ info.monthCapacity || '- -'}}</text> |
|
|
|
<text class="text_18">今日:{{ info.todayCapacity|| '- -' }}</text> |
|
|
|
<text class="text_18">昨日:{{ info.yesterdayCapacity|| '- -' }}</text> |
|
|
|
<!-- <text class="text_18">累计:{{ info.totalCapacity }}</text> --> |
|
|
|
</view> |
|
|
|
<view class="flex-col group_11"> |
|
|
|
@ -64,8 +64,8 @@ |
|
|
|
<text class="text_16">当月工作</text> |
|
|
|
</view> |
|
|
|
<text class="text_17">{{ transHours(info.monthWorkTime) }} h</text> |
|
|
|
<text class="text_18">今日:{{ transHours(info.todayWorkTime) }}</text> |
|
|
|
<text class="text_18">昨日:{{ info.yesterdayWorkTime }}</text> |
|
|
|
<text class="text_18">今日:{{ transHours(info.todayWorkTime)|| '- -' }}h</text> |
|
|
|
<text class="text_18">昨日:{{ info.yesterdayWorkTime || '- -' }}h</text> |
|
|
|
<!-- <text class="text_18">累计:{{ info.totalWorkHour }}</text> --> |
|
|
|
</view> |
|
|
|
<view class="flex-col group_11"> |
|
|
|
@ -74,6 +74,8 @@ |
|
|
|
<text class="text_16">开机率</text> |
|
|
|
</view> |
|
|
|
<text class="text_17">{{ info.monthOperationRate }}%</text> |
|
|
|
<text class="text_18">今日:{{ info.todayOperationRate }}%</text> |
|
|
|
<text class="text_18">昨日:{{ info.yesterdayOperationRate || '- -' }}%</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="flex-col items-center empty-info" v-show="curTab == 2"> |
|
|
|
|