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