瀏覽代碼

医废入库

seimin 1 年之前
父節點
當前提交
a7e0f05510

+ 5 - 0
components/bigScreen/bigScreen.vue

@@ -312,6 +312,11 @@
312 312
                           }
313 313
                           this.userId.ids = this.selectArr;
314 314
                           this.orderDeptHandler(true);
315
+                        }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
316
+                          // 医废
317
+                          uni.navigateTo({
318
+                            url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
319
+                          });
315 320
                         }else{
316 321
                           uni.navigateTo({
317 322
                             url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(

+ 290 - 0
components/medicalWasteListItem/medicalWasteListItem.vue

@@ -0,0 +1,290 @@
1
+<template>
2
+  <view class="page_item">
3
+    <view class="page_item_top">
4
+      <view class="page_item_top-inner">
5
+        <view class="page_item_top_L">
6
+          <view class="L_text"><text class="serialNumber">{{i + 1}}</text>{{ item.clinicalWasteSn || "无" }}</view>
7
+        </view>
8
+        <view class="page_item_top_R"></view>
9
+      </view>
10
+    </view>
11
+    <view class="page_item_cont">
12
+      <view class="page_item_cont_T">
13
+        <view class="page_item_cont_title">
14
+          <view style="width: 10em;"> 申请科室 </view>
15
+          <view class="text_big">{{ item.dept ? item.dept.dept : "无" }}</view>
16
+        </view>
17
+        <view class="page_item_cont_title">
18
+          <view class="text_big"> {{ item.clinicalWasteType ? item.clinicalWasteType.typeName : "无" }} </view>
19
+          <view class="text_big">{{ item.weight }}kg</view>
20
+        </view>
21
+        <view class="page_item_cont_title">
22
+          <view class="text_big"> 收取:{{ item.receivor ? item.receivor.name : "无" }} </view>
23
+          <view class="text_big">{{item.receiveTime | formatDate('yyyy-MM-dd hh:mm')}}</view>
24
+        </view>
25
+        <view class="page_item_cont_title">
26
+          <view class="text_big"> {{ item.remark }} </view>
27
+        </view>
28
+      </view>
29
+    </view>
30
+    <view class="L"></view>
31
+    <view class="R"></view>
32
+  </view>
33
+</template>
34
+
35
+<script>
36
+  export default {
37
+    props: {
38
+      i: {
39
+        type: Number,
40
+      },
41
+      item: {
42
+        type: Object,
43
+      },
44
+    },
45
+  };
46
+</script>
47
+
48
+<style lang="less" scoped>
49
+  .page_item {
50
+    margin-top: 16rpx;
51
+    margin-bottom: 124rpx;
52
+    background: #fff;
53
+    border-radius: 8rpx;
54
+    margin: 0 20rpx;
55
+    border: 2rpx solid #e5e9ed;
56
+    position: relative;
57
+    overflow: hidden;
58
+    padding: 0 16rpx;
59
+  
60
+    .L {
61
+      width: 40rpx;
62
+      height: 40rpx;
63
+      border-radius: 50%;
64
+      background: #f9fafb;
65
+      position: absolute;
66
+      left: -20rpx;
67
+      top: 68rpx;
68
+      border: 2rpx solid #e5e9ed;
69
+    }
70
+  
71
+    .R {
72
+      width: 40rpx;
73
+      height: 40rpx;
74
+      border-radius: 50%;
75
+      background: #f9fafb;
76
+      position: absolute;
77
+      float: right;
78
+      right: -20rpx;
79
+      top: 68rpx;
80
+      border: 2rpx solid #e5e9ed;
81
+    }
82
+  
83
+    .starting {
84
+      width: 50rpx;
85
+      height: 50rpx;
86
+      color: #fff;
87
+      background: #49b856;
88
+      display: inline-block;
89
+      border-radius: 50%;
90
+      text-align: center;
91
+      line-height: 46rpx;
92
+      font-size: 32rpx;
93
+      margin-right: 6rpx;
94
+    }
95
+  
96
+    .End {
97
+      width: 50rpx;
98
+      height: 50rpx;
99
+      color: #fff;
100
+      background: #39b199;
101
+      display: inline-block;
102
+      border-radius: 50%;
103
+      text-align: center;
104
+      line-height: 46rpx;
105
+      font-size: 32rpx;
106
+      margin-right: 6rpx;
107
+    }
108
+  
109
+    .page_item_top {
110
+      height: 88rpx;
111
+      border-bottom: 2rpx dashed #e5e9ed;
112
+      padding: 0 16rpx;
113
+  
114
+      .page_item_top-inner {
115
+        display: flex;
116
+        justify-content: space-between;
117
+        align-items: center;
118
+        height: 100%;
119
+  
120
+        .page_item_top_L {
121
+          .serialNumber{
122
+            width: 50rpx;
123
+            height: 50rpx;
124
+            border-radius: 50%;
125
+            background-color: #49b856;
126
+            display: flex;
127
+            justify-content: center;
128
+            align-items: center;
129
+            color: #fff;
130
+            line-height: 0;
131
+            margin-right: 8rpx;
132
+          }
133
+          .emergencys {
134
+            background: #ff3b53 !important;
135
+            width: 124rpx !important;
136
+          }
137
+  
138
+          .emergency {
139
+            background: #ff3b53 !important;
140
+          }
141
+  
142
+          .emergency1 {
143
+            background: #49b856 !important;
144
+          }
145
+  
146
+          .page_item_cont_start {
147
+            text-align: center;
148
+            height: 44rpx;
149
+            width: 104rpx;
150
+            line-height: 44rpx;
151
+            border-radius: 8rpx;
152
+            background: #49b856;
153
+            color: #fff;
154
+            display: inline-block;
155
+          }
156
+  
157
+          .L_time {
158
+            color: #6cc076;
159
+            font-size: 32rpx;
160
+          }
161
+  
162
+          .L_text {
163
+            font-size: 32rpx;
164
+            font-weight: 700;
165
+            display: flex;
166
+            align-items: center;
167
+          }
168
+        }
169
+  
170
+        .page_item_top_R {
171
+          font-size: 32rpx;
172
+  
173
+          .back {
174
+            background-color: #49b856;
175
+          }
176
+  
177
+          .L_iocn {
178
+            color: rgb(7, 134, 60);
179
+            font-size: 36rpx;
180
+            font-weight: 700;
181
+          }
182
+        }
183
+      }
184
+    }
185
+  
186
+    .page_item_cont {
187
+      min-height: 90rpx;
188
+      padding: 0 16rpx;
189
+      text-align: left;
190
+      position: relative;
191
+  
192
+      .text_big {
193
+        font-size: 32rpx;
194
+        font-weight: 700;
195
+        margin-top: 10rpx;
196
+        text-align: right;
197
+        word-break: break-all;
198
+        line-height: 1.25;
199
+  
200
+        p {
201
+          font-weight: 700;
202
+          line-height: 1.5;
203
+        }
204
+      }
205
+  
206
+      .page_item_cont_T {
207
+        padding-top: 28rpx;
208
+        padding-bottom: 28rpx;
209
+        font-size: 28rpx;
210
+  
211
+        .page_item_cont_title {
212
+          height: 100%;
213
+          font-size: 32rpx;
214
+          display: flex;
215
+          justify-content: space-between;
216
+          align-items: center;
217
+        }
218
+      }
219
+  
220
+      .page_item_cont_B {
221
+        padding-top: 28rpx;
222
+        margin-bottom: 28rpx;
223
+  
224
+        .page_item_cont_title {
225
+          font-size: 32rpx;
226
+          display: flex;
227
+          justify-content: space-between;
228
+        }
229
+  
230
+        .page_item_cont_title1 {
231
+          height: 60rpx;
232
+          line-height: 60rpx;
233
+          font-size: 32rpx;
234
+          padding-left: 64rpx;
235
+        }
236
+      }
237
+    }
238
+  
239
+    .page_item_foot {
240
+      border-top: 2rpx dashed #e5e9ed;
241
+      border-bottom: 2rpx dashed #e5e9ed;
242
+      padding: 28rpx 16rpx;
243
+      text-align: left;
244
+  
245
+      .page_item_foot_text {
246
+        font-size: 32rpx;
247
+        margin-bottom: 20rpx;
248
+  
249
+        .text1 {
250
+          color: rgb(102, 102, 102);
251
+        }
252
+  
253
+        .text2 {
254
+          float: right;
255
+          font-weight: 700;
256
+        }
257
+      }
258
+    }
259
+  
260
+    #infos {
261
+      display: none;
262
+    }
263
+  
264
+    .page_item_infos {
265
+      padding-bottom: 20rpx;
266
+      border-bottom: 2rpx dashed #e5e9ed;
267
+  
268
+      .page_item_info2 {
269
+        text-align: left;
270
+        line-height: 60rpx;
271
+        font-size: 32rpx;
272
+        padding-left: 16rpx;
273
+  
274
+        .page_item_foot_text {
275
+          font-size: 32rpx;
276
+          margin-bottom: 20rpx;
277
+  
278
+          .text1 {
279
+            color: rgb(102, 102, 102);
280
+          }
281
+  
282
+          .text2 {
283
+            float: right;
284
+            font-weight: 700;
285
+          }
286
+        }
287
+      }
288
+    }
289
+  }
290
+</style>

+ 16 - 0
pages.json

@@ -607,6 +607,22 @@
607 607
           "titleNView": false
608 608
         }
609 609
       }
610
+    },
611
+    {
612
+      "path": "pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn", //医废入库
613
+      "style": {
614
+        "h5": {
615
+          "titleNView": false
616
+        }
617
+      }
618
+    },
619
+    {
620
+      "path": "pages/medicalWaste/medicalWasteSignInList/medicalWasteSignInList", //医废入库-详情
621
+      "style": {
622
+        "h5": {
623
+          "titleNView": false
624
+        }
625
+      }
610 626
     }
611 627
   ],
612 628
   "globalStyle": {

+ 5 - 9
pages/medicalWaste/medicalWasteBind/medicalWasteBind.vue

@@ -484,24 +484,20 @@
484 484
     }
485 485
 
486 486
     .foot_btn {
487
-      margin: 57rpx 30rpx 10rpx;
488 487
       flex-shrink: 0;
488
+      line-height: 88rpx;
489 489
       display: flex;
490 490
       justify-content: center;
491
-
491
+    
492 492
       .btn {
493 493
         height: 88rpx;
494
-        line-height: 1;
495
-        display: flex;
496
-        justify-content: center;
497
-        align-items: center;
498 494
         flex: 1;
499
-        margin-right: 32rpx;
495
+        margin-right: 1%;
500 496
         background-image: linear-gradient(to right, #72c172, #3bb197);
501 497
         color: #fff;
502 498
         border-radius: 8rpx;
503
-        font-size: 34rpx;
504
-        font-weight: bold;
499
+        font-size: 28rpx;
500
+        text-align: center;
505 501
         &:last-of-type{
506 502
           margin-right: 0;
507 503
         }

+ 1 - 1
pages/medicalWaste/medicalWasteDetail/medicalWasteDetail.vue

@@ -35,7 +35,7 @@
35 35
           </view>
36 36
           <view class="Scanning_cont_list_body_item">
37 37
             <view class="Scanning_cont_list_body_title">收取时间:</view>
38
-            <view class="Scanning_cont_list_body_desc">{{info.receiveTime | formatDate('yyyy-MM-dd hh:mm:ss')}}</view>
38
+            <view class="Scanning_cont_list_body_desc">{{info.receiveTime | formatDate('yyyy-MM-dd hh:mm')}}</view>
39 39
           </view>
40 40
           <view class="Scanning_cont_list_body_item">
41 41
             <view class="Scanning_cont_list_body_title">交接人:</view>

+ 358 - 0
pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn.vue

@@ -0,0 +1,358 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">
5
+        <text class="cubeic-ok icon_transport transport-duigou"></text>
6
+        <view class="text1"> 签到成功 </view>
7
+      </view>
8
+      <view class="Scanning_top_text">
9
+        您已到达{{queryObj.deptName}},请确认以下信息
10
+      </view>
11
+    </view>
12
+
13
+    <view class="Scanning_cont">
14
+      <view class="Scanning_cont_head">
15
+        <view class="Scanning_cont_head_item" :class="{active: parentIndex == i}" v-for="(item, i) in tabNames" :key="item.id" @click="tabClick(i)">
16
+          {{item.name}}
17
+        </view>
18
+      </view>
19
+
20
+      <view class="Scanning_cont_list">
21
+        <view class="Scanning_cont_list_item Scanning_cont_list_head">
22
+          <view class="name">
23
+            科室名称<text class="red">({{nameTotal}})</text>
24
+          </view>
25
+          <view class="value">
26
+            <view>
27
+              袋数<text class="red">({{countTotal}})</text>
28
+            </view>
29
+          </view>
30
+          <view class="value">
31
+            <view>
32
+              重量<text class="red">({{weightTotal}})</text>
33
+            </view>
34
+          </view>
35
+        </view>
36
+        <scroll-view scroll-y="true" class="Scanning_cont_list_scroll" v-if="dataList[parentIndex]">
37
+          <view class="Scanning_cont_list_item" @click="clickRow(item, parentIndex === 0 ? 'dept' : 'waste')" v-for="(item, j) in dataList[parentIndex]" :key="j">
38
+            <view class="name">
39
+              {{item.name}}
40
+            </view>
41
+            <view class="value">
42
+              <view>
43
+                {{item.wasteCount}}
44
+              </view>
45
+            </view>
46
+            <view class="value">
47
+              <view>
48
+                {{item.wasteWeight}}
49
+              </view>
50
+            </view>
51
+          </view>
52
+        </scroll-view>
53
+      </view>
54
+    </view>
55
+
56
+    <view class="foot_btn">
57
+      <view class="btn" @click="goBack()"> 取消 </view>
58
+      <view class="btn" @click="onClick()"> 确认交接 </view>
59
+    </view>
60
+    <!-- 弹窗 -->
61
+    <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
62
+      @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
63
+  </view>
64
+</template>
65
+<script>
66
+  import {
67
+    get,
68
+    post,
69
+    SM,
70
+    webHandle
71
+  } from "../../../http/http.js";
72
+  import Big from 'big.js';
73
+  export default {
74
+    data() {
75
+      return {
76
+        gdIds: '',
77
+        tabNames: [
78
+          {id: -1, name: '科室交接'},
79
+          {id: -2, name: '医废类型交接'},
80
+        ],
81
+        SMFlag: true,
82
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
83
+        queryObj: {}, //路由传递过来的数据
84
+        dataList: [[],[]],
85
+        parentIndex: 0,
86
+        nameTotal: 0,
87
+        countTotal: 0,
88
+        weightTotal: 0,
89
+        // 弹窗model
90
+        models1: {
91
+          disjunctor: false,
92
+        },
93
+      };
94
+    },
95
+    methods: {
96
+      //确定
97
+      ok1() {
98
+        this.models1.disjunctor = false;
99
+        uni.showLoading({
100
+          title: "加载中",
101
+          mask: true,
102
+        });
103
+        post("/medicalWaste/complete", {
104
+          endDeptId: +this.queryObj.deptId,
105
+          gdIds: this.gdIds,
106
+          hosId: this.hosId,
107
+        }).then((res) => {
108
+          uni.hideLoading();
109
+          if (res.status == 200) {
110
+            uni.showModal({
111
+              title: "提示",
112
+              content: "操作成功",
113
+              showCancel: false,
114
+              success: (result) => {
115
+                if (result.confirm) {
116
+                  console.log("用户点击确定");
117
+                  uni.navigateTo({
118
+                    url: `/pages/receiptpage/receiptpage`,
119
+                  });
120
+                }
121
+              },
122
+            });
123
+          }else{
124
+            uni.showToast({
125
+              icon: "none",
126
+              title: res.msg || "接口获取数据失败!",
127
+            });
128
+          }
129
+        });
130
+      },
131
+      //取消
132
+      cancel1() {
133
+        this.models1.disjunctor = false;
134
+      },
135
+      // 被服回收弹窗
136
+      showModel1() {
137
+        this.models1 = {
138
+          disjunctor: true,
139
+          title: "提示",
140
+          content: `您确认交接吗?`,
141
+          icon: "warn",
142
+          operate: {
143
+            ok: "确定",
144
+            cancel: "取消",
145
+          },
146
+        };
147
+      },
148
+      tabClick(i){
149
+        this.parentIndex = i;
150
+        this.nameTotal = this.dataList[i].length;
151
+        this.countTotal = this.dataList[i].reduce((pre, cur) => Big(pre).plus(cur.wasteCount), 0);
152
+        this.weightTotal = this.dataList[i].reduce((pre, cur) => Big(pre).plus(cur.wasteWeight), 0);
153
+      },
154
+      goBack(){
155
+        uni.navigateBack();
156
+      },
157
+      onClick(){
158
+        this.showModel1();
159
+      },
160
+      clickRow(data, type){
161
+        uni.navigateTo({
162
+          url: `/pages/medicalWaste/medicalWasteSignInList/medicalWasteSignInList?id=${data.id}&type=${type}`,
163
+        });
164
+      },
165
+      getInfo(){
166
+        uni.showLoading({
167
+          title: "加载中",
168
+          mask: true,
169
+        });
170
+        post("/medicalWaste/complete", {
171
+          code: this.queryObj.code,
172
+          hosId: this.hosId,
173
+        }).then((result) => {
174
+          uni.hideLoading();
175
+          if (result.status == 200) {
176
+            this.$set(this.dataList,'0',result.deptData || []);
177
+            this.$set(this.dataList,'1',result.wasteTypeData || []);
178
+            this.gdIds = result.gdIds;
179
+            
180
+            this.nameTotal = this.dataList[this.parentIndex].length;
181
+            this.countTotal = this.dataList[this.parentIndex].reduce((pre, cur) => Big(pre).plus(cur.wasteCount), 0);
182
+            this.weightTotal = this.dataList[this.parentIndex].reduce((pre, cur) => Big(pre).plus(cur.wasteWeight), 0);
183
+          } else {
184
+            uni.showToast({
185
+              icon: "none",
186
+              title: result.msg || "接口获取数据失败!",
187
+            });
188
+          }
189
+        });
190
+      },
191
+    },
192
+    onLoad(options) {
193
+      console.log(options, "result");
194
+      this.queryObj = options;
195
+      this.getInfo();
196
+      // #ifdef APP-PLUS
197
+      webHandle("no", "app");
198
+      // #endif
199
+      // #ifdef H5
200
+      webHandle("no", "wx");
201
+      // #endif
202
+    },
203
+  };
204
+</script>
205
+<style lang="less" scoped>
206
+  .Scanning_Result {
207
+    height: 100vh;
208
+    display: flex;
209
+    flex-direction: column;
210
+    background-color: #fafbfd;
211
+    .Scanning_top {
212
+      flex-shrink: 0;
213
+      .Scanning_top_icon {
214
+        padding-top: 26rpx;
215
+        display: flex;
216
+        justify-content: center;
217
+        align-items: center;
218
+
219
+        .cubeic-ok {
220
+          font-size: 58rpx;
221
+          color: #35b34a;
222
+        }
223
+
224
+        .text1 {
225
+          font-size: 48rpx;
226
+          font-weight: bold;
227
+        }
228
+      }
229
+      .Scanning_top_text{
230
+        text-align: center;
231
+        font-size: 28rpx;
232
+        font-weight: bold;
233
+        padding: 8rpx 0 23rpx 0;
234
+      }
235
+    }
236
+
237
+    .Scanning_cont {
238
+      flex: 1;
239
+      min-height: 0;
240
+      display: flex;
241
+      flex-direction: column;
242
+      width: 710rpx;
243
+      margin: 0 20rpx;
244
+      background-color: #fff;
245
+
246
+      .Scanning_cont_head{
247
+        flex-shrink: 0;
248
+        height: 78rpx;
249
+        display: flex;
250
+        border-top: 1rpx solid #EEEEEE;
251
+        border-bottom: 1rpx solid #EEEEEE;
252
+        .Scanning_cont_head_item{
253
+          flex: 1;
254
+          font-size: 32rpx;
255
+          font-weight: bold;
256
+          display: flex;
257
+          justify-content: center;
258
+          align-items: center;
259
+          position: relative;
260
+          &.active{
261
+            color: #49B856;
262
+            &::before{
263
+              content: '';
264
+              width: 70rpx;
265
+              height: 10rpx;
266
+              background-color: #49B856;
267
+              position: absolute;
268
+              left: 50%;
269
+              bottom: 8rpx;
270
+              transform: translateX(-50%);
271
+              border-radius: 6rpx;
272
+            }
273
+          }
274
+          &::after{
275
+            content: '';
276
+            width: 2rpx;
277
+            height: 44rpx;
278
+            background-color: #D1D1D1;
279
+            position: absolute;
280
+            right: 0;
281
+            top: 50%;
282
+            transform: translateY(-50%);
283
+          }
284
+          &:last-of-type::after{
285
+            opacity: 0;
286
+          }
287
+        }
288
+      }
289
+
290
+      .Scanning_cont_list{
291
+        flex: 1;
292
+        min-height: 0;
293
+        display: flex;
294
+        flex-direction: column;
295
+        .Scanning_cont_list_scroll{
296
+          flex: 1;
297
+          min-height: 0;
298
+        }
299
+        .Scanning_cont_list_item{
300
+          height: 70rpx;
301
+          display: flex;
302
+          align-items: center;
303
+          font-size: 28rpx;
304
+          border-bottom: 1rpx solid #ccc;
305
+          &.Scanning_cont_list_head{
306
+            font-weight: bold;
307
+            font-size: 28rpx;
308
+            border-bottom: none;
309
+            flex-shrink: 0;
310
+          }
311
+          .name,
312
+          .value{
313
+            padding: 0 10rpx;
314
+            flex: 1;
315
+            text-align: center;
316
+            line-height: 70rpx;
317
+            height: 100%;
318
+            // border-right: 1rpx solid #272727;
319
+            .red{
320
+              color: red;
321
+            }
322
+          }
323
+          .value {
324
+            view{
325
+              // width: 4em;
326
+              text-align: center;
327
+            }
328
+          }
329
+        }
330
+      }
331
+    }
332
+
333
+    .foot_btn {
334
+      margin: 57rpx 20rpx 10rpx;
335
+      flex-shrink: 0;
336
+      display: flex;
337
+      justify-content: center;
338
+    
339
+      .btn {
340
+        height: 88rpx;
341
+        line-height: 1;
342
+        display: flex;
343
+        justify-content: center;
344
+        align-items: center;
345
+        flex: 1;
346
+        margin-right: 32rpx;
347
+        background-image: linear-gradient(to right, #72c172, #3bb197);
348
+        color: #fff;
349
+        border-radius: 8rpx;
350
+        font-size: 34rpx;
351
+        font-weight: bold;
352
+        &:last-of-type{
353
+          margin-right: 0;
354
+        }
355
+      }
356
+    }
357
+  }
358
+</style>

+ 310 - 0
pages/medicalWaste/medicalWasteSignInList/medicalWasteSignInList.vue

@@ -0,0 +1,310 @@
1
+<template>
2
+  <view class="pharmacyDetails">
3
+    <view class="pharmacyDetails_title">医废列表</view>
4
+    <view class="page_item footerOtherMargin">
5
+      <view class="page_item_wrap" v-for="(v, i) in list" :key="v.id">
6
+        <medicalWasteListItem :i="i" :item="v"></medicalWasteListItem>
7
+        <view class="L-l"></view>
8
+        <view class="R-l"></view>
9
+      </view>
10
+    </view>
11
+    <view class="foot_btn2 footerPadding">
12
+      <view class="btn2" @click="goBack">返回</view>
13
+    </view>
14
+  </view>
15
+</template>
16
+<script>
17
+  import {
18
+    post,
19
+    webHandle
20
+  } from "../../../http/http.js";
21
+  export default {
22
+    data() {
23
+      return {
24
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
25
+        queryObj: {}, //路由传递过来的数据
26
+        id: undefined,
27
+        list: [],
28
+      };
29
+    },
30
+    methods: {
31
+      // 返回
32
+      goBack() {
33
+        uni.navigateBack();
34
+      },
35
+      // 获取信息
36
+      getList() {
37
+        let postData = {
38
+          hosId: this.hosId,
39
+        };
40
+        if(this.queryObj.type === 'dept'){
41
+          postData.deptId = +this.queryObj.id;
42
+        } else if(this.queryObj.type === 'waste'){
43
+          postData.clinicalWasteTypeId = +this.queryObj.id;
44
+        }
45
+        uni.showLoading({
46
+          title: "加载中",
47
+          mask: true,
48
+        });
49
+        post("/medicalWaste/info", postData).then((res) => {
50
+          uni.hideLoading();
51
+          if (res.status == 200) {
52
+            this.list = res.list || [];
53
+          }
54
+        });
55
+      },
56
+    },
57
+    onLoad(options) {
58
+      console.log(options);
59
+      this.queryObj = options;
60
+      this.getList();
61
+      // #ifdef APP-PLUS
62
+      webHandle("no", "app");
63
+      // #endif
64
+      // #ifdef H5
65
+      webHandle("no", "wx");
66
+      // #endif
67
+    },
68
+  };
69
+</script>
70
+<style lang="less" scoped>
71
+  .pharmacyDetails {
72
+    background-color: rgb(249, 250, 251);
73
+    padding-top: 50rpx;
74
+    height: 100%;
75
+    box-sizing: border-box;
76
+
77
+    .pharmacyDetails_title {
78
+      font-size: 46rpx;
79
+      font-weight: 550;
80
+      text-align: center;
81
+    }
82
+
83
+    .page_item_wrap {
84
+      position: relative;
85
+      margin-top: 32rpx;
86
+
87
+      .page_item {
88
+        margin-top: 16rpx;
89
+        margin-bottom: 124rpx;
90
+        background: #fff;
91
+        border-radius: 8rpx;
92
+        margin: 0 20rpx;
93
+        border: 2rpx solid #e5e9ed;
94
+        position: relative;
95
+        overflow: hidden;
96
+        padding: 0 16rpx;
97
+
98
+        .L {
99
+          width: 40rpx;
100
+          height: 40rpx;
101
+          border-radius: 50%;
102
+          background: #f9fafb;
103
+          position: absolute;
104
+          left: -20rpx;
105
+          top: 68rpx;
106
+          border: 2rpx solid #e5e9ed;
107
+        }
108
+
109
+        .R {
110
+          width: 40rpx;
111
+          height: 40rpx;
112
+          border-radius: 50%;
113
+          background: #f9fafb;
114
+          position: absolute;
115
+          float: right;
116
+          right: -20rpx;
117
+          top: 68rpx;
118
+          border: 2rpx solid #e5e9ed;
119
+        }
120
+
121
+        .page_item_top {
122
+          height: 88rpx;
123
+          border-bottom: 2rpx dashed #e5e9ed;
124
+          padding: 0 16rpx;
125
+
126
+          .page_item_top-inner {
127
+            display: flex;
128
+            justify-content: space-between;
129
+            align-items: center;
130
+            height: 100%;
131
+
132
+            .page_item_top_L {
133
+              .L_text {
134
+                font-size: 32rpx;
135
+                font-weight: 700;
136
+              }
137
+            }
138
+
139
+            .page_item_top_R {
140
+              font-size: 32rpx;
141
+
142
+              .L_iocn {
143
+                color: rgb(7, 134, 60);
144
+                font-size: 36rpx;
145
+                font-weight: 700;
146
+              }
147
+            }
148
+          }
149
+        }
150
+
151
+        .page_item_cont {
152
+          min-height: 90rpx;
153
+          padding: 0 16rpx;
154
+          text-align: left;
155
+          position: relative;
156
+
157
+          .text_big {
158
+            font-size: 32rpx;
159
+            font-weight: 700;
160
+            margin-top: 10rpx;
161
+          
162
+            p {
163
+              font-weight: 700;
164
+              line-height: 1.5;
165
+            }
166
+          }
167
+
168
+          .line {
169
+            height: 20rpx;
170
+            width: 2rpx;
171
+            border-left: 2rpx solid #e5e9ed;
172
+            position: absolute;
173
+            top: 82rpx;
174
+            left: 40rpx;
175
+          }
176
+
177
+          .page_item_cont_T {
178
+            padding-top: 28rpx;
179
+            padding-bottom: 28rpx;
180
+            font-size: 28rpx;
181
+
182
+            .page_item_cont_title {
183
+              height: 100%;
184
+              font-size: 32rpx;
185
+              display: flex;
186
+              justify-content: space-between;
187
+              align-items: center;
188
+            }
189
+          }
190
+
191
+          .page_item_cont_B {
192
+            padding-top: 28rpx;
193
+            margin-bottom: 28rpx;
194
+
195
+            .page_item_cont_title {
196
+              font-size: 32rpx;
197
+              display: flex;
198
+              justify-content: space-between;
199
+              align-items: center;
200
+            }
201
+          }
202
+
203
+          .page_item_cont_C {
204
+            margin-bottom: 28rpx;
205
+
206
+            .page_item_cont_title_C {
207
+              font-size: 32rpx;
208
+              display: flex;
209
+              justify-content: space-between;
210
+              align-items: center;
211
+            }
212
+          }
213
+
214
+          #infos {
215
+            display: none;
216
+          }
217
+        }
218
+      }
219
+
220
+      .L-l {
221
+        width: 2rpx;
222
+        height: 40rpx;
223
+        background: #f9fafb;
224
+        position: absolute;
225
+        left: 20rpx;
226
+        top: 72rpx;
227
+      }
228
+
229
+      .R-l {
230
+        width: 2rpx;
231
+        height: 40rpx;
232
+        background: #f9fafb;
233
+        position: absolute;
234
+        right: 20rpx;
235
+        top: 72rpx;
236
+      }
237
+    }
238
+
239
+    .cube-toolbar-item {
240
+      width: 710rpx;
241
+      height: 68rpx;
242
+      line-height: 68rpx;
243
+      position: fixed;
244
+      left: 20rpx;
245
+      bottom: 160rpx;
246
+      border-radius: 8rpx;
247
+      background: linear-gradient(to right, #72c172, #3bb197);
248
+      font-size: 36rpx;
249
+      color: #fff;
250
+      text-align: center;
251
+    }
252
+
253
+    .btn-wrap {
254
+      display: flex;
255
+      justify-content: space-between;
256
+      position: fixed;
257
+      left: 20rpx;
258
+      bottom: 160rpx;
259
+    }
260
+
261
+    .cube-toolbar-item1 {
262
+      width: 350rpx;
263
+      height: 68rpx;
264
+      line-height: 68rpx;
265
+      border-radius: 8rpx;
266
+      margin: 0 5rpx;
267
+      background: linear-gradient(to right, #72c172, #3bb197);
268
+      font-size: 36rpx;
269
+      color: #fff;
270
+      text-align: center;
271
+    }
272
+
273
+    .foot_btn2 {
274
+      position: fixed;
275
+      bottom: 0;
276
+      right: 20rpx;
277
+      left: 20rpx;
278
+      line-height: 66rpx;
279
+      height: 100rpx;
280
+      border-top: 2rpx solid #e5e9ed;
281
+      background: #f9fafb;
282
+      display: flex;
283
+      justify-content: space-between;
284
+
285
+      .btn2 {
286
+        height: 66rpx;
287
+        width: 100%;
288
+        margin: 0 1%;
289
+        background-image: linear-gradient(to right, #72c172, #3bb197);
290
+        color: #fff;
291
+        border-radius: 8rpx;
292
+        font-size: 32rpx;
293
+        margin-top: 16rpx;
294
+        text-align: center;
295
+      }
296
+
297
+      .btn3 {
298
+        height: 66rpx;
299
+        width: 48%;
300
+        margin: 0 1%;
301
+        background-image: linear-gradient(to right, #72c172, #3bb197);
302
+        color: #fff;
303
+        border-radius: 8rpx;
304
+        font-size: 32rpx;
305
+        margin-top: 16rpx;
306
+        text-align: center;
307
+      }
308
+    }
309
+  }
310
+</style>