seimin 2 vuotta sitten
vanhempi
commit
cba27f81b2

+ 24 - 7
components/changeSpeNum/changeSpeNum.vue

@@ -6,6 +6,7 @@
6 6
       </view>
7 7
       <view class="changeSpeNum__article">
8 8
         <view class="tips" v-html="content" v-if="content"></view>
9
+        <view class="tips-l" v-if="modifyReason">修改原因:{{modifyReason}}</view>
9 10
         <view class="uni-list-cell">
10 11
           <view class="uni-list-cell-left">
11 12
             标本数量:
@@ -14,7 +15,7 @@
14 15
             <uni-number-box v-model="speNum" :max="9999"></uni-number-box>
15 16
           </view>
16 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 19
           <view class="uni-list-cell-left">
19 20
             修改原因:
20 21
           </view>
@@ -27,8 +28,8 @@
27 28
             上传图片:
28 29
           </view>
29 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 33
           </view>
33 34
         </view>
34 35
       </view>
@@ -107,7 +108,15 @@
107 108
       num: {
108 109
         type: Number,
109 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 121
     methods: {
113 122
       // 获取上传状态
@@ -119,7 +128,7 @@
119 128
       // 移除
120 129
       deleteFile(e) {
121 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 134
       ok() {
@@ -154,8 +163,15 @@
154 163
     bottom: 0;
155 164
     background-color: rgba(0, 0, 0, 0.2);
156 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 176
     .uni-list-cell {
161 177
       width: 94%;
@@ -297,6 +313,7 @@
297 313
             height: 87rpx;
298 314
             background-color: rgb(229, 233, 237);
299 315
           }
316
+
300 317
           &:first-of-type::before {
301 318
             display: none;
302 319
           }

+ 3 - 3
main.js

@@ -2,9 +2,9 @@ import Vue from 'vue'
2 2
 import App from './App'
3 3
 // #ifdef H5
4 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 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 4 - 1
pages/scanning_code/scanning_code.vue

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

+ 4 - 1
pages/scanning_djEnd/scanning_djEnd.vue

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