Browse Source

龙岗二院

csx 5 years ago
parent
commit
57be920eb3

+ 35 - 4
src/pages/main/dialog/AssessmentDialog.vue View File

@@ -189,6 +189,15 @@
189 189
         </div>
190 190
 
191 191
 
192
+        <div @click="showSubMenu('puncture_needle')" class="item" ref="puncture_needle" v-if="isShow('穿刺针')">
193
+          <h2 class="name">穿刺针</h2>
194
+          <div class="content">
195
+            <span class="text" style="width: 100px">{{formValue.puncture_needle}}</span>
196
+            <span class="iconfont">&#xe6f9;</span>
197
+          </div>
198
+        </div>
199
+
200
+
192 201
         <div @click="showSubMenu('puncture_way')" class="item" ref="puncture_way" v-if="isShow('穿刺方式')">
193 202
           <h2 class="name">穿刺方式</h2>
194 203
           <div class="content">
@@ -408,6 +417,7 @@
408 417
           skin_other:'',
409 418
           infect_other:'',
410 419
           ductus_arantii_other:'',
420
+          puncture_needle:'',
411 421
 
412 422
         },
413 423
 
@@ -860,7 +870,7 @@
860 870
               this.propForm.result = []
861 871
             }
862 872
             this.propForm.click_ref = 'ductus_arantii'
863
-            break
873
+
864 874
 
865 875
             break
866 876
 
@@ -926,9 +936,27 @@
926 936
             this.propForm.click_ref = 'skin'
927 937
             break
928 938
 
929
-
930
-
931
-
939
+          case 'puncture_needle':
940
+            this.propForm.result = []
941
+            this.propForm.isHasOther = 2
942
+            this.propForm.type = 22
943
+            this.isShowDialog = false
944
+            this.propForm.title = '穿刺针'
945
+            this.visibility = true
946
+            this.propForm.list = this.$store.getters.puncture_needle
947
+            this.propForm.optionList = []
948
+            this.propForm.isMultiple = 2
949
+            if (this.formValue.puncture_needle != undefined || this.formValue.puncture_needle != null) {
950
+              if (this.formValue.puncture_needle.length > 0) {
951
+                this.propForm.result = this.formValue.puncture_needle.split(',')
952
+              } else {
953
+                this.propForm.result = []
954
+              }
955
+            } else {
956
+              this.propForm.result = []
957
+            }
958
+            this.propForm.click_ref = 'puncture_needle'
959
+            break
932 960
 
933 961
         }
934 962
 
@@ -1028,6 +1056,9 @@
1028 1056
           case 21:
1029 1057
             this.formValue.skin = val.selectId.toString()
1030 1058
             break
1059
+          case 22:
1060
+            this.formValue.puncture_needle = val.result.join(',')
1061
+            break
1031 1062
         }
1032 1063
 
1033 1064
       }, QueryPartById: function (val) {

+ 1 - 3
src/pages/main/dialog/OrdersDialog.vue View File

@@ -78,9 +78,7 @@
78 78
                 >
79 79
                   <div class="txt">
80 80
                     <span>{{advice.advice_name }}</span>
81
-                    <span>{{advice.advice_name }}</span>
82
-
83
-                    <span v-if="advice.drug_spec">{{ advice.drug_spec }}{{advice.drug_spec_unit}}</span>
81
+                    <span v-if="advice.advice_desc">{{ advice.advice_desc }}{{advice.drug_spec_unit}}</span>
84 82
                     <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
85 83
                     <span v-if="advice.single_dose"
86 84
                     >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>

+ 11 - 0
src/pages/main/dialog/ThorougDialog.vue View File

@@ -173,6 +173,16 @@
173 173
             <!--<span class="iconfont">&#xe6f9;</span>-->
174 174
           </div>
175 175
         </div>
176
+        <div class="item" v-if="isShow('呼吸频率')">
177
+          <label class="name" for="ml">呼吸频率(次/min)</label>
178
+          <div class="content">
179
+            <input type="tel" @focus="inputFocus" id="ml" v-model="formValue.breathing_rate"/>
180
+            <!--<span class="text">HD</span>-->
181
+            <!--<span class="iconfont">&#xe6f9;</span>-->
182
+          </div>
183
+        </div>
184
+
185
+
176 186
         <div class="item" v-if="isShow('脉搏')">
177 187
           <label class="name" for="ml">脉搏(次/分)</label>
178 188
           <div class="content">
@@ -471,6 +481,7 @@
471 481
           intravenous_tube:'',
472 482
           dialyzer:'',
473 483
           is_eat:'',
484
+          breathing_rate:'',
474 485
         },
475 486
 
476 487
         record_date: ''

+ 1 - 1
src/pages/main/dialog/modify_order/ModifyAdviceGroup.vue View File

@@ -44,7 +44,7 @@
44 44
             </tr>
45 45
             <tr v-for="(advice, index) in advices" :key="index" :class="{ 'row-class-active': index == current_advice_index }" @click="selectAdviceAction(index, advice)">
46 46
               <td :class="{ 'advice_name': advice.parent_id == 0, 'subdrug_name': advice.parent_id > 0 }">{{ advice.advice_name }}</td>
47
-              <td>{{ advice.drug_spec }}{{advice.drug_spec_unit}}</td>
47
+              <td>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
48 48
               <td>{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
49 49
               <td>{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
50 50
               <td>{{ advice.parent_id == 0 ? advice.delivery_way : "" }}</td>

+ 1 - 2
src/pages/main/dialog/modify_order/modify_order_form.vue View File

@@ -22,8 +22,7 @@
22 22
             </div>
23 23
             <div class="cell">
24 24
               <label>药品规格</label>
25
-              <!--<input class="inputBox" style="width:62.5%" v-model="order.drug_spec">-->
26
-              <input type="number" onclick="this.select()" class="inputBox" style="width:60%" v-model="order.drug_spec">
25
+              <input type="number" onclick="this.select()" class="inputBox" style="width:60%" v-model="order.advice_desc">
27 26
               <input
28 27
                 type="text"
29 28
                 placeholder="单位"

+ 2 - 2
src/pages/main/dialog/new_order/AddNewOrders.vue View File

@@ -52,7 +52,7 @@
52 52
                 <td
53 53
                   style="text-align: left; padding-left: 5px; padding-right: 5px;"
54 54
                 >{{ advice.title }}</td>
55
-                <td>{{ advice.drug_spec }}{{advice.drug_spec_unit}}</td>
55
+                <td v-if="advice.advice_desc">{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
56 56
                 <td v-if="advice.prescribing_number">{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
57 57
                 <td v-else></td>
58 58
                 <td v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
@@ -69,7 +69,7 @@
69 69
                 <td
70 70
                   style="text-align: left; padding-right: 5px; padding-left: 25px;"
71 71
                 >{{ subdrug.title }}</td>
72
-                <td>{{ subdrug.drug_spec }} {{subdrug.drug_spec_unit}}</td>
72
+                <td>{{ subdrug.advice_desc }} {{subdrug.drug_spec_unit}}</td>
73 73
                 <td><span v-if="subdrug.prescribing_number">{{ subdrug.prescribing_number }}{{ subdrug.prescribing_number_unit }}</span></td>
74 74
                 <td><span v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</span></td>
75 75
                 <!--<td v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</td>-->

+ 1 - 1
src/pages/main/dialog/new_order/order_form.vue View File

@@ -20,7 +20,7 @@
20 20
               <label>药品规格</label>
21 21
               <!--<input class="inputBox" style="width:62.5%" v-model="order.advice_desc">-->
22 22
 
23
-              <input type="number" class="inputBox" style="width:62.5%" v-model="order.drug_spec">
23
+              <input type="number" class="inputBox" style="width:62.5%" v-model="order.advice_desc">
24 24
               <input
25 25
                 type="text"
26 26
                 placeholder="单位"

+ 13 - 0
src/pages/main/today/assessmentAfter.vue View File

@@ -44,6 +44,13 @@
44 44
           <span class="content" id="tw">{{temperature?temperature:''}}</span>
45 45
           <span class="unit">{{temperature?"℃":''}}</span>
46 46
         </li>
47
+
48
+        <li v-if="isShow('呼吸频率')">
49
+          <label for="ml">呼吸频率 : </label>
50
+          <span id="ml" class="content">{{breathing_rate?breathing_rate:''}}</span>
51
+          <span class="unit">{{breathing_rate?"次/min":''}}</span>
52
+        </li>
53
+
47 54
         <li v-if="isShow('脉搏')">
48 55
           <label for="ml">脉搏 : </label>
49 56
           <span id="ml" class="content">{{pulse_frequency?pulse_frequency:''}}</span>
@@ -383,6 +390,12 @@
383 390
             break;
384 391
         }
385 392
       },
393
+      breathing_rate:function(){
394
+        if (this.record == null || this.record.id == "") {
395
+          return "-"
396
+        }
397
+        return this.record.breathing_rate
398
+      },
386 399
       temperature: function () {
387 400
         if (this.record == null || this.record.id == "") {
388 401
           return "-"

+ 6 - 0
src/pages/main/today/assessmentBefore.vue View File

@@ -106,6 +106,12 @@
106 106
           <label>血管杂音 : </label>
107 107
           <span class="content">{{getBloodAccessNoise(this.record.blood_access_noise)}}</span>
108 108
         </li>
109
+
110
+        <li v-if="isShow('穿刺针')">
111
+          <label>穿刺针 : </label>
112
+          <span class="content">{{this.record.puncture_needle}}</span>
113
+        </li>
114
+
109 115
         <li v-if="isShow('穿刺方式')">
110 116
           <label>穿刺方式 : </label>
111 117
           <span class="content">{{getWay(this.record.puncture_way)}}</span>

+ 1 - 1
src/pages/main/today/statOrder.vue View File

@@ -23,7 +23,7 @@
23 23
             <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
24 24
               <span>{{advice.advice_name }}</span>
25 25
               <!-- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span> -->
26
-              <span>{{advice.drug_spec}}{{advice.drug_spec_unit}}</span>
26
+              <span v-if="advice.drug_spec">{{advice.drug_spec}}{{advice.drug_spec_unit}}</span>
27 27
               <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
28 28
               <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
29 29
               <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>

+ 1 - 1
src/store/index.js View File

@@ -48,7 +48,7 @@ const getters = {
48 48
   ductus_arantii: state => state.global_config.ductus_arantii,
49 49
   emergency_treatment: state => state.global_config.emergency_treatment,
50 50
   skin: state => state.global_config.skin,
51
-
51
+  puncture_needle: state => state.global_config.puncture_needle,
52 52
 
53 53
 
54 54
   dialysis_process: state => state.global_config.dialysis_process,

File diff suppressed because it is too large
+ 609 - 360
src/store/modules/globalConfig.js