Просмотр исходного кода

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

XMLWAN 3 лет назад
Родитель
Сommit
cfee99ad53

+ 3 - 4
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue Просмотреть файл

@@ -1,6 +1,6 @@
1 1
 <template>
2 2
   <div>
3
-    <!-- <el-button type="primary" @click="checkData">一键核对</el-button> -->
3
+    <el-button type="primary" @click="checkData">一键核对</el-button>
4 4
     <div id="dialysis-print-box-1">
5 5
       <div
6 6
         id="dialysis-print-box-1-1"
@@ -584,9 +584,8 @@
584 584
                         </td>
585 585
                         <td v-if="org_id != 9836">{{ monitor.dialysate_temperature ? monitor.dialysate_temperature : "" }}</td>
586 586
                         <td v-if="org_id == 9836">{{ monitor.temperature ? monitor.temperature : "" }}</td>
587
-                        <td><template  v-if="org_id == 10223">{{ monitor.conductivity ? monitor.conductivity : "" }}</template>
588
-                        <template v-else>{{ monitor.sodium_concentration ? monitor.sodium_concentration : "" }}<template>
589
-                        </td>
587
+                        <td v-if="org_id != 9538">{{ monitor.conductivity ? monitor.conductivity : "" }}</td>
588
+                        <td v-if="org_id == 9538">{{ monitor.sodium_concentration ? monitor.sodium_concentration : "" }}</td>
590 589
                         <td v-if="(dialysisOrder && monitor.operate_time > dialysisOrder.end_time) || (dialysisOrder && monitor.operate_time < dialysisOrder.start_time)">
591 590
                           {{ monitor.ultrafiltration_volume ? monitor.ultrafiltration_volume : "" }}
592 591
                         </td>

+ 9 - 0
src/xt_pages/user/components/PatientDetail.vue Просмотреть файл

@@ -969,9 +969,16 @@
969 969
           class="order_title"
970 970
           align="center"
971 971
           style="margin-bottom:20px;font-size:35px"
972
+          v-if="org_id != 10223"
972 973
         >
973 974
           签到卡
974 975
         </div>
976
+        <div
977
+          class="order_title"
978
+          align="center"
979
+          style="margin-bottom:20px;font-size:25px"
980
+          v-if="org_id == 10223"
981
+        >三优血液透析中心</div>
975 982
         <div align="center" style="margin-bottom:4px;font-size:25px">
976 983
           姓名:<span>&nbsp;&nbsp;{{ patientPrint.name }}</span
977 984
           ><br />
@@ -1072,6 +1079,7 @@ const defaultForm = {
1072 1079
   expense_kind: "",
1073 1080
   contact_name: "",
1074 1081
   sch_remark:"",
1082
+  org_id:0
1075 1083
 };
1076 1084
 
1077 1085
 export default {
@@ -1172,6 +1180,7 @@ export default {
1172 1180
     }
1173 1181
   },
1174 1182
   created() {
1183
+    this.org_id = this.$store.getters.xt_user.org.id
1175 1184
     this.styleOptions = this.$store.getters.patient_types;
1176 1185
     // this.partitionOptions = this.$store.getters.partitions;
1177 1186
     this.maritalOptions = getDataConfig("patient", "marital_options");