|
@@ -17,7 +17,7 @@
|
17
|
17
|
<view>
|
18
|
18
|
<checkbox :value="item.id" :checked="item.checked" />
|
19
|
19
|
</view>
|
20
|
|
- <view>{{item.typeName}}</view>
|
|
20
|
+ <view>{{item.name}}({{item.wasteWeight}}kg)</view>
|
21
|
21
|
</label>
|
22
|
22
|
</checkbox-group>
|
23
|
23
|
</scroll-view>
|
|
@@ -87,16 +87,12 @@
|
87
|
87
|
title: "加载中",
|
88
|
88
|
mask: true,
|
89
|
89
|
});
|
90
|
|
- post("/simple/data/fetchDataList/clinicalWasteType", {
|
91
|
|
- "idx": 0,
|
92
|
|
- "sum": 9999,
|
93
|
|
- "clinicalWasteType": {
|
94
|
|
- hosId: this.hosId,
|
95
|
|
- }
|
|
90
|
+ post("/medicalWaste/weight", {
|
|
91
|
+ hosId: this.hosId
|
96
|
92
|
}).then((result) => {
|
97
|
93
|
uni.hideLoading();
|
98
|
94
|
if (result.status == 200) {
|
99
|
|
- this.list = result.list || [];
|
|
95
|
+ this.list = result.data || [];
|
100
|
96
|
} else {
|
101
|
97
|
uni.showToast({
|
102
|
98
|
icon: "none",
|