seimin 2 years ago
parent
commit
cba27f81b2

+ 24 - 7
components/changeSpeNum/changeSpeNum.vue

@@ -6,6 +6,7 @@
6
       </view>
6
       </view>
7
       <view class="changeSpeNum__article">
7
       <view class="changeSpeNum__article">
8
         <view class="tips" v-html="content" v-if="content"></view>
8
         <view class="tips" v-html="content" v-if="content"></view>
9
+        <view class="tips-l" v-if="modifyReason">修改原因:{{modifyReason}}</view>
9
         <view class="uni-list-cell">
10
         <view class="uni-list-cell">
10
           <view class="uni-list-cell-left">
11
           <view class="uni-list-cell-left">
11
             标本数量:
12
             标本数量:
@@ -14,7 +15,7 @@
14
             <uni-number-box v-model="speNum" :max="9999"></uni-number-box>
15
             <uni-number-box v-model="speNum" :max="9999"></uni-number-box>
15
           </view>
16
           </view>
16
         </view>
17
         </view>
17
-        <view class="uni-list-cell" v-if="speNum != num">
18
+        <view class="uni-list-cell" v-if="isFirstShowReason || (!isFirstShowReason && speNum != num)">
18
           <view class="uni-list-cell-left">
19
           <view class="uni-list-cell-left">
19
             修改原因:
20
             修改原因:
20
           </view>
21
           </view>
@@ -27,8 +28,8 @@
27
             上传图片:
28
             上传图片:
28
           </view>
29
           </view>
29
           <view class="uni-list-cell-db">
30
           <view class="uni-list-cell-db">
30
-            <uni-file-picker :auto-upload="false" :limit="3" title="最多选择3张图片" v-model="imageValue" fileMediatype="image" mode="grid"
31
-              @select="selectFile" @delete="deleteFile"></uni-file-picker>
31
+            <uni-file-picker :auto-upload="false" :limit="3" title="最多选择3张图片" v-model="imageValue" fileMediatype="image"
32
+              mode="grid" @select="selectFile" @delete="deleteFile"></uni-file-picker>
32
           </view>
33
           </view>
33
         </view>
34
         </view>
34
       </view>
35
       </view>
@@ -107,7 +108,15 @@
107
       num: {
108
       num: {
108
         type: Number,
109
         type: Number,
109
         default: 0
110
         default: 0
110
-      }
111
+      },
112
+      modifyReason: {
113
+        type: String,
114
+        default: ''
115
+      },
116
+      isFirstShowReason: {
117
+        type: Boolean,
118
+        default: true
119
+      },
111
     },
120
     },
112
     methods: {
121
     methods: {
113
       // 获取上传状态
122
       // 获取上传状态
@@ -119,7 +128,7 @@
119
       // 移除
128
       // 移除
120
       deleteFile(e) {
129
       deleteFile(e) {
121
         console.log('移除:', e);
130
         console.log('移除:', e);
122
-        this.imageValue = this.imageValue.filter(v=>v.uuid != e.tempFile.uuid);
131
+        this.imageValue = this.imageValue.filter(v => v.uuid != e.tempFile.uuid);
123
       },
132
       },
124
       // 确定
133
       // 确定
125
       ok() {
134
       ok() {
@@ -154,8 +163,15 @@
154
     bottom: 0;
163
     bottom: 0;
155
     background-color: rgba(0, 0, 0, 0.2);
164
     background-color: rgba(0, 0, 0, 0.2);
156
     z-index: 999;
165
     z-index: 999;
157
-    
158
-    .tips{}
166
+
167
+    .tips {
168
+      text-align: center;
169
+    }
170
+
171
+    .tips-l {
172
+      text-align: left;
173
+      color: #000;
174
+    }
159
 
175
 
160
     .uni-list-cell {
176
     .uni-list-cell {
161
       width: 94%;
177
       width: 94%;
@@ -297,6 +313,7 @@
297
             height: 87rpx;
313
             height: 87rpx;
298
             background-color: rgb(229, 233, 237);
314
             background-color: rgb(229, 233, 237);
299
           }
315
           }
316
+
300
           &:first-of-type::before {
317
           &:first-of-type::before {
301
             display: none;
318
             display: none;
302
           }
319
           }

+ 3 - 3
main.js

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

+ 4 - 1
pages/scanning_code/scanning_code.vue

@@ -363,7 +363,7 @@
363
     </handViewDrugsBag>
363
     </handViewDrugsBag>
364
     <!-- 修改标本数量弹窗 -->
364
     <!-- 修改标本数量弹窗 -->
365
     <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}" :title="changeSpeModels.title" :content="changeSpeModels.content"
365
     <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}" :title="changeSpeModels.title" :content="changeSpeModels.content"
366
-      :disjunctor="changeSpeModels.disjunctor" @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange">
366
+      :disjunctor="changeSpeModels.disjunctor" @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange" :modifyReason="modifyReason" :isFirstShowReason="false">
367
     </changeSpeNum>
367
     </changeSpeNum>
368
   </view>
368
   </view>
369
 </template>
369
 </template>
@@ -382,6 +382,7 @@
382
     data() {
382
     data() {
383
       return {
383
       return {
384
         speNumChange: 0,
384
         speNumChange: 0,
385
+        modifyReason:'',
385
         changeSpeObj: {},
386
         changeSpeObj: {},
386
         // 修改标本数量弹窗model
387
         // 修改标本数量弹窗model
387
         changeSpeModels: {
388
         changeSpeModels: {
@@ -688,6 +689,7 @@
688
           uni.hideLoading();
689
           uni.hideLoading();
689
           if (res.status == 200) {
690
           if (res.status == 200) {
690
             this.speNumChange = res.deptSpecimensNum;
691
             this.speNumChange = res.deptSpecimensNum;
692
+            this.modifyReason = res.modifyReason;
691
             this.changeSpeModels = {
693
             this.changeSpeModels = {
692
               title: "修改标本数量",
694
               title: "修改标本数量",
693
               content: `您已到达<span class="red">${this.DEPT}</span>本科室标本数量为<span class="red">${this.speNumChange}</span>,请确认标本数量`,
695
               content: `您已到达<span class="red">${this.DEPT}</span>本科室标本数量为<span class="red">${this.speNumChange}</span>,请确认标本数量`,
@@ -695,6 +697,7 @@
695
             };
697
             };
696
           } else {
698
           } else {
697
             this.speNumChange = "";
699
             this.speNumChange = "";
700
+            this.modifyReason = '';
698
             uni.showToast({
701
             uni.showToast({
699
               icon: "none",
702
               icon: "none",
700
               title: "请求失败!",
703
               title: "请求失败!",

+ 4 - 1
pages/scanning_djEnd/scanning_djEnd.vue

@@ -206,7 +206,7 @@
206
     <!-- 修改标本数量弹窗 -->
206
     <!-- 修改标本数量弹窗 -->
207
     <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}"
207
     <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}"
208
       :title="changeSpeModels.title" :content="changeSpeModels.content" :disjunctor="changeSpeModels.disjunctor"
208
       :title="changeSpeModels.title" :content="changeSpeModels.content" :disjunctor="changeSpeModels.disjunctor"
209
-      @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange">
209
+      @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange" :modifyReason="modifyReason" :isFirstShowReason="false">
210
     </changeSpeNum>
210
     </changeSpeNum>
211
   </view>
211
   </view>
212
 </template>
212
 </template>
@@ -222,6 +222,7 @@
222
     data() {
222
     data() {
223
       return {
223
       return {
224
         speNumChange: 0,
224
         speNumChange: 0,
225
+        modifyReason:'',
225
         changeSpeObj: {},
226
         changeSpeObj: {},
226
         // 修改标本数量弹窗model
227
         // 修改标本数量弹窗model
227
         changeSpeModels: {
228
         changeSpeModels: {
@@ -523,6 +524,7 @@
523
           uni.hideLoading();
524
           uni.hideLoading();
524
           if (res.status == 200) {
525
           if (res.status == 200) {
525
             this.speNumChange = res.deptSpecimensNum;
526
             this.speNumChange = res.deptSpecimensNum;
527
+            this.modifyReason = res.modifyReason;
526
             this.changeSpeModels = {
528
             this.changeSpeModels = {
527
               title: "修改标本数量",
529
               title: "修改标本数量",
528
               content: `您已到达<span class="red">${this.queryObj.dept}</span>本科室标本数量为<span class="red">${this.speNumChange}</span>,请确认标本数量`,
530
               content: `您已到达<span class="red">${this.queryObj.dept}</span>本科室标本数量为<span class="red">${this.speNumChange}</span>,请确认标本数量`,
@@ -530,6 +532,7 @@
530
             };
532
             };
531
           } else {
533
           } else {
532
             this.speNumChange = "";
534
             this.speNumChange = "";
535
+            this.modifyReason = "";
533
             uni.showToast({
536
             uni.showToast({
534
               icon: "none",
537
               icon: "none",
535
               title: "请求失败!",
538
               title: "请求失败!",