|
@@ -27,7 +27,7 @@
|
27
|
27
|
<checkbox class="checkbox" :checked="v2.checked" :disabled="v2.state.value == 5" />
|
28
|
28
|
<text class="newicon newicon-a-ziyuan7"></text>
|
29
|
29
|
<view class="title1 ellipsis">
|
30
|
|
- <cancelBlood :data="v2" :index="i2" @refresh="getInfo" :delivery="delivery" :cancelBlood="cancelBlood" :cancelBloodHandover="cancelBloodHandover" :dataList="dataList" type="end"></cancelBlood>
|
|
30
|
+ <cancelBlood :data="v2" :index="i2" @refresh="getInfo" :signType4="signType4" :cancelBlood="cancelBlood" :cancelBloodHandover="cancelBloodHandover" :dataList="dataList" type="end"></cancelBlood>
|
31
|
31
|
</view>
|
32
|
32
|
<view style="display: flex;align-items: center;justify-content: space-between;">
|
33
|
33
|
<text>{{v2.count}}袋</text>
|
|
@@ -102,7 +102,7 @@
|
102
|
102
|
queryObj: {}, //路由传递过来的数据
|
103
|
103
|
isComplete: false,
|
104
|
104
|
isShowCompleteBtn: false,
|
105
|
|
- delivery: 0,
|
|
105
|
+ signType4: false,
|
106
|
106
|
cancelBlood: 0,
|
107
|
107
|
cancelBloodHandover: 0,
|
108
|
108
|
};
|
|
@@ -131,16 +131,17 @@
|
131
|
131
|
let result = await this.getTaskBloodConfig();
|
132
|
132
|
if (result.status == 200) {
|
133
|
133
|
if(result.list && result.list[0]){
|
134
|
|
- this.delivery = result.list[0].delivery;
|
|
134
|
+ let signTypeList = result.list[0].signTypeList || [];
|
|
135
|
+ this.signType4 = signTypeList.some(v => v.value == 4);
|
135
|
136
|
this.cancelBlood = result.list[0].cancelBlood;
|
136
|
137
|
this.cancelBloodHandover = result.list[0].cancelBloodHandover;
|
137
|
138
|
}else{
|
138
|
|
- this.delivery = 0;
|
|
139
|
+ this.signType4 = false;
|
139
|
140
|
this.cancelBlood = 0;
|
140
|
141
|
this.cancelBloodHandover = 0;
|
141
|
142
|
}
|
142
|
143
|
} else {
|
143
|
|
- this.delivery = 0;
|
|
144
|
+ this.signType4 = false;
|
144
|
145
|
this.cancelBlood = 0;
|
145
|
146
|
this.cancelBloodHandover = 0;
|
146
|
147
|
}
|