Browse Source

龙岗二院

csx 5 years ago
parent
commit
57be920eb3

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

189
         </div>
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
         <div @click="showSubMenu('puncture_way')" class="item" ref="puncture_way" v-if="isShow('穿刺方式')">
201
         <div @click="showSubMenu('puncture_way')" class="item" ref="puncture_way" v-if="isShow('穿刺方式')">
193
           <h2 class="name">穿刺方式</h2>
202
           <h2 class="name">穿刺方式</h2>
194
           <div class="content">
203
           <div class="content">
408
           skin_other:'',
417
           skin_other:'',
409
           infect_other:'',
418
           infect_other:'',
410
           ductus_arantii_other:'',
419
           ductus_arantii_other:'',
420
+          puncture_needle:'',
411
 
421
 
412
         },
422
         },
413
 
423
 
860
               this.propForm.result = []
870
               this.propForm.result = []
861
             }
871
             }
862
             this.propForm.click_ref = 'ductus_arantii'
872
             this.propForm.click_ref = 'ductus_arantii'
863
-            break
873
+
864
 
874
 
865
             break
875
             break
866
 
876
 
926
             this.propForm.click_ref = 'skin'
936
             this.propForm.click_ref = 'skin'
927
             break
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
           case 21:
1056
           case 21:
1029
             this.formValue.skin = val.selectId.toString()
1057
             this.formValue.skin = val.selectId.toString()
1030
             break
1058
             break
1059
+          case 22:
1060
+            this.formValue.puncture_needle = val.result.join(',')
1061
+            break
1031
         }
1062
         }
1032
 
1063
 
1033
       }, QueryPartById: function (val) {
1064
       }, QueryPartById: function (val) {

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

78
                 >
78
                 >
79
                   <div class="txt">
79
                   <div class="txt">
80
                     <span>{{advice.advice_name }}</span>
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
                     <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
82
                     <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
85
                     <span v-if="advice.single_dose"
83
                     <span v-if="advice.single_dose"
86
                     >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
84
                     >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>

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

173
             <!--<span class="iconfont">&#xe6f9;</span>-->
173
             <!--<span class="iconfont">&#xe6f9;</span>-->
174
           </div>
174
           </div>
175
         </div>
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
         <div class="item" v-if="isShow('脉搏')">
186
         <div class="item" v-if="isShow('脉搏')">
177
           <label class="name" for="ml">脉搏(次/分)</label>
187
           <label class="name" for="ml">脉搏(次/分)</label>
178
           <div class="content">
188
           <div class="content">
471
           intravenous_tube:'',
481
           intravenous_tube:'',
472
           dialyzer:'',
482
           dialyzer:'',
473
           is_eat:'',
483
           is_eat:'',
484
+          breathing_rate:'',
474
         },
485
         },
475
 
486
 
476
         record_date: ''
487
         record_date: ''

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

44
             </tr>
44
             </tr>
45
             <tr v-for="(advice, index) in advices" :key="index" :class="{ 'row-class-active': index == current_advice_index }" @click="selectAdviceAction(index, advice)">
45
             <tr v-for="(advice, index) in advices" :key="index" :class="{ 'row-class-active': index == current_advice_index }" @click="selectAdviceAction(index, advice)">
46
               <td :class="{ 'advice_name': advice.parent_id == 0, 'subdrug_name': advice.parent_id > 0 }">{{ advice.advice_name }}</td>
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
               <td>{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
48
               <td>{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
49
               <td>{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
49
               <td>{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
50
               <td>{{ advice.parent_id == 0 ? advice.delivery_way : "" }}</td>
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
             </div>
22
             </div>
23
             <div class="cell">
23
             <div class="cell">
24
               <label>药品规格</label>
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
               <input
26
               <input
28
                 type="text"
27
                 type="text"
29
                 placeholder="单位"
28
                 placeholder="单位"

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

52
                 <td
52
                 <td
53
                   style="text-align: left; padding-left: 5px; padding-right: 5px;"
53
                   style="text-align: left; padding-left: 5px; padding-right: 5px;"
54
                 >{{ advice.title }}</td>
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
                 <td v-if="advice.prescribing_number">{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
56
                 <td v-if="advice.prescribing_number">{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
57
                 <td v-else></td>
57
                 <td v-else></td>
58
                 <td v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
58
                 <td v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
69
                 <td
69
                 <td
70
                   style="text-align: left; padding-right: 5px; padding-left: 25px;"
70
                   style="text-align: left; padding-right: 5px; padding-left: 25px;"
71
                 >{{ subdrug.title }}</td>
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
                 <td><span v-if="subdrug.prescribing_number">{{ subdrug.prescribing_number }}{{ subdrug.prescribing_number_unit }}</span></td>
73
                 <td><span v-if="subdrug.prescribing_number">{{ subdrug.prescribing_number }}{{ subdrug.prescribing_number_unit }}</span></td>
74
                 <td><span v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</span></td>
74
                 <td><span v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</span></td>
75
                 <!--<td v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</td>-->
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
               <label>药品规格</label>
20
               <label>药品规格</label>
21
               <!--<input class="inputBox" style="width:62.5%" v-model="order.advice_desc">-->
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
               <input
24
               <input
25
                 type="text"
25
                 type="text"
26
                 placeholder="单位"
26
                 placeholder="单位"

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

44
           <span class="content" id="tw">{{temperature?temperature:''}}</span>
44
           <span class="content" id="tw">{{temperature?temperature:''}}</span>
45
           <span class="unit">{{temperature?"℃":''}}</span>
45
           <span class="unit">{{temperature?"℃":''}}</span>
46
         </li>
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
         <li v-if="isShow('脉搏')">
54
         <li v-if="isShow('脉搏')">
48
           <label for="ml">脉搏 : </label>
55
           <label for="ml">脉搏 : </label>
49
           <span id="ml" class="content">{{pulse_frequency?pulse_frequency:''}}</span>
56
           <span id="ml" class="content">{{pulse_frequency?pulse_frequency:''}}</span>
383
             break;
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
       temperature: function () {
399
       temperature: function () {
387
         if (this.record == null || this.record.id == "") {
400
         if (this.record == null || this.record.id == "") {
388
           return "-"
401
           return "-"

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

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

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

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

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

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

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