Преглед изворни кода

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

csx пре 5 година
родитељ
комит
305df76270

+ 3 - 0
src/store/modules/globalConfig.js Прегледај датотеку

@@ -1951,6 +1951,9 @@ const global_config = {
1951 1951
       {
1952 1952
         id: 3,
1953 1953
         name: '自己压迫'
1954
+      }, {
1955
+        id: 4,
1956
+        name: '内瘘止血带'
1954 1957
       }
1955 1958
     ],
1956 1959
     tremor_noise: [{

Разлика између датотеке није приказан због своје велике величине
+ 2410 - 2406
src/xt_pages/dialysis/batch_print/batch_print_order_nine.vue


+ 3 - 2
src/xt_pages/dialysis/details/dialog/AssessmentAfterDislysis.vue Прегледај датотеку

@@ -27,10 +27,11 @@
27 27
           </el-col>
28 28
 
29 29
           <el-col :span="8" v-if="isShow('实际超滤量')">
30
-            <el-form-item label="实际超滤量(L): " v-if="this.template_id != 6">
30
+
31
+            <el-form-item label="实际超滤量(ml): " v-if="this.template_id == 6 || this.template_id == 10">
31 32
               <el-input v-model="form.actual_ultrafiltration"></el-input>
32 33
             </el-form-item>
33
-            <el-form-item label="实际超滤量(ml): " v-if="this.template_id == 6">
34
+            <el-form-item label="实际超滤量(L): " v-else>
34 35
               <el-input v-model="form.actual_ultrafiltration"></el-input>
35 36
             </el-form-item>
36 37
           </el-col>

+ 3 - 0
src/xt_pages/dialysis/details/dialog/adviceDialog/EditGroupAdvice.vue Прегледај датотеку

@@ -706,6 +706,7 @@ export default {
706 706
                 parent_id: _this.groupSelectRow.parent_id,
707 707
                 groupno: _this.groupForm.groupno
708 708
               }
709
+              console.log(this.groupSelectRow)
709 710
               let mode = "2"
710 711
               if (this.groupSelectRow.advice_doctor != this.$store.getters.xt_user.user.id){
711 712
                 mode = "3"
@@ -1736,6 +1737,7 @@ export default {
1736 1737
           }
1737 1738
           this.editRowKey++
1738 1739
           var item = {
1740
+            advice_doctor:groups[index].advice_doctor,
1739 1741
             advice_name: groups[index].advice_name,
1740 1742
             advice_desc: groups[index].advice_desc,
1741 1743
             single_dose: '' + groups[index].single_dose,
@@ -1757,6 +1759,7 @@ export default {
1757 1759
             for (const key in childMap[item.id]) {
1758 1760
               this.editRowKey++
1759 1761
               var child = {
1762
+                advice_doctor:childMap[item.id][key].advice_doctor,
1760 1763
                 advice_name: childMap[item.id][key].advice_name,
1761 1764
                 advice_desc: childMap[item.id][key].advice_desc,
1762 1765
                 single_dose: '' + childMap[item.id][key].single_dose,

+ 10 - 5
src/xt_pages/dialysis/details/dialog/monitor_dialog.vue Прегледај датотеку

@@ -155,7 +155,7 @@
155 155
             align="center"
156 156
             label="超滤量(L)"
157 157
             width="110"
158
-            v-if="isShow('超滤量') && (template_id != 6 || template_id != 10)"
158
+            v-if="isShow('超滤量') && template_id != 6 &&  template_id != 10"
159 159
           >
160 160
             <template slot-scope="scope">
161 161
               {{
@@ -211,7 +211,7 @@
211 211
             align="center"
212 212
             label="置换率(L/h)"
213 213
             width="120"
214
-            v-if="isShow('置换率') && (template_id != 6 || template_id != 10)"
214
+            v-if="isShow('置换率') && template_id != 6 && template_id != 10"
215 215
           >
216 216
             <template slot-scope="scope">
217 217
               {{ scope.row.replacement_rate ? scope.row.replacement_rate : "" }}
@@ -238,7 +238,7 @@
238 238
             align="center"
239 239
             label="SpO₂(%)"
240 240
             width="100"
241
-            v-if="isShow('SpO₂') && (template_id != 6 || template_id != 10)"
241
+            v-if="isShow('SpO₂') && template_id != 6 && template_id != 10"
242 242
           >
243 243
             <template slot-scope="scope">
244 244
               {{
@@ -254,7 +254,7 @@
254 254
             align="center"
255 255
             label="置换量(L)"
256 256
             width="100"
257
-            v-if="isShow('置换量') && (template_id != 6 || template_id != 10)"
257
+            v-if="isShow('置换量') && template_id != 6 && template_id != 10"
258 258
           >
259 259
             <template slot-scope="scope">
260 260
               {{
@@ -417,7 +417,12 @@
417 417
               <el-input v-model="form.ultrafiltration_rate"></el-input>
418 418
             </el-form-item>
419 419
           </el-col>
420
-          <el-col :span="8" v-if="isShow('超滤量')">
420
+          <el-col :span="8" v-if="isShow('超滤量') &&(template_id != 6 || template_id != 10)">
421
+            <el-form-item label="超滤量(ml):">
422
+              <el-input v-model="form.ultrafiltration_volume"></el-input>
423
+            </el-form-item>
424
+          </el-col>
425
+          <el-col :span="8" v-if="isShow('超滤量') && template_id != 6 && template_id != 10">
421 426
             <el-form-item label="超滤量(L):">
422 427
               <el-input v-model="form.ultrafiltration_volume"></el-input>
423 428
             </el-form-item>

+ 4 - 4
src/xt_pages/dialysis/details/dialysisMonitoring.vue Прегледај датотеку

@@ -13,15 +13,15 @@
13 13
         <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
14 14
         <th v-if="isShow('跨膜压')" width="76px">跨膜压(mmhg)</th>
15 15
         <th v-if="isShow('超滤量') && (template_id == 6 || template_id == 10)" width="76px">超滤量(ml)</th>
16
-        <th v-if="isShow('超滤量') && (template_id != 6 || template_id != 10)" width="76px">超滤量(L)</th>
16
+        <th v-if="isShow('超滤量') && template_id != 6 && template_id != 10" width="76px">超滤量(L)</th>
17 17
         <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
18 18
         <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
19 19
         <th v-if="isShow('置换率')&& (template_id == 6 || template_id == 10)" width="92px">置换率(ml/min)</th>
20
-        <th v-if="isShow('置换率')&& (template_id != 6 || template_id != 10)" width="92px">置换率(L/h)</th>
20
+        <th v-if="isShow('置换率')&& template_id != 6 && template_id != 10" width="92px">置换率(L/h)</th>
21 21
 
22 22
         <th v-if="isShow('置换量')&& (template_id == 6 || template_id == 10)" width="92px">置换量(ml)</th>
23
-        <th v-if="isShow('置换量')&& (template_id != 6 || template_id != 10)" width="92px">置换量(L)</th>
24
-         <th v-if="isShow('SpO₂')&& (template_id != 6 || template_id != 10)" width="92px">SpO₂(%)</th>
23
+        <th v-if="isShow('置换量')&& template_id != 6 && template_id != 10" width="92px">置换量(L)</th>
24
+         <th v-if="isShow('SpO₂')&& template_id != 6 && template_id != 10" width="92px">SpO₂(%)</th>
25 25
         <th v-if="isShow('电导度')" width="92px">电导度(mS/m)</th>
26 26
         <th v-if="isShow('置换液流量')"  width="92px">置换液流量(ml/h)</th>
27 27
         <th v-if="isShow('病情变化')" width="92px">病情变化</th>

+ 10 - 4
src/xt_pages/dialysis/template/DialysisPrintOrderTen.vue Прегледај датотеку

@@ -53,7 +53,13 @@
53 53
         <div class="inline_block">
54 54
           床号:
55 55
           <div class="under_line" style="width: 50px;text-align: center;">
56
-            {{ '/' }}
56
+            {{
57
+            dialysisOrder &&
58
+            dialysisOrder.DeviceNumber &&
59
+            dialysisOrder.DeviceNumber.number.length > 0
60
+            ? dialysisOrder.DeviceNumber.number
61
+            : patientInfo.DialysisSchedule.device_number.number
62
+            }}
57 63
           </div>
58 64
         </div>
59 65
         <div class="inline_block">
@@ -122,7 +128,7 @@
122 128
             class="under_line"
123 129
             style="width: 640px;text-align: left;word-wrap: break-word;white-space: inherit;"
124 130
           >
125
-            {{ patientInfo.diagnose }}
131
+             {{ patientInfo.diagnose }}
126 132
           </div>
127 133
         </div>
128 134
       </div>
@@ -941,8 +947,8 @@
941 947
                   </td>
942 948
                   <td>
943 949
                     {{
944
-                    monitor.sodium_concentration
945
-                    ? monitor.sodium_concentration
950
+                    monitor.conductivity
951
+                    ? monitor.conductivity
946 952
                     : ''
947 953
                     }}
948 954
                   </td>

+ 25 - 19
src/xt_pages/dialysis/template/dialysisPrintOrderNine.vue Прегледај датотеку

@@ -1383,7 +1383,7 @@
1383 1383
                   </tr> -->
1384 1384
                   <tr>
1385 1385
                     <td width="70">拔针压迫:</td>
1386
-                    <td width="300">
1386
+                    <td width="350">
1387 1387
                       <div style="display:flex;justify-content:space-between;">
1388 1388
                         <label-box
1389 1389
                           showValue="自己压迫"
@@ -1405,6 +1405,12 @@
1405 1405
                             afterdialysis.hemostasis_opera == 1 ? true : false
1406 1406
                           "
1407 1407
                         ></label-box>
1408
+                        <label-box
1409
+                          showValue="内瘘止血带"
1410
+                          :isChecked="
1411
+                            afterdialysis.hemostasis_opera == 4 ? true : false
1412
+                          "
1413
+                        ></label-box>
1408 1414
                       </div>
1409 1415
                     </td>
1410 1416
                     <td width="50"></td>
@@ -1663,24 +1669,24 @@
1663 1669
                         ></label-box>
1664 1670
                       </div>
1665 1671
                     </td>
1666
-                    <td width="80"></td>
1667
-                    <td width="60">管路:</td>
1668
-                    <td width="220">
1669
-                      <div style="display:flex;justify-content:space-between;">
1670
-                        <label-box showValue="无" :isChecked="
1671
-                            afterdialysis.channel == 1 ? true : false
1672
-                          "></label-box>
1673
-                        <label-box showValue="+" :isChecked="
1674
-                            afterdialysis.channel == 2 ? true : false
1675
-                          "></label-box>
1676
-                        <label-box showValue="+ +" :isChecked="
1677
-                            afterdialysis.channel == 3  ? true : false
1678
-                          "></label-box>
1679
-                        <label-box showValue="+ + +" :isChecked="
1680
-                            afterdialysis.channel == 4 ? true : false
1681
-                          "></label-box>
1682
-                      </div>
1683
-                    </td>
1672
+                    <!--<td width="80"></td>-->
1673
+                    <!--<td width="60">管路:</td>-->
1674
+                    <!--<td width="220">-->
1675
+                      <!--<div style="display:flex;justify-content:space-between;">-->
1676
+                        <!--<label-box showValue="无" :isChecked="-->
1677
+                            <!--afterdialysis.channel == 1 ? true : false-->
1678
+                          <!--"></label-box>-->
1679
+                        <!--<label-box showValue="+" :isChecked="-->
1680
+                            <!--afterdialysis.channel == 2 ? true : false-->
1681
+                          <!--"></label-box>-->
1682
+                        <!--<label-box showValue="+ +" :isChecked="-->
1683
+                            <!--afterdialysis.channel == 3  ? true : false-->
1684
+                          <!--"></label-box>-->
1685
+                        <!--<label-box showValue="+ + +" :isChecked="-->
1686
+                            <!--afterdialysis.channel == 4 ? true : false-->
1687
+                          <!--"></label-box>-->
1688
+                      <!--</div>-->
1689
+                    <!--</td>-->
1684 1690
                     <td></td>
1685 1691
                   </tr>
1686 1692
                 </tbody>