Browse Source

同济BUG标识

seimin 2 years ago
parent
commit
421159997d
2 changed files with 14 additions and 3 deletions
  1. 3 1
      components/bigScreen/bigScreen.vue
  2. 11 2
      pages/check_blood/check_blood.vue

+ 3 - 1
components/bigScreen/bigScreen.vue

@@ -130,7 +130,9 @@
130 130
                 )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&startDeptId=${startDeptId}&isDigitalHandover=${isDigitalHandover}&signDeptId=${signDeptId}&gdId=${gdId}&gdState=${gdState}&endDepts=${endDepts}`,
131 131
               });
132 132
             } else if (this.tabType == 'specimen') {
133
-              if (res.deptType && res.deptType.value === 'middleRoom') {
133
+              // 同济是false
134
+              // if (res.deptType && res.deptType.value === 'middleRoom') {
135
+              if (false) {
134 136
                 // 如果是中转科室
135 137
                 uni.navigateTo({
136 138
                   url: `../checkAfterBigScreen/checkAfterBigScreen?type=${

+ 11 - 2
pages/check_blood/check_blood.vue

@@ -31,7 +31,7 @@
31 31
       </view>
32 32
       <view class="bloodType">
33 33
         <view class="bloodTypeItem" v-for="(item, key, index) in complete" :key="index">
34
-          {{key}}:<text class="link" @click="goToList(item)">{{item.length}}</text>
34
+          <text class="link_key">{{key}}:</text><text class="link" @click="goToList(item)">{{item.length}}</text>
35 35
         </view>
36 36
       </view>
37 37
     </block>
@@ -322,8 +322,17 @@
322 322
     margin-top: 40rpx;
323 323
     .bloodTypeItem{
324 324
       padding: 20rpx 0;
325
-      text-indent: 2em;
325
+      display: flex;
326
+      justify-content: space-between;
327
+      .link_key{
328
+        flex: 5;
329
+        text-align: justify;
330
+      }
326 331
       .link{
332
+        flex: 1;
333
+        display: flex;
334
+        justify-content: center;
335
+        align-items: center;
327 336
         text-decoration: underline;
328 337
       }
329 338
     }