Explorar o código

数字交接优化,增加查看标本按钮

seimin %!s(int64=2) %!d(string=hai) anos
pai
achega
7c8f9de359

+ 1 - 1
components/changeSpeNum/changeSpeNum.vue

@@ -11,7 +11,7 @@
11 11
             标本数量:
12 12
           </view>
13 13
           <view class="uni-list-cell-db">
14
-            <uni-number-box v-model="speNum"></uni-number-box>
14
+            <uni-number-box v-model="speNum" :max="9999"></uni-number-box>
15 15
           </view>
16 16
         </view>
17 17
         <view class="uni-list-cell" v-if="speNum != num">

+ 2 - 14
pages/receipt_infopage/receipt_infopage.vue

@@ -1032,21 +1032,9 @@
1032 1032
       display: flex;
1033 1033
       justify-content: space-between;
1034 1034
 
1035
-      .btn2 {
1035
+      .btn2,.btn3 {
1036 1036
         height: 66rpx;
1037
-        width: 100%;
1038
-        margin: 0 1%;
1039
-        background-image: linear-gradient(to right, #72c172, #3bb197);
1040
-        color: #fff;
1041
-        border-radius: 8rpx;
1042
-        font-size: 32rpx;
1043
-        margin-top: 16rpx;
1044
-        text-align: center;
1045
-      }
1046
-
1047
-      .btn3 {
1048
-        height: 66rpx;
1049
-        width: 48%;
1037
+        flex: 1;
1050 1038
         margin: 0 1%;
1051 1039
         background-image: linear-gradient(to right, #72c172, #3bb197);
1052 1040
         color: #fff;

+ 43 - 2
pages/scanning_code/scanning_code.vue

@@ -1130,7 +1130,7 @@
1130 1130
           url: "../receiptpage/receiptpage",
1131 1131
         });
1132 1132
       },
1133
-      // 工单详情
1133
+      // 请求详细页面的数据(除标本轮巡和标本配送)
1134 1134
       getInfo(id) {
1135 1135
         uni.showLoading({
1136 1136
           title: "加载中",
@@ -1148,6 +1148,40 @@
1148 1148
           }
1149 1149
         });
1150 1150
       },
1151
+      // 请求详细页面的数据
1152
+      getInfoBySpecimen(id) {
1153
+        uni.showLoading({
1154
+          title: "加载中",
1155
+          mask: true,
1156
+        });
1157
+        post("/api/getWechatItem", {
1158
+          id
1159
+        }).then((res) => {
1160
+          uni.hideLoading();
1161
+          if (res.state == 200) {
1162
+            this.infoDATA = res.data;
1163
+            // 计算高度
1164
+            setTimeout(() => {
1165
+              const query = uni.createSelectorQuery().in(this);
1166
+              query
1167
+                .selectAll(".page_item_infos")
1168
+                .boundingClientRect((data) => {
1169
+                  let len = data.reduce((prev, current) => {
1170
+                    return prev + current.height;
1171
+                  }, 0);
1172
+                  this.animation.height(len).step();
1173
+                  this.animationData = this.animation.export();
1174
+                })
1175
+                .exec();
1176
+            }, 500)
1177
+          } else {
1178
+            uni.showToast({
1179
+              icon: "none",
1180
+              title: "请求失败!",
1181
+            });
1182
+          }
1183
+        });
1184
+      },
1151 1185
     },
1152 1186
     onShow() {
1153 1187
       this.SMFlag = true;
@@ -1166,7 +1200,14 @@
1166 1200
       this.infoType = options.type1; //type类型
1167 1201
       this.DEPTCode = options.deptCode; //二维码
1168 1202
       this.DEPT = options.dept; //科室名称
1169
-      this.getInfo(this.dataId);
1203
+      if (
1204
+        options.type == 'specimen' ||
1205
+        options.type == 'specimenPlan'
1206
+      ) {
1207
+        this.getInfoBySpecimen(id);
1208
+      } else {
1209
+        this.getInfo(id);
1210
+      }
1170 1211
       // 创建动画
1171 1212
       this.animation = uni.createAnimation({
1172 1213
         duration: 500,

+ 390 - 445
pages/scanning_orderSign/scanning_orderSign.vue

@@ -12,76 +12,33 @@
12 12
       <view class="page_item_top">
13 13
         <view class="page_item_top_L">
14 14
           <text class="L_text">单号:{{ infoDATA.gdcode }}</text>
15
-          <view
16
-            class="page_item_cont_start emergency1"
17
-            v-if="infoDATA.emergencyType.value == 1"
18
-          >
15
+          <view class="page_item_cont_start emergency1" v-if="infoDATA.emergencyType.value == 1">
19 16
             <text class="page_item_cont_start_txt">
20
-              <text
21
-                class="cubeic-star icon_transport transport-shiwujiaoxing"
22
-              ></text>
17
+              <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
23 18
               {{ infoDATA.emergencyType.name }}
24 19
             </text>
25 20
           </view>
26
-          <view
27
-            class="page_item_cont_start emergency"
28
-            v-if="infoDATA.emergencyType.value == 2"
29
-          >
21
+          <view class="page_item_cont_start emergency" v-if="infoDATA.emergencyType.value == 2">
30 22
             <text class="page_item_cont_start_txt">
31
-              <text
32
-                class="cubeic-star icon_transport transport-shiwujiaoxing"
33
-              ></text>
23
+              <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
34 24
               {{ infoDATA.emergencyType.name }}
35 25
             </text>
36 26
           </view>
37
-          <view
38
-            class="page_item_cont_start emergencys"
39
-            v-if="infoDATA.emergencyType.value == 3"
40
-          >
27
+          <view class="page_item_cont_start emergencys" v-if="infoDATA.emergencyType.value == 3">
41 28
             <text class="page_item_cont_start_txt">
42
-              <text
43
-                class="cubeic-star icon_transport transport-shiwujiaoxing"
44
-              ></text>
29
+              <text class="cubeic-star icon_transport transport-shiwujiaoxing"></text>
45 30
               {{ infoDATA.emergencyType.name }}
46 31
             </text>
47 32
           </view>
48 33
         </view>
49 34
         <view class="page_item_top_R">
50
-          <text
51
-            class="L_iocn"
52
-            v-if="infoDATA.taskType.associationType.value == 'specimen'"
53
-            >标本</text
54
-          >
55
-          <text
56
-            class="L_iocn"
57
-            v-if="infoDATA.taskType.associationType.value == 'specimenPlan'"
58
-            >标本</text
59
-          >
60
-          <text
61
-            class="L_iocn"
62
-            v-if="infoDATA.taskType.associationType.value == 'drugsBag'"
63
-            >药品</text
64
-          >
65
-          <text
66
-            class="L_iocn"
67
-            v-if="infoDATA.taskType.associationType.value == 'jPBag'"
68
-            >静配</text
69
-          >
70
-          <text
71
-            class="L_iocn"
72
-            v-if="infoDATA.taskType.associationType.value == 'inspect'"
73
-            >患者陪检</text
74
-          >
75
-          <text
76
-            class="L_iocn"
77
-            v-if="infoDATA.taskType.associationType.value == 'patientTransport'"
78
-            >患者转运</text
79
-          >
80
-          <text
81
-            class="L_iocn"
82
-            v-if="infoDATA.taskType.associationType.value == 'other'"
83
-            >其他配送</text
84
-          >
35
+          <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimen'">标本</text>
36
+          <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimenPlan'">标本</text>
37
+          <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">药品</text>
38
+          <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'jPBag'">静配</text>
39
+          <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'inspect'">患者陪检</text>
40
+          <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'patientTransport'">患者转运</text>
41
+          <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'other'">其他配送</text>
85 42
         </view>
86 43
 
87 44
         <view class="L"></view>
@@ -96,21 +53,13 @@
96 53
         </view>
97 54
         <view class="line"></view>
98 55
         <view class="page_item_cont_B">
99
-          <view
100
-            class="page_item_cont_title"
101
-            v-for="(dept, i) of infoDATA.middleDept"
102
-            :key="i"
103
-          >
56
+          <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.middleDept" :key="i">
104 57
             <view v-if="infoDATA.taskType.associationType.value == 'inspect'">
105 58
               <text> <text class="End">检</text> 查科室 </text>
106 59
               <text class="text_big">{{ dept.dept }}</text>
107 60
             </view>
108 61
           </view>
109
-          <view
110
-            class="page_item_cont_title"
111
-            v-for="(dept, i) of infoDATA.endDepts"
112
-            :key="i"
113
-          >
62
+          <view class="page_item_cont_title" v-for="(dept, i) of infoDATA.endDepts" :key="i">
114 63
             <view v-if="infoDATA.taskType.associationType.value != 'inspect'">
115 64
               <text> <text class="End">终</text> 点科室 </text>
116 65
               <text class="text_big">{{ dept.dept }}</text>
@@ -121,40 +70,24 @@
121 70
       <view class="page_item_foot">
122 71
         <view class="page_item_foot_text">
123 72
           <text class="text1">状态</text>
124
-          <text
125
-            class="text2"
126
-            v-if="
73
+          <text class="text2" v-if="
127 74
               !(
128 75
                 infoDATA.gdState.value == '5' &&
129 76
                 infoDATA.taskType.associationType.value == 'inspect'
130 77
               )
131
-            "
132
-            >{{ infoDATA.gdState.name }}</text
133
-          >
134
-          <text
135
-            class="text2"
136
-            v-if="
78
+            ">{{ infoDATA.gdState.name }}</text>
79
+          <text class="text2" v-if="
137 80
               infoDATA.gdState.value == '5' &&
138 81
               infoDATA.taskType.associationType.value == 'inspect'
139
-            "
140
-            >待送回</text
141
-          >
82
+            ">待送回</text>
142 83
         </view>
143 84
         <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '2'">
144 85
           <text class="text1">预计响应时间</text>
145 86
           <text class="text2">{{ infoDATA.estimeResponseTime || 0 }}</text>
146 87
         </view>
147 88
         <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '5'">
148
-          <text
149
-            class="text1"
150
-            v-if="!(infoDATA.taskType.associationType.value == 'inspect')"
151
-            >预计送达时间</text
152
-          >
153
-          <text
154
-            class="text1"
155
-            v-if="infoDATA.taskType.associationType.value == 'inspect'"
156
-            >预计送回时间</text
157
-          >
89
+          <text class="text1" v-if="!(infoDATA.taskType.associationType.value == 'inspect')">预计送达时间</text>
90
+          <text class="text1" v-if="infoDATA.taskType.associationType.value == 'inspect'">预计送回时间</text>
158 91
           <text class="text2">{{ infoDATA.estimeCompleteTime || 0 }}</text>
159 92
         </view>
160 93
         <view class="page_item_foot_text" v-if="infoDATA.gdState.value == '4'">
@@ -167,25 +100,17 @@
167 100
         </view>
168 101
       </view>
169 102
       <!-- 标本 送达-->
170
-      <view
171
-        class="page_item_info"
172
-        v-if="
103
+      <view class="page_item_info" v-if="
173 104
           infoDATA.taskType.associationType.value == 'specimenPlan' ||
174
-          infoDATA.taskType.associationType.value == 'specimen'
175
-        "
176
-      >
105
+          infoDATA.taskType.associationType.value == 'specimen' && ((infoType == 'plan-spe-dsd-3' && infoDATA.gdState.value == '7') ||
106
+            (infoType == 'spe-dsd-3' && infoDATA.gdState.value == '7'))
107
+        ">
177 108
         <text class="page_item_info_title">标本信息</text>
178
-        <text
179
-          class="text"
180
-          v-if="
181
-            (infoType == 'plan-spe-dsd-3' && infoDATA.gdState.value == '7') ||
182
-            (infoType == 'spe-dsd-3' && infoDATA.gdState.value == '7')
183
-          "
184
-        >
109
+        <text class="text">
185 110
           已扫描标本总数
186 111
           <text>{{ infoDATA.expectReceiveNum || 0 }}</text>
187 112
         </text>
188
-        <view class="page_item_list">
113
+        <!-- <view class="page_item_list">
189 114
           <view class="page_item_list_head">
190 115
             <view>标本类型</view>
191 116
             <view>床号</view>
@@ -202,7 +127,7 @@
202 127
             <view>{{ data.scode || "-" }}</view>
203 128
             <view>{{ data.patientName || "-" }}</view>
204 129
           </view>
205
-        </view>
130
+        </view> -->
206 131
       </view>
207 132
     </view>
208 133
     <view class="foot_btn2 footerPadding">
@@ -211,425 +136,445 @@
211 136
   </view>
212 137
 </template>
213 138
 <script>
214
-import { get, post, SM, webHandle } from "../../http/http.js";
215
-export default {
216
-  data() {
217
-    return {
218
-      infoDATA: [],
219
-      infoDATAS: [],
220
-      infoType: "",
221
-      DEPTCode: "",
222
-      DEPT: "",
223
-      dataId: "",
224
-    };
225
-  },
226
-  methods: {
227
-    // 知道了
228
-    Scanning_again(id) {
229
-      uni.navigateTo({
230
-        url: "../receiptpage/receiptpage",
231
-      });
139
+  import {
140
+    get,
141
+    post,
142
+    SM,
143
+    webHandle
144
+  } from "../../http/http.js";
145
+  export default {
146
+    data() {
147
+      return {
148
+        infoDATA: [],
149
+        infoDATAS: [],
150
+        infoType: "",
151
+        DEPTCode: "",
152
+        DEPT: "",
153
+        dataId: "",
154
+      };
232 155
     },
233
-    // 获取信息内容
234
-    getInfo(id) {
235
-      for (var i = 0; i < id.length; i++) {
236
-        get("/api/fetchData/workOrder/" + id[i]).then((res) => {
237
-          if (res.status == 200) {
238
-            this.infoDATA = res.data;
239
-            this.infoDATAS.push(this.infoDATA);
240
-          } else {
241
-            uni.showToast({
242
-              icon: "none",
243
-              title: "请求失败!",
244
-            });
245
-          }
246
-        });
247
-        let data = {};
248
-        post("/api/speDetails/" + id[i], data).then((res) => {
249
-          if (res.status == 200) {
250
-          } else {
251
-            uni.showToast({
252
-              icon: "none",
253
-              title: "请求失败!",
254
-            });
255
-          }
156
+    methods: {
157
+      // 知道了
158
+      Scanning_again(id) {
159
+        uni.navigateTo({
160
+          url: "../receiptpage/receiptpage",
256 161
         });
162
+      },
163
+      // 获取信息内容
164
+      getInfo(ids) {
165
+        for (var i = 0; i < ids.length; i++) {
166
+          get("/api/fetchData/workOrder/" + ids[i]).then((res) => {
167
+            if (res.status == 200) {
168
+              this.infoDATA = res.data;
169
+              this.infoDATAS.push(this.infoDATA);
170
+            } else {
171
+              uni.showToast({
172
+                icon: "none",
173
+                title: "请求失败!",
174
+              });
175
+            }
176
+          });
177
+        }
178
+      },
179
+      // 请求详细页面的数据
180
+      getInfoBySpecimen(ids) {
181
+        for (var i = 0; i < ids.length; i++) {
182
+          post("/api/getWechatItem", {
183
+            id: ids[i]
184
+          }).then((res) => {
185
+            if (res.state == 200) {
186
+              this.infoDATA = res.data;
187
+              this.infoDATAS.push(this.infoDATA);
188
+            } else {
189
+              uni.showToast({
190
+                icon: "none",
191
+                title: "请求失败!",
192
+              });
193
+            }
194
+          });
195
+        }
196
+      },
197
+    },
198
+    onLoad(options) {
199
+      console.log(options, 'options');
200
+      let id = JSON.parse(options.id);
201
+      this.dataId = id;
202
+      this.infoType = options.type1;
203
+      this.DEPTCode = options.deptCode;
204
+      this.DEPT = options.dept;
205
+      if (options.type === 'specimen' || options.type === 'specimenPlan') {
206
+        this.getInfoBySpecimen(id);
207
+      } else {
208
+        this.getInfo(id);
257 209
       }
210
+      // #ifdef APP-PLUS
211
+      webHandle("no", "app");
212
+      // #endif
213
+      // #ifdef H5
214
+      webHandle("no", "wx");
215
+      // #endif
258 216
     },
259
-  },
260
-  onLoad(options) {
261
-    let id = JSON.parse(options.id);
262
-    this.dataId = id;
263
-    this.infoType = options.type1;
264
-    this.DEPTCode = options.deptCode;
265
-    this.DEPT = options.dept;
266
-    this.getInfo(this.dataId);
267
-    // #ifdef APP-PLUS
268
-    webHandle("no", "app");
269
-    // #endif
270
-    // #ifdef H5
271
-    webHandle("no", "wx");
272
-    // #endif
273
-  },
274
-};
217
+  };
275 218
 </script>
276 219
 <style lang="less">
277
-.Scanning_orderSign {
278
-  padding: 0 20rpx;
279
-  height: calc(100% - 100rpx);
280
-
281
-  .Scanning_top {
282
-    height: 340rpx;
283
-
284
-    .Scanning_top_icon {
285
-      width: 140rpx;
286
-      height: 140rpx;
287
-      margin: 0 auto;
288
-      margin-top: 36rpx;
289
-      border-radius: 50%;
290
-      line-height: 140rpx;
291
-
292
-      .cubeic-ok {
293
-        font-size: 140rpx;
294
-        color: #35b34a;
220
+  .Scanning_orderSign {
221
+    padding: 0 20rpx;
222
+    height: calc(100% - 100rpx);
223
+
224
+    .Scanning_top {
225
+      height: 340rpx;
226
+
227
+      .Scanning_top_icon {
228
+        width: 140rpx;
229
+        height: 140rpx;
230
+        margin: 0 auto;
231
+        margin-top: 36rpx;
232
+        border-radius: 50%;
233
+        line-height: 140rpx;
234
+
235
+        .cubeic-ok {
236
+          font-size: 140rpx;
237
+          color: #35b34a;
238
+        }
295 239
       }
296
-    }
297 240
 
298
-    .Scanning_top_text {
299
-      text-align: center;
300
-      .text1 {
301
-        margin-top: 40rpx;
302
-        font-size: 48rpx;
303
-      }
241
+      .Scanning_top_text {
242
+        text-align: center;
304 243
 
305
-      .text2 {
306
-        margin-top: 16rpx;
307
-        font-size: 36rpx;
244
+        .text1 {
245
+          margin-top: 40rpx;
246
+          font-size: 48rpx;
247
+        }
248
+
249
+        .text2 {
250
+          margin-top: 16rpx;
251
+          font-size: 36rpx;
252
+        }
308 253
       }
309 254
     }
310
-  }
311 255
 
312
-  .page_item {
313
-    position: relative;
314
-    margin-top: 16rpx;
315
-    margin-bottom: 124rpx;
316
-    min-height: 356rpx;
317
-    background: #fff;
318
-    border-radius: 8rpx;
319
-    overflow: hidden;
320
-    padding: 0 16rpx;
321
-    border: 2rpx solid #e5e9ed;
322
-
323
-    .L {
324
-      width: 40rpx;
325
-      height: 40rpx;
326
-      border-radius: 50%;
327
-      background: #f9fafb;
256
+    .page_item {
328 257
       position: relative;
329
-      left: -50rpx;
330
-      top: 66rpx;
331
-    }
258
+      margin-top: 16rpx;
259
+      margin-bottom: 124rpx;
260
+      min-height: 356rpx;
261
+      background: #fff;
262
+      border-radius: 8rpx;
263
+      overflow: hidden;
264
+      padding: 0 16rpx;
265
+      border: 2rpx solid #e5e9ed;
266
+
267
+      .L {
268
+        width: 40rpx;
269
+        height: 40rpx;
270
+        border-radius: 50%;
271
+        background: #f9fafb;
272
+        position: relative;
273
+        left: -50rpx;
274
+        top: 66rpx;
275
+      }
332 276
 
333
-    .R {
334
-      width: 20px;
335
-      height: 20px;
336
-      border-radius: 50%;
337
-      background: #f9fafb;
338
-      position: relative;
339
-      float: right;
340
-      right: -50rpx;
341
-      top: 26rpx;
342
-    }
277
+      .R {
278
+        width: 20px;
279
+        height: 20px;
280
+        border-radius: 50%;
281
+        background: #f9fafb;
282
+        position: relative;
283
+        float: right;
284
+        right: -50rpx;
285
+        top: 26rpx;
286
+      }
343 287
 
344
-    .starting {
345
-      width: 50rpx;
346
-      height: 50rpx;
347
-      color: #fff;
348
-      background: #49b856;
349
-      display: inline-block;
350
-      border-radius: 50%;
351
-      text-align: center;
352
-      line-height: 46rpx;
353
-      font-size: 32rpx;
354
-      margin-right: 6rpx;
355
-    }
288
+      .starting {
289
+        width: 50rpx;
290
+        height: 50rpx;
291
+        color: #fff;
292
+        background: #49b856;
293
+        display: inline-block;
294
+        border-radius: 50%;
295
+        text-align: center;
296
+        line-height: 46rpx;
297
+        font-size: 32rpx;
298
+        margin-right: 6rpx;
299
+      }
356 300
 
357
-    .End {
358
-      width: 50rpx;
359
-      height: 50rpx;
360
-      color: #fff;
361
-      background: #39b199;
362
-      display: inline-block;
363
-      border-radius: 50%;
364
-      text-align: center;
365
-      line-height: 46rpx;
366
-      font-size: 32rpx;
367
-      margin-right: 6rpx;
368
-    }
301
+      .End {
302
+        width: 50rpx;
303
+        height: 50rpx;
304
+        color: #fff;
305
+        background: #39b199;
306
+        display: inline-block;
307
+        border-radius: 50%;
308
+        text-align: center;
309
+        line-height: 46rpx;
310
+        font-size: 32rpx;
311
+        margin-right: 6rpx;
312
+      }
369 313
 
370
-    .page_item_top {
371
-      height: 86rpx;
372
-      border-bottom: 2rpx dashed #e5e9ed;
373
-      padding: 0 16rpx;
314
+      .page_item_top {
315
+        height: 86rpx;
316
+        border-bottom: 2rpx dashed #e5e9ed;
317
+        padding: 0 16rpx;
374 318
 
375
-      .page_item_top_L {
376
-        height: 100%;
377
-        float: left;
378
-        line-height: 88rpx;
379
-        display: flex;
380
-        align-items: center;
319
+        .page_item_top_L {
320
+          height: 100%;
321
+          float: left;
322
+          line-height: 88rpx;
323
+          display: flex;
324
+          align-items: center;
381 325
 
382
-        .emergencys {
383
-          background: #ff3b53 !important;
384
-          width: 124rpx !important;
385
-        }
326
+          .emergencys {
327
+            background: #ff3b53 !important;
328
+            width: 124rpx !important;
329
+          }
386 330
 
387
-        .emergency {
388
-          background: #ff3b53 !important;
389
-        }
331
+          .emergency {
332
+            background: #ff3b53 !important;
333
+          }
390 334
 
391
-        .emergency1 {
392
-          background: #49b856 !important;
393
-        }
335
+          .emergency1 {
336
+            background: #49b856 !important;
337
+          }
394 338
 
395
-        .page_item_cont_start {
396
-          text-align: center;
397
-          height: 44rpx;
398
-          width: 104rpx;
399
-          line-height: 44rpx;
400
-          border-radius: 8rpx;
401
-          background: #49b856;
402
-          color: #fff;
403
-          display: inline-block;
404
-          .page_item_cont_start_txt {
405
-            font-size: 28rpx;
406
-            display: flex;
407
-            align-items: center;
408
-            justify-content: center;
339
+          .page_item_cont_start {
340
+            text-align: center;
341
+            height: 44rpx;
342
+            width: 104rpx;
343
+            line-height: 44rpx;
344
+            border-radius: 8rpx;
345
+            background: #49b856;
346
+            color: #fff;
347
+            display: inline-block;
348
+
349
+            .page_item_cont_start_txt {
350
+              font-size: 28rpx;
351
+              display: flex;
352
+              align-items: center;
353
+              justify-content: center;
354
+            }
355
+          }
356
+
357
+          .L_time {
358
+            color: #6cc076;
359
+            font-size: 32rpx;
360
+          }
361
+
362
+          .L_text {
363
+            font-size: 32rpx;
364
+            display: inline-block;
365
+            font-weight: 600;
409 366
           }
410 367
         }
411 368
 
412
-        .L_time {
413
-          color: #6cc076;
369
+        .page_item_top_R {
370
+          height: 60rpx;
371
+          float: right;
372
+          padding-top: 20rpx;
414 373
           font-size: 32rpx;
374
+          position: absolute;
375
+          right: 50rpx;
376
+
377
+          .L_iocn {
378
+            display: inline-block;
379
+            height: 52rpx;
380
+            line-height: 48rpx;
381
+            color: rgb(7, 134, 60);
382
+            font-size: 36rpx;
383
+            font-weight: 700;
384
+          }
415 385
         }
386
+      }
387
+
388
+      .page_item_cont {
389
+        min-height: 180rpx;
390
+        padding: 0 16rpx;
391
+        text-align: left;
392
+        position: relative;
416 393
 
417
-        .L_text {
394
+        .text_big {
418 395
           font-size: 32rpx;
419
-          display: inline-block;
420
-          font-weight: 600;
396
+          position: absolute;
397
+          right: 16rpx;
398
+          font-weight: 700;
399
+          margin-top: 10rpx;
421 400
         }
422
-      }
423 401
 
424
-      .page_item_top_R {
425
-        height: 60rpx;
426
-        float: right;
427
-        padding-top: 20rpx;
428
-        font-size: 32rpx;
429
-        position: absolute;
430
-        right: 50rpx;
431
-
432
-        .L_iocn {
433
-          display: inline-block;
434
-          height: 52rpx;
435
-          line-height: 48rpx;
436
-          color: rgb(7, 134, 60);
437
-          font-size: 36rpx;
402
+        .text_big2 {
403
+          font-size: 32rpx;
404
+          position: absolute;
405
+          right: 16rpx;
438 406
           font-weight: 700;
439 407
         }
440
-      }
441
-    }
442 408
 
443
-    .page_item_cont {
444
-      min-height: 180rpx;
445
-      padding: 0 16rpx;
446
-      text-align: left;
447
-      position: relative;
409
+        .line {
410
+          height: 20rpx;
411
+          width: 2rpx;
412
+          border-left: 2rpx solid #e5e9ed;
413
+          position: absolute;
414
+          top: 82rpx;
415
+          left: 40rpx;
416
+        }
448 417
 
449
-      .text_big {
450
-        font-size: 32rpx;
451
-        position: absolute;
452
-        right: 16rpx;
453
-        font-weight: 700;
454
-        margin-top: 10rpx;
455
-      }
418
+        .lines {
419
+          height: 40%;
420
+          width: 2rpx;
421
+          border-left: 2rpx solid #e5e9ed;
422
+          position: absolute;
423
+          top: 23%;
424
+          left: 36rpx;
425
+        }
456 426
 
457
-      .text_big2 {
458
-        font-size: 32rpx;
459
-        position: absolute;
460
-        right: 16rpx;
461
-        font-weight: 700;
462
-      }
427
+        .page_item_cont_T {
428
+          padding-top: 28rpx;
429
+          font-size: 28rpx;
463 430
 
464
-      .line {
465
-        height: 20rpx;
466
-        width: 2rpx;
467
-        border-left: 2rpx solid #e5e9ed;
468
-        position: absolute;
469
-        top: 82rpx;
470
-        left: 40rpx;
471
-      }
431
+          .page_item_cont_title {
432
+            height: 100%;
433
+            font-size: 32rpx;
434
+          }
435
+        }
472 436
 
473
-      .lines {
474
-        height: 40%;
475
-        width: 2rpx;
476
-        border-left: 2rpx solid #e5e9ed;
477
-        position: absolute;
478
-        top: 23%;
479
-        left: 36rpx;
480
-      }
437
+        .page_item_cont_B {
438
+          padding-top: 28rpx;
439
+          margin-bottom: 28rpx;
481 440
 
482
-      .page_item_cont_T {
483
-        padding-top: 28rpx;
484
-        font-size: 28rpx;
441
+          .page_item_cont_title {
442
+            height: 60rpx;
443
+            font-size: 32rpx;
444
+          }
485 445
 
486
-        .page_item_cont_title {
487
-          height: 100%;
488
-          font-size: 32rpx;
446
+          .page_item_cont_title1 {
447
+            height: 60rpx;
448
+            line-height: 60rpx;
449
+            font-size: 32rpx;
450
+            padding-left: 64rpx;
451
+          }
489 452
         }
490 453
       }
491 454
 
492
-      .page_item_cont_B {
493
-        padding-top: 28rpx;
494
-        margin-bottom: 28rpx;
455
+      .page_item_foot {
456
+        border-top: 2rpx dashed #e5e9ed;
457
+        border-bottom: 2rpx dashed #e5e9ed;
458
+        padding: 28rpx 16rpx;
459
+        text-align: left;
495 460
 
496
-        .page_item_cont_title {
497
-          height: 60rpx;
461
+        .page_item_foot_text {
498 462
           font-size: 32rpx;
463
+          margin-bottom: 20rpx;
464
+
465
+          .text1 {
466
+            color: rgb(102, 102, 102);
467
+          }
468
+
469
+          .text2 {
470
+            float: right;
471
+            font-weight: 700;
472
+          }
499 473
         }
500 474
 
501
-        .page_item_cont_title1 {
502
-          height: 60rpx;
503
-          line-height: 60rpx;
504
-          font-size: 32rpx;
505
-          padding-left: 64rpx;
475
+        .text_padd {
476
+          padding: 0 10% 0 10%;
506 477
         }
507 478
       }
508
-    }
509 479
 
510
-    .page_item_foot {
511
-      border-top: 2rpx dashed #e5e9ed;
512
-      border-bottom: 2rpx dashed #e5e9ed;
513
-      padding: 28rpx 16rpx;
514
-      text-align: left;
515
-
516
-      .page_item_foot_text {
480
+      .page_item_info {
481
+        padding: 20rpx 16rpx;
482
+        text-align: left;
483
+        line-height: 60rpx;
517 484
         font-size: 32rpx;
518
-        margin-bottom: 20rpx;
519 485
 
520
-        .text1 {
521
-          color: rgb(102, 102, 102);
486
+        .page_item_info_title {
487
+          font-weight: 700;
522 488
         }
523 489
 
524
-        .text2 {
490
+        .text {
525 491
           float: right;
526 492
           font-weight: 700;
527
-        }
528
-      }
529 493
 
530
-      .text_padd {
531
-        padding: 0 10% 0 10%;
532
-      }
533
-    }
534
-
535
-    .page_item_info {
536
-      padding: 20rpx 16rpx;
537
-      text-align: left;
538
-      line-height: 60rpx;
539
-      font-size: 32rpx;
540
-
541
-      .page_item_info_title {
542
-        font-weight: 700;
543
-      }
544
-
545
-      .text {
546
-        float: right;
547
-        font-weight: 700;
548
-
549
-        text {
550
-          color: #49b856;
494
+          text {
495
+            color: #49b856;
496
+          }
551 497
         }
552
-      }
553 498
 
554
-      .page_item_list {
555
-        .page_item_list_head {
556
-          height: 90rpx;
557
-          background-image: linear-gradient(to right, #72c172, #3bb197);
558
-          display: flex;
499
+        .page_item_list {
500
+          .page_item_list_head {
501
+            height: 90rpx;
502
+            background-image: linear-gradient(to right, #72c172, #3bb197);
503
+            display: flex;
559 504
 
560
-          view {
561
-            flex: 1;
562
-            text-align: center;
563
-            line-height: 90rpx;
564
-            color: #fff;
505
+            view {
506
+              flex: 1;
507
+              text-align: center;
508
+              line-height: 90rpx;
509
+              color: #fff;
510
+            }
565 511
           }
566
-        }
567 512
 
568
-        .page_item_list_cont {
569
-          height: 90rpx;
570
-          display: flex;
513
+          .page_item_list_cont {
514
+            height: 90rpx;
515
+            display: flex;
571 516
 
572
-          view {
573
-            flex: 1;
574
-            text-align: center;
575
-            line-height: 90rpx;
576
-            color: rgb(51, 51, 51);
517
+            view {
518
+              flex: 1;
519
+              text-align: center;
520
+              line-height: 90rpx;
521
+              color: rgb(51, 51, 51);
522
+            }
577 523
           }
578 524
         }
579 525
       }
580
-    }
581 526
 
582
-    #infos {
583
-      display: none;
584
-    }
585
-
586
-    .page_item_infos {
587
-      padding-bottom: 20rpx;
588
-      border-bottom: 2rpx dashed #e5e9ed;
527
+      #infos {
528
+        display: none;
529
+      }
589 530
 
590
-      .page_item_info2 {
591
-        text-align: left;
592
-        line-height: 60rpx;
593
-        font-size: 32rpx;
594
-        padding-left: 16rpx;
531
+      .page_item_infos {
532
+        padding-bottom: 20rpx;
533
+        border-bottom: 2rpx dashed #e5e9ed;
595 534
 
596
-        .page_item_foot_text {
535
+        .page_item_info2 {
536
+          text-align: left;
537
+          line-height: 60rpx;
597 538
           font-size: 32rpx;
598
-          margin-bottom: 20rpx;
539
+          padding-left: 16rpx;
599 540
 
600
-          .text1 {
601
-            color: rgb(102, 102, 102);
602
-          }
541
+          .page_item_foot_text {
542
+            font-size: 32rpx;
543
+            margin-bottom: 20rpx;
603 544
 
604
-          .text2 {
605
-            float: right;
606
-            font-weight: 700;
545
+            .text1 {
546
+              color: rgb(102, 102, 102);
547
+            }
548
+
549
+            .text2 {
550
+              float: right;
551
+              font-weight: 700;
552
+            }
607 553
           }
608 554
         }
609 555
       }
610 556
     }
611
-  }
612 557
 
613
-  .foot_btn2 {
614
-    position: fixed;
615
-    bottom: 0;
616
-    right: 20rpx;
617
-    left: 20rpx;
618
-    line-height: 66rpx;
619
-    height: 100rpx;
620
-    border-top: 2rpx solid #e5e9ed;
621
-    background: #f9fafb;
622
-    text-align: center;
623
-
624
-    .btn2 {
625
-      height: 66rpx;
626
-      width: 100%;
627
-      background-image: linear-gradient(to right, #72c172, #3bb197);
628
-      color: #fff;
629
-      border-radius: 8rpx;
630
-      font-size: 32rpx;
631
-      margin-top: 16rpx;
558
+    .foot_btn2 {
559
+      position: fixed;
560
+      bottom: 0;
561
+      right: 20rpx;
562
+      left: 20rpx;
563
+      line-height: 66rpx;
564
+      height: 100rpx;
565
+      border-top: 2rpx solid #e5e9ed;
566
+      background: #f9fafb;
567
+      text-align: center;
568
+
569
+      .btn2 {
570
+        height: 66rpx;
571
+        width: 100%;
572
+        background-image: linear-gradient(to right, #72c172, #3bb197);
573
+        color: #fff;
574
+        border-radius: 8rpx;
575
+        font-size: 32rpx;
576
+        margin-top: 16rpx;
577
+      }
632 578
     }
633 579
   }
634
-}
635 580
 </style>

+ 2 - 4
pages/specimenDetail/specimenDetail.vue

@@ -70,7 +70,7 @@
70 70
         });
71 71
         let postData = {
72 72
           "idx": 0,
73
-          "sum": 10,
73
+          "sum": 999,
74 74
           "specimen": {
75 75
             "gdid": this.workOrderId,
76 76
             "hosId": uni.getStorageSync('userData').user.currentHospital.id
@@ -91,9 +91,7 @@
91 91
       },
92 92
       // 返回
93 93
       goto() {
94
-        uni.navigateTo({
95
-          url: `../receipt_infopage/receipt_infopage?id=${this.workOrderId}&associationTypeValue=${this.associationTypeValue}`,
96
-        });
94
+        uni.navigateBack();
97 95
       },
98 96
     },
99 97
     onLoad(options) {