瀏覽代碼

增加工单类型备注等

seimin 2 年之前
父節點
當前提交
1c0efefbf7

+ 1 - 1
main.js

@@ -4,7 +4,7 @@ import App from './App'
4 4
 import wx from 'weixin-jsapi'
5 5
 // import VConsole from 'vconsole';
6 6
 // new VConsole();
7
-console.info('v2.4.3');
7
+console.info('v2.4.4');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 15 - 8
pages/my_list/my_list.vue

@@ -62,15 +62,15 @@
62 62
               </view>
63 63
             </view>
64 64
             <view class="page_item_top_L">
65
-              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimen'">标本</text>
66
-              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimenPlan'">标本</text>
67
-              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">药品</text>
68
-              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'jPBag'">静配</text>
69
-              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'inspect'">陪检</text>
65
+              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimen'">标本<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
66
+              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'specimenPlan'">标本<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
67
+              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">药品<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
68
+              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'jPBag'">静配<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
69
+              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'inspect'">陪检<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
70 70
               <text class="L_iocn" v-if="
71 71
                   infoDATA.taskType.associationType.value == 'patientTransport'
72
-                ">转运</text>
73
-              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'other'">其他</text>
72
+                ">转运<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
73
+              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'other'">其他<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
74 74
             </view>
75 75
             <view class="page_item_top_R">
76 76
               <view class="num" v-if="infoDATA.gdState.value != 6">
@@ -110,7 +110,11 @@
110 110
           <view class="page_item_foot">
111 111
             <view class="page_item_foot_text">
112 112
               <text class="text1">完成时间</text>&nbsp;&nbsp;
113
-              <text class="text1">{{ infoDATA.completeTime || 0 }}</text>
113
+              <text class="text1">{{ infoDATA.completeTime || '' }}</text>
114
+            </view>
115
+            <view class="page_item_foot_text">
116
+              <text class="text1">扫描接收数量</text>&nbsp;&nbsp;
117
+              <text class="text1">{{ infoDATA.actualReceiveNum || 0 }}</text>
114 118
             </view>
115 119
           </view>
116 120
         </view>
@@ -729,6 +733,9 @@
729 733
             border-top: 2rpx dashed #e5e9ed;
730 734
             padding: 28rpx 16rpx;
731 735
             text-align: left;
736
+            display: flex;
737
+            justify-content: space-between;
738
+            align-items: center;
732 739
 
733 740
             .page_item_foot_text {
734 741
               height: 48rpx;

+ 1 - 1
pages/receipt_infopage/receipt_infopage.vue

@@ -99,7 +99,7 @@
99 99
         </view>
100 100
         <view class="page_item_foot_text">
101 101
           <text class="text1">任务类型</text>
102
-          <text class="text2">{{ infoDATA.taskType.taskName }}</text>
102
+          <text class="text2">{{ infoDATA.taskType.taskName }}<template v-if="infoDATA.goodsRemark">-{{infoDATA.goodsRemark}}</template></text>
103 103
         </view>
104 104
         <view class="page_item_foot_text" v-if="infoDATA.taskType.associationType.value==='inspect'">
105 105
           <text class="text1">是否半程陪检</text>

+ 1 - 1
pages/receiptpage/receiptpage.vue

@@ -56,7 +56,7 @@
56 56
               <view class="page_item_top_R type">
57 57
                 {{
58 58
                   item.isHalfInspect === 1 ? "半程陪检" : item.taskType.taskName
59
-                }}
59
+                }}<template v-if="item.goodsRemark">-{{item.goodsRemark}}</template>
60 60
               </view>
61 61
             </view>
62 62
             <view class="page_item_cont" @click="itemInfo(item.id)">

+ 48 - 1
pages/scanning_B/scanning_B.vue

@@ -34,7 +34,8 @@
34 34
     <view class="foot_btn">
35 35
       <view class="btn3" @click="showAlert()">知道了</view>
36 36
       <block v-if="res.scanCodeSpecimenOrderSign == 1">
37
-        <view class="btn3" @click="orderSign(res.workOrder)" v-if="res.workOrder">执行工单</view>
37
+        <view class="btn3" @click="specimenAssignAndSign(res.workOrder.id)" v-if="res.workOrder&&(res.workOrder.gdState.value == 2||res.workOrder.gdState.value == 4)">接单并签到</view>
38
+        <view class="btn3" @click="orderSign(res.workOrder)" v-if="res.workOrder&&res.workOrder.gdState.value != 2&&res.workOrder.gdState.value != 4">执行工单</view>
38 39
         <view class="btn3" @click="buildAndOrderSign(res.data.id)" v-if="!res.workOrder && res.data">建单并签到</view>
39 40
       </block>
40 41
     </view>
@@ -145,6 +146,52 @@
145 146
           }
146 147
         });
147 148
       },
149
+      // 接单并签到workorderId
150
+      specimenAssignAndSign(orderId) {
151
+        this.type = 'specimenAssignAndSign';
152
+        uni.showLoading({
153
+          title: "加载中",
154
+          mask: true,
155
+        });
156
+        post("/workerOrder/specimenAssignAndSign", {
157
+          orderId,
158
+        }).then((res) => {
159
+          if (res.state == 200 || res.state == 201) {
160
+            uni.hideLoading();
161
+            if (res.status == 200) {
162
+              // 跳转到扫描科室
163
+              // type1: res.type, //type类型
164
+              // id: data.id, //工单ID
165
+              // deptCode: code, //二维码
166
+              // dept: res.dept //科室名称
167
+              uni.navigateTo({
168
+                url: `/pages/scanning_code/scanning_code?type=${
169
+                res.workOrder.taskType.associationType.value
170
+              }&type1=${res.type}&id=${res.workOrder.id}&deptCode=${
171
+                this.currentCode
172
+              }&dept=${res.dept}&accountObj=${encodeURIComponent(
173
+                JSON.stringify(undefined)
174
+              )}&deptId=${res.deptId}`,
175
+              });
176
+            } else {
177
+              uni.navigateTo({
178
+                url: `/pages/scanning_Result/scanning_Result?type=${res.workOrder.taskType.associationType.value}&type1=${res.type}&id=${res.workOrder.id}&status=600&msg=${res.msg}&isKs=1`,
179
+              });
180
+            }
181
+          } else if (res.state == "0000") {
182
+            uni.hideLoading();
183
+            this.currentCode = res.code;
184
+            this.res.workOrder = res.workOrder;
185
+            this.showSelectAccount();
186
+          } else {
187
+            uni.hideLoading();
188
+            uni.showToast({
189
+              icon: "none",
190
+              title: res.msg || "请求失败!",
191
+            });
192
+          }
193
+        });
194
+      },
148 195
       // 建单并签到
149 196
       buildAndOrderSign(speId) {
150 197
         this.type = 'buildAndOrderSign';