Browse Source

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

28169 3 days ago
parent
commit
7a98e7b008
1 changed files with 2 additions and 9 deletions
  1. 2 9
      src/xt_pages/user/components/PatientDetail.vue

+ 2 - 9
src/xt_pages/user/components/PatientDetail.vue View File

1033
     </el-form>
1033
     </el-form>
1034
     <!-- 打印预览 style="display: none"-->
1034
     <!-- 打印预览 style="display: none"-->
1035
     <div style="display: none">
1035
     <div style="display: none">
1036
-      <div id="print-info-box" v-if="org_id !=10206&&org_id !=0">
1036
+      <div id="print-info-box" v-if="org_id !=10206">
1037
         <div class="print_main_content" style="margin-top: 70px;">
1037
         <div class="print_main_content" style="margin-top: 70px;">
1038
           <div class="order_title" v-if="org_id!=10210">{{ orgname }} 血液透析门诊病历</div>
1038
           <div class="order_title" v-if="org_id!=10210">{{ orgname }} 血液透析门诊病历</div>
1039
           <div class="order_title" v-if="org_id==10210">{{ orgname }} 血液透析住院病历</div>
1039
           <div class="order_title" v-if="org_id==10210">{{ orgname }} 血液透析住院病历</div>
1040
           <div >
1040
           <div >
1041
-            <table >
1041
+            <table style="border-collapse: collapse;">
1042
               <!-- 用 thead 规定好宽度 -->
1042
               <!-- 用 thead 规定好宽度 -->
1043
               <!-- <thead>
1043
               <!-- <thead>
1044
                 <tr v-show="false">
1044
                 <tr v-show="false">
1252
                     >  {{ patientPrint.remark }}</div>
1252
                     >  {{ patientPrint.remark }}</div>
1253
                   </td>
1253
                   </td>
1254
                 </tr>
1254
                 </tr>
1255
-
1256
-
1257
-
1258
                 <tr>
1255
                 <tr>
1259
                   <td>
1256
                   <td>
1260
                     <div class="td_proj_title">诊<br />断</div>
1257
                     <div class="td_proj_title">诊<br />断</div>
1286
               <div class="proj">
1283
               <div class="proj">
1287
                 <span class="proj_title">日期:</span>
1284
                 <span class="proj_title">日期:</span>
1288
 
1285
 
1289
-                <!-- <span v-if="org_id == 3907 || org_id == 9671|| org_id == 9675 || org_id == 10394 || org_id ==10612 || org_id == 0 || org_id ==10617">
1290
-                {{getTime(patientPrint.created_time)}}</span>
1291
-                <span v-else>{{ printDate }}</span> -->
1292
-
1293
                 <span v-if="patientPrint.print_date>0">{{getTime(patientPrint.print_date)}}</span>
1286
                 <span v-if="patientPrint.print_date>0">{{getTime(patientPrint.print_date)}}</span>
1294
                 <span v-if="patientPrint.print_date<=0">{{getTime(patientPrint.created_time)}}</span>
1287
                 <span v-if="patientPrint.print_date<=0">{{getTime(patientPrint.created_time)}}</span>
1295
 
1288