Browse Source

新分支

28169 1 year ago
parent
commit
9289d7d15a

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

52
       method:"post",
52
       method:"post",
53
       data:data
53
       data:data
54
     })
54
     })
55
+  }
56
+
57
+  export function savePediatrcFallAssesment(data){
58
+    
59
+    return request({
60
+      url:"/api/patient/savepediatrcfallassesment",
61
+      method:"post",
62
+      data:data,
63
+    })
55
   }
64
   }

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

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

+ 3 - 2
src/xt_pages/user/evaluationtool/pediatricFallAssessment.vue View File

157
 import PatientSidebar from '../components/PatientSidebar.vue'
157
 import PatientSidebar from '../components/PatientSidebar.vue'
158
 import Falloutbedprint from './Falloutbedprint.vue'
158
 import Falloutbedprint from './Falloutbedprint.vue'
159
 import { uParseTime } from '@/utils/tools'
159
 import { uParseTime } from '@/utils/tools'
160
+import { savePediatrcFallAssesment } from '@/api/fallassement'
160
 export default {
161
 export default {
161
   components:{
162
   components:{
162
     PatientSidebar,
163
     PatientSidebar,
337
           patient:this.patient,
338
           patient:this.patient,
338
        }
339
        }
339
        console.log("params----",params)
340
        console.log("params----",params)
340
-      // savePediatrcFallAssesment(params).then(Response=>{
341
+      savePediatrcFallAssesment(params).then(Response=>{
341
 
342
 
342
-      // })
343
+      })
343
     }
344
     }
344
   },
345
   },
345
   computed:{
346
   computed:{