|
|
@ -1,23 +1,33 @@ |
|
|
|
<template> |
|
|
|
<view class="" style="background-color: #fff;"> |
|
|
|
<view class=""> |
|
|
|
<view class="" style="font-size: 32rpx;margin-left: 20rpx;"> |
|
|
|
<view class=""> |
|
|
|
检验类型 : {{getInspectType(jobContent.inspectType)}} |
|
|
|
</view> |
|
|
|
<view class=""> |
|
|
|
收货数量 : {{jobContent.receiveQty}}{{getUnitInfo(jobContent.uom)}} |
|
|
|
</view> |
|
|
|
<view class=""> |
|
|
|
检验数量 : {{jobContent.sampleQty}}{{getUnitInfo(jobContent.uom)}} |
|
|
|
</view> |
|
|
|
<view class=""> |
|
|
|
不合格数量 : {{jobContent.failedQty}}{{getUnitInfo(jobContent.uom)}} |
|
|
|
</view> |
|
|
|
<view class=""> |
|
|
|
报废数量 : {{jobContent.crackQty}}{{getUnitInfo(jobContent.uom)}} |
|
|
|
|
|
|
|
<view class="cen_card" style="padding: 20rpx;"> |
|
|
|
<view class="cell_box uni-flex uni-row"> |
|
|
|
<view class="cell_info"> |
|
|
|
<view class="text_lightblue">类型</view> |
|
|
|
<view>{{getInspectType(jobContent.inspectType)}}</view> |
|
|
|
</view> |
|
|
|
<view class="cell_info"> |
|
|
|
<view class="text_lightblue">收货数</view> |
|
|
|
<view>{{jobContent.receiveQty}}{{getUnitInfo(jobContent.uom)}}</view> |
|
|
|
</view> |
|
|
|
<view class="cell_info"> |
|
|
|
<view class="text_lightblue">检验数</view> |
|
|
|
<view>{{jobContent.sampleQty}}{{getUnitInfo(jobContent.uom)}}</view> |
|
|
|
</view> |
|
|
|
<view class="cell_info"> |
|
|
|
<view class="text_lightblue">不合格数</view> |
|
|
|
<view>{{jobContent.failedQty}}{{getUnitInfo(jobContent.uom)}}</view> |
|
|
|
</view> |
|
|
|
<view class="cell_info"> |
|
|
|
<view class="text_lightblue">报废数</view> |
|
|
|
<view>{{jobContent.crackQty}}{{getUnitInfo(jobContent.uom)}}</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<u-line /> |
|
|
|
</view> |
|
|
|
|
|
|
|
</view> |
|
|
|
<u-line /> |
|
|
|
<uni-collapse ref="collapse1" @change=""> |
|
|
@ -168,7 +178,7 @@ |
|
|
|
|
|
|
|
detail(item) { |
|
|
|
this.showItem = item; |
|
|
|
this.$refs.receiptHint.openScanPopup() |
|
|
|
this.$refs.receiptHint.openScanPopup(item) |
|
|
|
}, |
|
|
|
remove(item) { |
|
|
|
this.$refs.message.showQuestionMessage("确定移除扫描信息?", |
|
|
@ -181,6 +191,7 @@ |
|
|
|
item.notPassedQty = 0; |
|
|
|
item.inspectResult ="" |
|
|
|
item.failedReason ="" |
|
|
|
item.handleQty =0; |
|
|
|
item.photos ="" |
|
|
|
this.$forceUpdate() |
|
|
|
this.$emit('remove', item) |
|
|
|