seimin 1 年之前
父節點
當前提交
d5a4bfedb6
共有 1 個文件被更改,包括 4 次插入8 次删除
  1. 4 8
      pages/medicalWaste/medicalWasteSelect/medicalWasteSelect.vue

+ 4 - 8
pages/medicalWaste/medicalWasteSelect/medicalWasteSelect.vue

@@ -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",