浏览代码

Merge branch '20201014_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201014_pc_vue_new_branch

XMLWAN 4 年前
父节点
当前提交
9326b68c05
共有 1 个文件被更改,包括 14 次插入5 次删除
  1. 14 5
      src/xt_pages/dialysis/template/DialysisPrintOrderFourteen.vue

+ 14 - 5
src/xt_pages/dialysis/template/DialysisPrintOrderFourteen.vue 查看文件

@@ -505,7 +505,7 @@
505 505
                     </td>
506 506
                     <td width="10">L</td>
507 507
                     <td width="20"></td>
508
-                    <td width="100">实际超滤量:</td>
508
+                    <td width="100">机面超滤量:</td>
509 509
                     <td width="50">
510 510
                       <div class="under-line">
511 511
                         &nbsp;{{ afterdialysis.actual_ultrafiltration ? afterdialysis.actual_ultrafiltration : " " }}
@@ -753,7 +753,7 @@
753 753
               透析中护理记录
754 754
             </td>
755 755
 
756
-            <td width="100">时间</td>
756
+            <td width="60">时间</td>
757 757
             <td width="40" style="height:20px;line-height:20px">体温<br />℃</td>
758 758
             <td width="80" style="height:20px;line-height:20px">血压<br />mmHg</td>
759 759
             <td width="40" style="height:20px;line-height:20px">脉搏<br />次/分</td>
@@ -766,10 +766,11 @@
766 766
             <td width="40" style="height:20px;line-height:20px">液温<br />℃</td>
767 767
             <td width="60" style="height:20px;line-height:20px">钠浓度<br />mmol/L</td>
768 768
             <td width="">特殊记录</td>
769
+            <td width="60" style="height:20px;line-height:20px">签名</td>
769 770
           </tr>
770 771
 
771 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 774
             <td>&nbsp;{{ monitor.temperature ? monitor.temperature : '' }}</td>
774 775
             <td>
775 776
               <span v-if="monitor.systolic_blood_pressure || monitor.diastolic_blood_pressure">
@@ -789,6 +790,14 @@
789 790
             <td style="text-align:left;padding-left:10px;">
790 791
               &nbsp;{{ monitor.symptom }} &nbsp;{{ monitor.dispose }} &nbsp;{{ monitor.result }}
791 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 801
           </tr>
793 802
         </tbody>
794 803
       </table>
@@ -1816,8 +1825,8 @@ export default {
1816 1825
           if (this.org_template_info.org_id == 9535) {
1817 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 1830
             for (let index = 0; index < nl; index++) {
1822 1831
               this.monitors.push([])
1823 1832
             }