Procházet zdrojové kódy

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

XMLWAN před 2 roky
rodič
revize
f0d59a0ad4

+ 24 - 3
src/xt_pages/dialysis/dialysisPrintOrder.vue Zobrazit soubor

@@ -758,6 +758,20 @@
758 758
           >打印</el-button
759 759
         >
760 760
       </template>
761
+      <template
762
+        v-if="
763
+          org_template_info.template_id == 61
764
+        "
765
+      >
766
+        <el-button
767
+          :loading="loading"
768
+          size="small"
769
+          icon="el-icon-printer"
770
+          @click="printThisPage"
771
+          type="primary"
772
+          >打印</el-button
773
+        >
774
+      </template>
761 775
       
762 776
     </div>
763 777
     <div class="app-container" style="min-height: 0">
@@ -1140,11 +1154,11 @@
1140 1154
             v-if="org_template_info.template_id == 50"
1141 1155
           >
1142 1156
           </DialysisPrintOrderFifty>
1143
-          <DialysisPrintOrderFiftyOne
1157
+          <DialysisPrintOrderSixtyOne
1144 1158
             v-bind:childResponse="childResponse"
1145 1159
             v-if="org_template_info.template_id == 51"
1146 1160
           >
1147
-          </DialysisPrintOrderFiftyOne>
1161
+          </DialysisPrintOrderSixtyOne>
1148 1162
           <DialysisPrintOrderFiftyTwo
1149 1163
             v-bind:childResponse="childResponse"
1150 1164
             v-if="org_template_info.template_id == 52"
@@ -1186,6 +1200,10 @@
1186 1200
           v-bind:childResponse="childResponse"
1187 1201
             v-if="org_template_info.template_id == 60">
1188 1202
           </DialysisPrintOrderSixty>
1203
+          <DialysisPrintOrderSixtyOne
1204
+          v-bind:childResponse="childResponse"
1205
+            v-if="org_template_info.template_id == 61">
1206
+          </DialysisPrintOrderSixtyOne>
1189 1207
         </div>
1190 1208
       </el-container>
1191 1209
     </div>
@@ -1264,9 +1282,11 @@ import DialysisPrintOrderFiftySeven from "./template/DialysisPrintOrderFiftySeve
1264 1282
 import DialysisPrintOrderFiftyEight from "./template/DialysisPrintOrderFiftyEight";
1265 1283
 import DialysisPrintOrderFiftyNine from "./template/DialysisPrintOrderFiftyNine";
1266 1284
 import DialysisPrintOrderSixty from "./template/DialysisPrintOrderSixty";
1285
+import DialysisPrintOrderSixtyOne from "./template/DialysisPrintOrderSixtyOne"
1267 1286
 export default {
1268 1287
   name: "dialysisPrintOrder",
1269 1288
   components: {
1289
+    DialysisPrintOrderSixtyOne,
1270 1290
     DialysisPrintOrderSixty,
1271 1291
     DialysisPrintOrderFiftyNine,
1272 1292
     DialysisPrintOrderFiftyEight,
@@ -1565,7 +1585,8 @@ export default {
1565 1585
         this.org_template_info.template_id == 50 ||
1566 1586
         this.org_template_info.template_id == 51 ||
1567 1587
         this.org_template_info.template_id == 58 ||
1568
-        this.org_template_info.template_id == 60
1588
+        this.org_template_info.template_id == 60 ||
1589
+        this.org_template_info.template_id == 61
1569 1590
       ) {
1570 1591
         printJS({
1571 1592
           printable: "dialysis-print-box-1",

+ 3 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue Zobrazit soubor

@@ -921,7 +921,7 @@
921 921
                       kg
922 922
                     </div>
923 923
                     <div class="inline_block" style="flex: 1">
924
-                      计划超滤量:
924
+                      计划超滤量: 
925 925
                       <div
926 926
                         class="under_line"
927 927
                         style="width: 100px; text-align: center"
@@ -932,7 +932,8 @@
932 932
                             : "/"
933 933
                         }}
934 934
                       </div>
935
-                      L
935
+                      <span v-if="org_id == 10395">ml</span> 
936
+                      <span v-else>L</span>
936 937
                     </div>
937 938
                     <div class="inline_block" style="flex: 1">
938 939
                       干体重:

Diff nebyl zobrazen, protože je příliš veliký
+ 3842 - 0
src/xt_pages/dialysis/template/DialysisPrintOrderSixtyOne.vue