|
@@ -210,11 +210,11 @@
|
210
|
210
|
<text class="text"
|
211
|
211
|
v-if="infoDATA.gdState.value == 5 || infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
|
212
|
212
|
扫描接收
|
213
|
|
- <text class="page_item_info_txt">{{scanReception}}</text>
|
|
213
|
+ <text class="page_item_info_txt">{{infoDATA.actualReceiveNum || 0}}</text>
|
214
|
214
|
</text>
|
215
|
215
|
<text class="text" v-if="infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
|
216
|
216
|
实际送达
|
217
|
|
- <text class="page_item_info_txt">{{actualDelivery}}</text>
|
|
217
|
+ <text class="page_item_info_txt">{{actualDelivery || 0}}</text>
|
218
|
218
|
</text>
|
219
|
219
|
</view>
|
220
|
220
|
<view v-for="spe in infoDATA.specimenSet" :key="spe.id" class="spe_list">
|
|
@@ -363,7 +363,6 @@
|
363
|
363
|
export default {
|
364
|
364
|
data() {
|
365
|
365
|
return {
|
366
|
|
- scanReception: 0,
|
367
|
366
|
actualDelivery: 0,
|
368
|
367
|
currentUserId: 0,
|
369
|
368
|
// 弹窗model
|
|
@@ -635,7 +634,6 @@
|
635
|
634
|
uni.hideLoading();
|
636
|
635
|
if (res.state == 200) {
|
637
|
636
|
this.actualDelivery = res.actualDelivery;
|
638
|
|
- this.scanReception = res.scanReception;
|
639
|
637
|
this.infoDATA = res.data;
|
640
|
638
|
// 计算高度
|
641
|
639
|
setTimeout(() => {
|