LIJU 3 tuần trước cách đây
mục cha
commit
c6a9d4f9c0

+ 64 - 0
src/components/medical-advice/temperature/graphics.vue

@@ -615,6 +615,70 @@
             }}
           </td>
         </tr>
+
+        <!-- 皮试结果第一行 -->
+        <tr>
+          <td
+            :colspan="index === 0 ? 8 : 6"
+            v-for="(item, index) in [0, 1, 2, 3, 4, 5, 6, 7]"
+            :class="[index && 'redLineTd']"
+            :key="index + '|031'"
+          >
+            {{
+              index === 0
+                ? "皮试结果1"
+                : typesViewData["031"] && typesViewData["031"][index - 1]
+            }}
+          </td>
+        </tr>
+
+        <!-- 皮试结果第二行 -->
+        <tr>
+          <td
+            :colspan="index === 0 ? 8 : 6"
+            v-for="(item, index) in [0, 1, 2, 3, 4, 5, 6, 7]"
+            :class="[index && 'redLineTd']"
+            :key="index + '|032'"
+          >
+            {{
+              index === 0
+                ? "皮试结果2"
+                : typesViewData["032"] && typesViewData["032"][index - 1]
+            }}
+          </td>
+        </tr>
+
+        <!-- 皮试结果第三行 -->
+        <tr>
+          <td
+            :colspan="index === 0 ? 8 : 6"
+            v-for="(item, index) in [0, 1, 2, 3, 4, 5, 6, 7]"
+            :class="[index && 'redLineTd']"
+            :key="index + '|033'"
+          >
+            {{
+              index === 0
+                ? "皮试结果3"
+                : typesViewData["033"] && typesViewData["033"][index - 1]
+            }}
+          </td>
+        </tr>
+
+        <!-- 皮试结果第四行 -->
+        <tr>
+          <td
+            :colspan="index === 0 ? 8 : 6"
+            v-for="(item, index) in [0, 1, 2, 3, 4, 5, 6, 7]"
+            :class="[index && 'redLineTd']"
+            :key="index + '|034'"
+          >
+            {{
+              index === 0
+                ? "皮试结果4"
+                : typesViewData["034"] && typesViewData["034"][index - 1]
+            }}
+          </td>
+        </tr>
       </tbody>
     </table>
     <div style="text-align: center">

+ 5 - 1
src/components/medical-advice/temperature/utils.js

@@ -27,7 +27,11 @@ export function getKeyMap () {
     '027': '大便性质',
     '028': '小便出量',
     '029': '呕吐次数',
-    '030': '身高'
+    '030': '身高',
+    '031': '皮试结果1',
+    '032': '皮试结果2',
+    '033': '皮试结果3',
+    '034': '皮试结果4'
   }
   if (neworold === 2) {
     selectMap['006'] = '入水量'