See999 4 gadus atpakaļ
vecāks
revīzija
42f3f16502

+ 14 - 5
src/xt_pages/dialysis/template/DialysisPrintOrderFourteen.vue Parādīt failu

505
                     </td>
505
                     </td>
506
                     <td width="10">L</td>
506
                     <td width="10">L</td>
507
                     <td width="20"></td>
507
                     <td width="20"></td>
508
-                    <td width="100">实际超滤量:</td>
508
+                    <td width="100">机面超滤量:</td>
509
                     <td width="50">
509
                     <td width="50">
510
                       <div class="under-line">
510
                       <div class="under-line">
511
                         &nbsp;{{ afterdialysis.actual_ultrafiltration ? afterdialysis.actual_ultrafiltration : " " }}
511
                         &nbsp;{{ afterdialysis.actual_ultrafiltration ? afterdialysis.actual_ultrafiltration : " " }}
753
               透析中护理记录
753
               透析中护理记录
754
             </td>
754
             </td>
755
 
755
 
756
-            <td width="100">时间</td>
756
+            <td width="60">时间</td>
757
             <td width="40" style="height:20px;line-height:20px">体温<br />℃</td>
757
             <td width="40" style="height:20px;line-height:20px">体温<br />℃</td>
758
             <td width="80" style="height:20px;line-height:20px">血压<br />mmHg</td>
758
             <td width="80" style="height:20px;line-height:20px">血压<br />mmHg</td>
759
             <td width="40" style="height:20px;line-height:20px">脉搏<br />次/分</td>
759
             <td width="40" style="height:20px;line-height:20px">脉搏<br />次/分</td>
766
             <td width="40" style="height:20px;line-height:20px">液温<br />℃</td>
766
             <td width="40" style="height:20px;line-height:20px">液温<br />℃</td>
767
             <td width="60" style="height:20px;line-height:20px">钠浓度<br />mmol/L</td>
767
             <td width="60" style="height:20px;line-height:20px">钠浓度<br />mmol/L</td>
768
             <td width="">特殊记录</td>
768
             <td width="">特殊记录</td>
769
+            <td width="60" style="height:20px;line-height:20px">签名</td>
769
           </tr>
770
           </tr>
770
 
771
 
771
           <tr v-for="monitor in monitors" :key="monitor.id">
772
           <tr v-for="monitor in monitors" :key="monitor.id">
772
-            <td>&nbsp;{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
773
+            <td style="height:40px;line-height:40px;">&nbsp;{{ getTime(monitor.operate_time, "{h}:{i}") }}</td>
773
             <td>&nbsp;{{ monitor.temperature ? monitor.temperature : '' }}</td>
774
             <td>&nbsp;{{ monitor.temperature ? monitor.temperature : '' }}</td>
774
             <td>
775
             <td>
775
               <span v-if="monitor.systolic_blood_pressure || monitor.diastolic_blood_pressure">
776
               <span v-if="monitor.systolic_blood_pressure || monitor.diastolic_blood_pressure">
789
             <td style="text-align:left;padding-left:10px;">
790
             <td style="text-align:left;padding-left:10px;">
790
               &nbsp;{{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{ monitor.result }}
791
               &nbsp;{{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{ monitor.result }}
791
             </td>
792
             </td>
793
+            <td>
794
+              <span v-if="setAdminUserES(monitor.monitoring_nurse) == ''">
795
+                {{ getAdminUser(monitor.monitoring_nurse) }}
796
+              </span>
797
+              <span v-else style="display:flex;align-items:center;justify-content:space-around;height:36px;">
798
+                <img style="height:30px;" :src="setAdminUserES(monitor.monitoring_nurse)" alt srcset />
799
+              </span>
800
+            </td>
792
           </tr>
801
           </tr>
793
         </tbody>
802
         </tbody>
794
       </table>
803
       </table>
1816
           if (this.org_template_info.org_id == 9535) {
1825
           if (this.org_template_info.org_id == 9535) {
1817
             this.isShowZero = true
1826
             this.isShowZero = true
1818
           }
1827
           }
1819
-          if (this.monitors.length < 13) {
1820
-            var nl = 14 - this.monitors.length
1828
+          if (this.monitors.length < 9) {
1829
+            var nl = 10 - this.monitors.length
1821
             for (let index = 0; index < nl; index++) {
1830
             for (let index = 0; index < nl; index++) {
1822
               this.monitors.push([])
1831
               this.monitors.push([])
1823
             }
1832
             }