Browse Source

新分支

28169 1 year ago
parent
commit
1c161c32d0

+ 9 - 0
src/api/patient.js View File

@@ -794,4 +794,13 @@ export function updateSiteMap(data){
794 794
     method:"Post",
795 795
     data:data,
796 796
   })
797
+}
798
+
799
+export function getPatientDetailInformedconsent(id,params){
800
+     
801
+  return request({
802
+    url:"/api/patient/getpatientdetailinformedconsent?patient_id="+id,
803
+    method:"get",
804
+    params:params,
805
+  })
797 806
 }

+ 11 - 11
src/router/modules/patient.js View File

@@ -579,17 +579,17 @@ export default {
579 579
       noCache: true
580 580
     }
581 581
   },
582
-  // {//知情同意书
583
-  //   path: '/patients/patient/:id/Informedconsent',
584
-  //   component: () => import('@/xt_pages/user/Informed/Informedconsent'),
585
-  //   hidden: true,
586
-  //   is_menu: false,
587
-  //   name: 'Informedconsent',
588
-  //   meta: {
589
-  //     title: 'Informedconsent',
590
-  //     noCache: true
591
-  //   }
592
-  // },
582
+  {//知情同意书
583
+    path: '/patients/patient/:id/Informedconsent',
584
+    component: () => import('@/xt_pages/user/Informed/Informedconsent'),
585
+    hidden: true,
586
+    is_menu: false,
587
+    name: 'Informedconsent',
588
+    meta: {
589
+      title: 'Informedconsent',
590
+      noCache: true
591
+    }
592
+  },
593 593
   // {//血管通路图 pruritus_history
594 594
   //   path: '/patients/patient/:id/angiogram',
595 595
   //   component: () => import('@/xt_pages/user/angiogram'),

+ 23 - 16
src/xt_pages/user/Informed/Informedconsent.vue View File

@@ -59,7 +59,7 @@
59 59
                     prefix-icon="el-icon-search"
60 60
                     v-model="input2" style="width: 200px;">
61 61
                   </el-input>
62
-                  <el-button type="primary">新增</el-button>
62
+                  <!-- <el-button type="primary">新增</el-button> -->
63 63
                 </div>
64 64
                 <div>
65 65
                   <el-table
@@ -84,41 +84,41 @@
84 84
               </div>
85 85
               <div style="width: 67%; margin-left: 10px;">
86 86
                 <div v-if="face_show">
87
-                  <Falloutbedprint></Falloutbedprint>
87
+                  <Falloutbedprint :patient_id ="this.patientID"></Falloutbedprint>
88 88
                 </div>
89 89
                 <div v-if="filter_show">
90 90
                   <!-- filter_show -->
91
-                  <Filter_informed></Filter_informed>
91
+                  <Filter_informed :patient_id ="this.patientID"></Filter_informed>
92 92
                 </div>
93 93
                 <div v-if="profunda_show">
94
-                  <profunda_informed></profunda_informed>
94
+                  <profunda_informed :patient_id ="this.patientID"></profunda_informed>
95 95
                 </div>
96 96
                 <div v-if="arteriovenous_show">
97
-                  <arteriovenous_informed></arteriovenous_informed>
97
+                  <arteriovenous_informed :patient_id ="this.patientID"></arteriovenous_informed>
98 98
                 </div>
99
-                <div v-if="Highrisk_show">
100
-                  <Highrisk_informed></Highrisk_informed>
99
+                <div v-if="Highrisk_show" >
100
+                  <Highrisk_informed :patient_id ="this.patientID"></Highrisk_informed>
101 101
                 </div>
102 102
                 <div v-if="anticoagulation_show">
103
-                  <anticoagulation_informed></anticoagulation_informed>
103
+                  <anticoagulation_informed :patient_id ="this.patientID"></anticoagulation_informed>
104 104
                 </div>
105 105
                 <div v-if="critical_show">
106
-                  <critical_informed></critical_informed>
106
+                  <critical_informed :patient_id ="this.patientID"></critical_informed>
107 107
                 </div>
108 108
                 <div v-if="hemoperfusion_show">
109
-                  <hemoperfusion_informed></hemoperfusion_informed>
109
+                  <hemoperfusion_informed :patient_id ="this.patientID"></hemoperfusion_informed>
110 110
                 </div>
111 111
                 <div v-if="Bring_show">
112
-                  <Bring_informed></Bring_informed>
112
+                  <Bring_informed :patient_id ="this.patientID"></Bring_informed>
113 113
                 </div>
114 114
                 <div v-if="catheterization_show">
115
-                  <catheterization_informed></catheterization_informed>
115
+                  <catheterization_informed :patient_id ="this.patientID"></catheterization_informed>
116 116
                 </div>
117 117
                 <div v-if="dialyzer_show">
118
-                  <dialyzer_informed></dialyzer_informed>
118
+                  <dialyzer_informed :patient_id ="this.patientID"></dialyzer_informed>
119 119
                 </div>
120 120
                 <div v-if="therapy_show">
121
-                  <therapy_informed></therapy_informed>
121
+                  <therapy_informed :patient_id ="this.patientID"></therapy_informed>
122 122
                 </div>
123 123
                 
124 124
               </div>
@@ -145,8 +145,9 @@ import Bring_informed from './components/Bring_informed'//自带药物
145 145
 import catheterization_informed from './components/catheterization_informed'//深静脉导管置入
146 146
 import dialyzer_informed from './components/dialyzer_informed'//透析器(滤器)
147 147
 import therapy_informed from './components/therapy_informed'//透析器(滤过)治疗
148
+import { getPatientDetailInformedconsent,  } from '@/api/patient'
148 149
 export default {
149
-
150
+  
150 151
   components: {
151 152
     PatientSidebar,
152 153
     Falloutbedprint,
@@ -183,13 +184,19 @@ export default {
183 184
       catheterization_show:false,
184 185
       dialyzer_show:false,
185 186
       therapy_show:false,
187
+      patientID:0,
188
+      patient:{},
189
+      tableData:[],
186 190
     }
187 191
 
188 192
   },
189 193
   created() {
190
-
194
+    const id = this.$route.params && this.$route.params.id
195
+    this.patientID = parseInt(id)
196
+    console.log("病人id",this.patientID)
191 197
   },
192 198
   methods: {
199
+   
193 200
     rowClick(row, column, event){
194 201
       // console.log('1111',row);
195 202
       // console.log('2222',column);

+ 58 - 8
src/xt_pages/user/Informed/components/Falloutbedprint.vue View File

@@ -2,7 +2,7 @@
2 2
     <div style="border:1px solid gainsboro ;padding:10px">
3 3
         <div style="position: relative; left: 400px;width: 250px;margin: 20px 0;"> 
4 4
           <!-- <el-button type="primary">主要按钮</el-button> -->
5
-          <el-button type="primary" style=""  @click="">
5
+          <!-- <el-button type="primary" style=""  @click="">
6 6
                 编辑
7 7
             </el-button>
8 8
           <el-button type="danger" style=""  @click="">
@@ -10,7 +10,7 @@
10 10
             </el-button>
11 11
             <el-button type="success" style=""  @click="printThisPage">
12 12
                 打印
13
-            </el-button>
13
+            </el-button> -->
14 14
         </div>
15 15
         <div id="print_content">
16 16
             <div class="print_page_main_content">
@@ -18,16 +18,19 @@
18 18
                 <h2 style="text-align: center;">人脸识别知情同意书</h2>
19 19
 
20 20
                 <div style="text-align: right;">
21
-                  透析号:2100002
21
+                  透析号:{{ patient.dialysis_no }}
22 22
                 </div>
23 23
                 <div style="display: flex;margin: 10px 0;">
24
-                  <div style="flex:1">姓名:</div>
25
-                  <div style="flex:1">性别:</div>
26
-                  <div style="flex:1">年龄:</div>
27
-                  <div style="flex:1">住院(门诊)号:</div>
24
+                  <div style="flex:1">姓名:{{ patient.name }}</div>
25
+                  <div style="flex:1">性别:
26
+                     <span v-if="patient.gender == 1">男</span>
27
+                     <span v-if="patient.gender == 2">女</span>
28
+                  </div>
29
+                  <div style="flex:1">年龄:{{ getAge(patient) }}</div>
30
+                  <div style="flex:1">住院(门诊)号:{{ patient.admission_number }}</div>
28 31
                 </div>
29 32
                 <div style="border-bottom: 1px solid gainsboro;">
30
-                  诊断:
33
+                  诊断:{{ patient.diagnose }}
31 34
                 </div>
32 35
                 <p style="font-size: 17px;font-weight: bold;">请您仔细阅读以下内容,并自主决定是否使用人脸识别功能:</p>
33 36
                 <p style="display: inline;padding: 0;">一、登录平台时,您已被提示(无论是否以界面弹窗或其他方式)注意仔细阅读本知情同意书。</p>
@@ -74,8 +77,34 @@
74 77
 
75 78
 <script>
76 79
 import print from "print-js";
80
+import { getPatientDetailInformedconsent  } from '@/api/patient'
81
+import { jsGetAge, uParseTime } from "@/utils/tools";
77 82
 export default{
83
+  props: {
84
+    patient_id: {
85
+        type: Number,
86
+      }
87
+   },
88
+   data(){
89
+    return{
90
+      patient:{}
91
+    }
92
+   },
93
+  
94
+   created(){
95
+     this.getlist()
96
+   },
78 97
     methods:{
98
+      getlist(){
99
+        console.log("owwwwwwwwwwwwwwwwwww",this.patient_id)
100
+        getPatientDetailInformedconsent(this.patient_id).then(response=>{
101
+          if(response.data.state == 1){
102
+            var patient =  response.data.data.patients
103
+            console.log("patinet",patient)
104
+            this.patient =patient
105
+          }
106
+        }) 
107
+       },
79 108
         printThisPage(){
80 109
             const style = '@media print {.content p{font-size: 16px;font-family: 新宋体; padding-left: 20px; margin-bottom: 5px;}}'
81 110
             printJS({
@@ -85,6 +114,27 @@ export default{
85 114
                 style: style,
86 115
                 scanStyles: false
87 116
             })
117
+        },
118
+       getAge: function(val) {
119
+          if (val.id_card_no == undefined) {
120
+            return false
121
+          }
122
+          var thisLen = val.id_card_no.length
123
+          var birth = ''
124
+          if (thisLen == 15) {
125
+            birth = '19' + val.id_card_no.substr(6, 6)
126
+          } else {
127
+            birth = val.id_card_no.substr(6, 8)
128
+          }
129
+          var birthtwo =
130
+            birth.substr(0, 4) +
131
+            '-' +
132
+            birth.substr(4, 2) +
133
+            '-' +
134
+            birth.substr(6, 2)
135
+
136
+          var age = jsGetAge(birthtwo, '-')
137
+          return age
88 138
         }
89 139
     }
90 140
 }

+ 71 - 17
src/xt_pages/user/Informed/components/Filter_informed.vue View File

@@ -18,16 +18,23 @@
18 18
               <h2 style="text-align: center;">血液透析(滤过、灌流)治疗知情同意书</h2>
19 19
 
20 20
               <div style="text-align: right;">
21
-                透析号:2100002
21
+                透析号:{{ patient.dialysis_no }}
22 22
               </div>
23 23
               <div style="display: flex;margin: 10px 0;">
24
-                <div style="flex:1">姓名:</div>
25
-                <div style="flex:1">性别:</div>
26
-                <div style="flex:1">年龄:</div>
27
-                <div style="flex:1">住院(门诊)号:</div>
24
+                <div style="flex:1">姓名:{{ patient.name }}</div>
25
+                <div style="flex:1">性别:
26
+                  <span v-if="patient.gender == 1">男</span>
27
+                  <span v-if="patient.gender == 2">女</span>
28
+                </div>
29
+                <div style="flex:1">年龄:
30
+                  {{ getAge(patient) }}
31
+                </div>
32
+                <div style="flex:1">住院(门诊)号:
33
+                  {{ patient.admission_number }}
34
+                </div>
28 35
               </div>
29 36
               <div style="border-bottom: 1px solid gainsboro;">
30
-                诊断:
37
+                诊断:{{ patient.diagnose }}
31 38
               </div>
32 39
               <!-- <span>一、血液透析是急性肾损伤和慢性肾功能衰竭的一种替代治疗方法:</span><br> -->
33 40
               <p style="display: inline;padding: 0;">一、血液透析是急性肾损伤和慢性肾功能衰竭的一种替代治疗方法:</p>
@@ -117,19 +124,66 @@
117 124
 
118 125
 <script>
119 126
 import print from "print-js";
127
+import { getPatientDetailInformedconsent  } from '@/api/patient'
128
+import { jsGetAge, uParseTime } from "@/utils/tools";
120 129
 export default{
121
-  methods:{
122
-      printThisPage(){
123
-          const style = '@media print {.content p{font-size: 16px;font-family: 新宋体; padding-left: 20px; margin-bottom: 5px;}}'
124
-          printJS({
125
-              printable: 'print_content',
126
-              type: 'html',
127
-              documentTitle: '  ',
128
-              style: style,
129
-              scanStyles: false
130
-          })
130
+  props: {
131
+    patient_id: {
132
+        type: Number,
131 133
       }
132
-  }
134
+   },
135
+   data(){
136
+    return{
137
+      patient:{}
138
+    }
139
+   },
140
+  
141
+   created(){
142
+     this.getlist()
143
+   },
144
+    methods:{
145
+      getlist(){
146
+        console.log("owwwwwwwwwwwwwwwwwww",this.patient_id)
147
+        getPatientDetailInformedconsent(this.patient_id).then(response=>{
148
+          if(response.data.state == 1){
149
+            var patient =  response.data.data.patients
150
+            console.log("patinet",patient)
151
+            this.patient =patient
152
+          }
153
+        }) 
154
+       },
155
+        printThisPage(){
156
+            const style = '@media print {.content p{font-size: 16px;font-family: 新宋体; padding-left: 20px; margin-bottom: 5px;}}'
157
+            printJS({
158
+                printable: 'print_content',
159
+                type: 'html',
160
+                documentTitle: '  ',
161
+                style: style,
162
+                scanStyles: false
163
+            })
164
+        },
165
+       getAge: function(val) {
166
+          if (val.id_card_no == undefined) {
167
+            return false
168
+          }
169
+          var thisLen = val.id_card_no.length
170
+          var birth = ''
171
+          if (thisLen == 15) {
172
+            birth = '19' + val.id_card_no.substr(6, 6)
173
+          } else {
174
+            birth = val.id_card_no.substr(6, 8)
175
+          }
176
+          var birthtwo =
177
+            birth.substr(0, 4) +
178
+            '-' +
179
+            birth.substr(4, 2) +
180
+            '-' +
181
+            birth.substr(6, 2)
182
+
183
+          var age = jsGetAge(birthtwo, '-')
184
+          return age
185
+        }
186
+    }
133 187
 }
134 188
 </script>
135 189
 <style lang="scss" scoped>

+ 72 - 18
src/xt_pages/user/Informed/components/profunda_informed.vue View File

@@ -2,7 +2,7 @@
2 2
   <div style="border:1px solid gainsboro ;padding:10px">
3 3
       <div style="position: relative; left: 400px;width: 250px;margin: 20px 0;"> 
4 4
         <!-- <el-button type="primary">主要按钮</el-button> -->
5
-        <el-button type="primary" style=""  @click="">
5
+        <!-- <el-button type="primary" style=""  @click="">
6 6
               编辑
7 7
           </el-button>
8 8
         <el-button type="danger" style=""  @click="">
@@ -10,7 +10,7 @@
10 10
         </el-button>
11 11
         <el-button type="success" style=""  @click="printThisPage">
12 12
             打印
13
-        </el-button>
13
+        </el-button> -->
14 14
       </div>
15 15
       <div id="print_content">
16 16
           <div class="print_page_main_content">
@@ -21,13 +21,20 @@
21 21
                 透析号:2100002
22 22
               </div>
23 23
               <div style="display: flex;margin: 10px 0;">
24
-                <div style="flex:1">姓名:</div>
25
-                <div style="flex:1">性别:</div>
26
-                <div style="flex:1">年龄:</div>
27
-                <div style="flex:1">住院(门诊)号:</div>
24
+                <div style="flex:1">姓名:{{ patient.name }}</div>
25
+                <div style="flex:1">性别:
26
+                  <span v-if="patient.gender == 1">男</span>
27
+                   <span v-if="patient.gender == 2">女</span>
28
+                </div>
29
+                <div style="flex:1">年龄:
30
+                  {{ getAge(patient) }}
31
+                </div>
32
+                <div style="flex:1">住院(门诊)号:
33
+                  {{ patient.admission_number }}
34
+                </div>
28 35
               </div>
29 36
               <div style="border-bottom: 1px solid gainsboro;">
30
-                诊断:
37
+                诊断: {{ patient.diagnose }}
31 38
               </div>
32 39
               <p style="display: inline;padding: 0;">拟进行治疗:深静脉透析导管拔管术</p>
33 40
               <div style="display: flex; margin: 10px 0;">
@@ -86,19 +93,66 @@
86 93
 
87 94
 <script>
88 95
 import print from "print-js";
96
+import { getPatientDetailInformedconsent  } from '@/api/patient'
97
+import { jsGetAge, uParseTime } from "@/utils/tools";
89 98
 export default{
90
-  methods:{
91
-      printThisPage(){
92
-          const style = '@media print {.content p{font-size: 16px;font-family: 新宋体; padding-left: 20px; margin-bottom: 5px;}}'
93
-          printJS({
94
-              printable: 'print_content',
95
-              type: 'html',
96
-              documentTitle: '  ',
97
-              style: style,
98
-              scanStyles: false
99
-          })
99
+  props: {
100
+    patient_id: {
101
+        type: Number,
100 102
       }
101
-  }
103
+   },
104
+   data(){
105
+    return{
106
+      patient:{}
107
+    }
108
+   },
109
+  
110
+   created(){
111
+     this.getlist()
112
+   },
113
+    methods:{
114
+      getlist(){
115
+        console.log("owwwwwwwwwwwwwwwwwww",this.patient_id)
116
+        getPatientDetailInformedconsent(this.patient_id).then(response=>{
117
+          if(response.data.state == 1){
118
+            var patient =  response.data.data.patients
119
+            console.log("patinet",patient)
120
+            this.patient =patient
121
+          }
122
+        }) 
123
+       },
124
+        printThisPage(){
125
+            const style = '@media print {.content p{font-size: 16px;font-family: 新宋体; padding-left: 20px; margin-bottom: 5px;}}'
126
+            printJS({
127
+                printable: 'print_content',
128
+                type: 'html',
129
+                documentTitle: '  ',
130
+                style: style,
131
+                scanStyles: false
132
+            })
133
+        },
134
+       getAge: function(val) {
135
+          if (val.id_card_no == undefined) {
136
+            return false
137
+          }
138
+          var thisLen = val.id_card_no.length
139
+          var birth = ''
140
+          if (thisLen == 15) {
141
+            birth = '19' + val.id_card_no.substr(6, 6)
142
+          } else {
143
+            birth = val.id_card_no.substr(6, 8)
144
+          }
145
+          var birthtwo =
146
+            birth.substr(0, 4) +
147
+            '-' +
148
+            birth.substr(4, 2) +
149
+            '-' +
150
+            birth.substr(6, 2)
151
+
152
+          var age = jsGetAge(birthtwo, '-')
153
+          return age
154
+        }
155
+    }
102 156
 }
103 157
 </script>
104 158
 <style lang="scss" scoped>

+ 62 - 62
src/xt_pages/user/components/PatientSidebar.vue View File

@@ -203,68 +203,68 @@ export default {
203 203
             },
204 204
           ]
205 205
         },
206
-        {
207
-          name: '5',
208
-          label: '评估工具',
209
-          children: [
210
-            {
211
-              name: '5-1',
212
-              label: '跌倒评估'
213
-            },
214
-            {
215
-              name: '5-2',
216
-              label: '小儿跌倒风险评估'
217
-            },
218
-            {
219
-              name: '5-3',
220
-              label: '压疮风险评估'
221
-            },
222
-            {
223
-              name: '5-4',
224
-              label: 'OH压疮评估'
225
-            },
226
-            {
227
-              name: '5-5',
228
-              label: '日常生活能力评估'
229
-            },
230
-            {
231
-              name: '5-6',
232
-              label: '导管脱落风险评估'
233
-            },
234
-            {
235
-              name: '5-7',
236
-              label: 'RASS及疼痛评估'
237
-            },
238
-            {
239
-              name: '5-8',
240
-              label: '营养状况评估'
241
-            },
242
-            {
243
-              name: '5-9',
244
-              label: '约束告知单'
245
-            },
246
-            {
247
-              name: '5-10',
248
-              label: '心理评估'
249
-            },
250
-            {
251
-              name: '5-11',
252
-              label: '瘙痒评估'
253
-            },
254
-            {
255
-              name: '5-12',
256
-              label: '血液透析患者评估'
257
-            },
258
-            {
259
-              name: '5-13',
260
-              label: 'Glasgow昏迷评分量表'
261
-            },
262
-            {
263
-              name: '5-14',
264
-              label: '肌力评估表'
265
-            },
266
-          ]
267
-        },
206
+        // {
207
+        //   name: '5',
208
+        //   label: '评估工具',
209
+        //   children: [
210
+        //     {
211
+        //       name: '5-1',
212
+        //       label: '跌倒评估'
213
+        //     },
214
+        //     {
215
+        //       name: '5-2',
216
+        //       label: '小儿跌倒风险评估'
217
+        //     },
218
+        //     {
219
+        //       name: '5-3',
220
+        //       label: '压疮风险评估'
221
+        //     },
222
+        //     {
223
+        //       name: '5-4',
224
+        //       label: 'OH压疮评估'
225
+        //     },
226
+        //     {
227
+        //       name: '5-5',
228
+        //       label: '日常生活能力评估'
229
+        //     },
230
+        //     {
231
+        //       name: '5-6',
232
+        //       label: '导管脱落风险评估'
233
+        //     },
234
+        //     {
235
+        //       name: '5-7',
236
+        //       label: 'RASS及疼痛评估'
237
+        //     },
238
+        //     {
239
+        //       name: '5-8',
240
+        //       label: '营养状况评估'
241
+        //     },
242
+        //     {
243
+        //       name: '5-9',
244
+        //       label: '约束告知单'
245
+        //     },
246
+        //     {
247
+        //       name: '5-10',
248
+        //       label: '心理评估'
249
+        //     },
250
+        //     {
251
+        //       name: '5-11',
252
+        //       label: '瘙痒评估'
253
+        //     },
254
+        //     {
255
+        //       name: '5-12',
256
+        //       label: '血液透析患者评估'
257
+        //     },
258
+        //     {
259
+        //       name: '5-13',
260
+        //       label: 'Glasgow昏迷评分量表'
261
+        //     },
262
+        //     {
263
+        //       name: '5-14',
264
+        //       label: '肌力评估表'
265
+        //     },
266
+        //   ]
267
+        // },
268 268
         {
269 269
           name: '6',
270 270
           label: '文书管理',