Browse Source

新分支

28169 1 year ago
parent
commit
7cae5ab3fc
1 changed files with 434 additions and 0 deletions
  1. 434 0
      src/xt_pages/infor/index.vue

+ 434 - 0
src/xt_pages/infor/index.vue View File

@@ -0,0 +1,434 @@
1
+<template>
2
+    <div class="main-contain">
3
+     <div class="position">
4
+      <bread-crumb :crumbs="crumbs"></bread-crumb>
5
+    </div>
6
+    <div class="app-container">
7
+        <el-tabs v-model="activeName" @tab-click="handleClick">
8
+            <el-tab-pane label="未审核" name="first">
9
+              <el-table
10
+                :data="list"
11
+                border
12
+                style="width: 100%">
13
+                <el-table-column  prop="date" label="序号"  width="50" align="center">
14
+                   <template slot-scope="scope" >
15
+                       {{scope.$index + 1 }}
16
+                   </template>
17
+                </el-table-column>
18
+                <el-table-column prop="name"  label="信息模块"  width="100" align="center">
19
+                  <template slot-scope="scope" >
20
+                      <span v-if="scope.row.module == 1">透析处方</span> 
21
+                      <span v-if="scope.row.module == 2">接诊评估</span> 
22
+                      <span v-if="scope.row.module == 3">透前评估</span> 
23
+                      <span v-if="scope.row.module == 4">临时医嘱</span> 
24
+                      <span v-if="scope.row.module == 5">双人核对</span> 
25
+                      <span v-if="scope.row.module == 6">透析上机</span> 
26
+                      <span v-if="scope.row.module == 7">透析监测</span> 
27
+                      <span v-if="scope.row.module == 8">透析下机</span> 
28
+                      <span v-if="scope.row.module == 9">透后评估</span> 
29
+                      <span v-if="scope.row.module == 10">治疗小结</span> 
30
+                   </template>
31
+                </el-table-column>
32
+                <el-table-column  prop="address" label="患者姓名" width="100" align="center">
33
+                  <template slot-scope="scope">
34
+                     {{getPatientName(scope.row.patient_id) }}
35
+                   </template>
36
+                </el-table-column>
37
+                <el-table-column prop="date" label="治疗日期" width="100" align="center">
38
+                   <template  slot-scope="scope" >
39
+                      {{getTimeOne(scope.row.record_date)  }}
40
+                   </template>
41
+                </el-table-column>
42
+                <el-table-column prop="name"  label="申请人"  width="100" align="center">
43
+                  <template  slot-scope="scope">
44
+                      {{getUserName(scope.row.creater)  }}
45
+                   </template>
46
+                </el-table-column>
47
+                <el-table-column  prop="address" label="申请时间" width="180" align="center">
48
+                  <template  slot-scope="scope" >
49
+                      {{getTimeTwo(scope.row.record_date)  }}
50
+                   </template>
51
+
52
+                </el-table-column>
53
+
54
+                <el-table-column  prop="date" label="状态" width="100" align="center">
55
+                  <template  slot-scope="scope" >
56
+                     <span v-if="scope.row.application_status == 1">已审核</span>
57
+                     <span v-if="scope.row.application_status == 2">未审核</span>
58
+                     <span v-if="scope.row.application_status == 3">拒绝</span>
59
+                  </template>
60
+                </el-table-column>
61
+                <el-table-column prop="name" label="审批人" width="100" align="center">
62
+                  <template  slot-scope="scope" >
63
+                      {{getUserName(scope.row.checker)  }}
64
+                   </template>
65
+                </el-table-column>
66
+                <el-table-column prop="address" label="审批时间" width="180" align="center">
67
+                  <template  slot-scope="scope">
68
+                      {{getTimeOne(scope.row.check_time)  }}
69
+                   </template>
70
+                </el-table-column>
71
+                <el-table-column  prop="address" label="备注" width="180" align="center">
72
+                  <template  slot-scope="scope">
73
+                      {{scope.row.remark }}
74
+                   </template>
75
+                </el-table-column>
76
+                <el-table-column prop="address" label="操作" width="180" align="center">
77
+                  <template slot-scope="scope">
78
+                    <el-tooltip
79
+                      class="item"
80
+                      effect="dark"
81
+                      content="审核"
82
+                      placement="top"
83
+                    >
84
+                      <el-button
85
+                        size="small"
86
+                        type="primary"
87
+                        icon="el-icon-edit-outline"
88
+                        @click="handleEdit(scope.$index, scope.row)"
89
+                      >
90
+                      </el-button>
91
+                    </el-tooltip>
92
+
93
+                    <el-tooltip
94
+                      class="item"
95
+                      effect="dark"
96
+                      content="拒绝"
97
+                      placement="top"
98
+                    >
99
+                      <el-button
100
+                        size="small"
101
+                        type="danger"
102
+                        icon="el-icon-delete"
103
+                        @click="handleDelete(scope.$index, scope.row)"
104
+                      >
105
+                      </el-button>
106
+                    </el-tooltip>
107
+                   </template>
108
+                </el-table-column>
109
+                
110
+              </el-table>
111
+              <el-pagination
112
+                @size-change="handleSizeChange"
113
+                @current-change="handleCurrentChange"
114
+                :page-size="5"
115
+                background
116
+                style="margin-top:20px;float: right"
117
+                :total="total"
118
+            ></el-pagination>
119
+            </el-tab-pane>
120
+
121
+            <el-tab-pane label="全部" name="second">
122
+              <el-table
123
+                :data="inforList"
124
+                border
125
+                style="width: 100%">
126
+                <el-table-column  prop="date" label="序号"  width="50" align="center">
127
+                   <template slot-scope="scope" >
128
+                       {{scope.$index + 1 }}
129
+                   </template>
130
+                </el-table-column>
131
+                <el-table-column prop="name"  label="信息模块"  width="100" align="center">
132
+                  <template slot-scope="scope" >
133
+                      <span v-if="scope.row.module == 1">透析处方</span> 
134
+                      <span v-if="scope.row.module == 2">接诊评估</span> 
135
+                      <span v-if="scope.row.module == 3">透前评估</span> 
136
+                      <span v-if="scope.row.module == 4">临时医嘱</span> 
137
+                      <span v-if="scope.row.module == 5">双人核对</span> 
138
+                      <span v-if="scope.row.module == 6">透析上机</span> 
139
+                      <span v-if="scope.row.module == 7">透析监测</span> 
140
+                      <span v-if="scope.row.module == 8">透析下机</span> 
141
+                      <span v-if="scope.row.module == 9">透后评估</span> 
142
+                      <span v-if="scope.row.module == 10">治疗小结</span> 
143
+                   </template>
144
+                </el-table-column>
145
+                <el-table-column  prop="address" label="患者姓名" width="100" align="center">
146
+                  <template slot-scope="scope">
147
+                     {{getPatientName(scope.row.patient_id) }}
148
+                   </template>
149
+                </el-table-column>
150
+                <el-table-column prop="date" label="治疗日期" width="100" align="center">
151
+                   <template  slot-scope="scope" >
152
+                      {{getTimeOne(scope.row.record_date)  }}
153
+                   </template>
154
+                </el-table-column>
155
+                <el-table-column prop="name"  label="申请人"  width="100" align="center">
156
+                  <template  slot-scope="scope">
157
+                      {{getUserName(scope.row.creater)  }}
158
+                   </template>
159
+                </el-table-column>
160
+                <el-table-column  prop="address" label="申请时间" width="180" align="center">
161
+                  <template  slot-scope="scope" >
162
+                      {{getTimeTwo(scope.row.record_date)  }}
163
+                   </template>
164
+
165
+                </el-table-column>
166
+
167
+                <el-table-column  prop="date" label="状态" width="100" align="center">
168
+                  <template  slot-scope="scope" >
169
+                     <span v-if="scope.row.application_status == 1">已审核</span>
170
+                     <span v-if="scope.row.application_status == 2">未审核</span>
171
+                     <span v-if="scope.row.application_status == 3">拒绝</span>
172
+                  </template>
173
+                </el-table-column>
174
+                <el-table-column prop="name" label="审批人" width="100" align="center">
175
+                  <template  slot-scope="scope" >
176
+                      {{getUserName(scope.row.checker)  }}
177
+                   </template>
178
+                </el-table-column>
179
+                <el-table-column prop="address" label="审批时间" width="180" align="center">
180
+                  <template  slot-scope="scope">
181
+                      {{getTimeOne(scope.row.check_time)  }}
182
+                   </template>
183
+                </el-table-column>
184
+                <el-table-column  prop="address" label="备注" width="260" align="center">
185
+                  <template  slot-scope="scope">
186
+                      {{scope.row.remark }}
187
+                   </template>
188
+                </el-table-column>
189
+              
190
+                
191
+              </el-table>
192
+              <el-pagination
193
+                @size-change="handleSizeChange"
194
+                @current-change="handleCurrentChange"
195
+                :page-size="5"
196
+                background
197
+                style="margin-top:20px;float: right"
198
+                :total="total"
199
+            ></el-pagination>
200
+
201
+            </el-tab-pane>
202
+
203
+            <el-tab-pane label="信息归档设置" name="third">
204
+               <el-button type="primary" size="small" style="margin-bottom:20px" @click="toSeeting">设置</el-button>
205
+              <el-table
206
+                  :data="tableData"
207
+                  style="width: 350px"
208
+                  border
209
+                  lazy>
210
+                  <el-table-column prop="date" label="序号" width="180" align="center">
211
+                     <template slot-scope="scope" >
212
+                        {{scope.$index + 1 }}
213
+                     </template>
214
+                  </el-table-column>
215
+                  <el-table-column
216
+                    prop="name"
217
+                    label="归档天数"
218
+                    width="180"
219
+                    align="center">
220
+                    <template slot-scope="scope" >
221
+                        {{scope.row.week_day }}
222
+                     </template>
223
+                  </el-table-column>
224
+                
225
+                </el-table>
226
+            </el-tab-pane>
227
+          
228
+        </el-tabs>
229
+     </div>
230
+
231
+     <el-dialog
232
+        title="信息归档设置"
233
+        :visible.sync="dialogVisible"
234
+        width="30%"
235
+        :before-close="handleClose">
236
+        <span>
237
+          <span>归档天数:</span> <el-input v-model="week_day" style="width:200px"></el-input>   
238
+        </span>
239
+        <span slot="footer" class="dialog-footer">
240
+            <el-button @click="dialogVisible = false">取 消</el-button>
241
+            <el-button type="primary" @click="SaveDialysisInformationSetting">保 存</el-button>
242
+       </span>
243
+     </el-dialog>
244
+    </div>
245
+</template>
246
+<script>
247
+ import { SaveDialysisInformationSetting,getDialysisInformationSetting,checkDialysisInformation } from "@/api/dialysis"
248
+ import { uParseTime } from '@/utils/tools'
249
+  export default {
250
+    data() {
251
+      return {
252
+        activeName: 'first',
253
+        dialogVisible:false,
254
+        id:0,
255
+        week_day:"",
256
+        crumbs: [
257
+        { path: false, name: "信息归档" },      
258
+        ],
259
+        tableData:[],
260
+        limit:10,
261
+        page:1,
262
+        list:[],
263
+        total:0,
264
+        totalOne:0,
265
+        inforList:0,
266
+        patients:[],
267
+        adminList:[],
268
+        id:0,
269
+      };
270
+    },
271
+    methods: {
272
+        handleClick(val){
273
+          console.log("val----------------",val)
274
+        },
275
+        toSeeting(){
276
+          var params = {
277
+             limit:this.limit,
278
+             page:this.page
279
+           }
280
+          getDialysisInformationSetting(params).then(response=>{
281
+            if(response.data.state == 1){
282
+              this.dialogVisible = true
283
+              var informaitonSetting =  response.data.data.informaitonSetting
284
+              if (informaitonSetting!=null && informaitonSetting.length > 0) {
285
+                 this.week_day = informaitonSetting[0].week_day
286
+              }
287
+            }
288
+          })
289
+         
290
+        },
291
+        SaveDialysisInformationSetting(){
292
+            var params = {
293
+              week_day:parseInt(this.week_day),
294
+              id:parseInt(this.id),
295
+            }
296
+            SaveDialysisInformationSetting(params).then(response=>{
297
+             if(response.data.state == 1){
298
+               var informaitonSetting = response.data.data.informaitonSetting
299
+               this.dialogVisible = false
300
+             }
301
+          })
302
+        },
303
+        getlist(){
304
+           var params = {
305
+             limit:this.limit,
306
+             page:this.page
307
+           }
308
+          getDialysisInformationSetting(params).then(response=>{
309
+            if(response.data.state == 1){
310
+              var informaitonSetting =  response.data.data.informaitonSetting
311
+              this.tableData = informaitonSetting
312
+              //未审核
313
+              this.list = response.data.data.infor
314
+              this.total = response.data.data.total
315
+              //已审核
316
+              this.totalOne = response.data.data.totalOne
317
+              this.inforList = response.data.data.inforList
318
+              this.patients = response.data.data.patients
319
+
320
+              this.adminList= response.data.data.adminList
321
+            }
322
+          }) 
323
+      },
324
+      handleSizeChange(val){
325
+        this.limit = val;
326
+        this.getList();
327
+      },
328
+      handleCurrentChange(val){
329
+        this.page =val
330
+        this.getlist()
331
+      },
332
+      handleSizeChangeOne(val){
333
+        this.limit=val
334
+        this.getlist()
335
+      },
336
+      handleCurrentChangeOne(val){
337
+        this.page =val
338
+        this.getlist()
339
+      },
340
+      getPatientName(patient_id){
341
+        console.log("patinet_id---",patient_id)
342
+        console.log("patients",this.patients)
343
+        var name = ""
344
+        for(let i=0;i<this.patients.length;i++){
345
+           if(patient_id == this.patients[i].id){
346
+              name = this.patients[i].name
347
+           }
348
+        }
349
+        return name
350
+      },
351
+      getTimeOne(val) {
352
+        if(val == ""){
353
+        return ""
354
+        }else {
355
+        return uParseTime(val, '{y}-{m}-{d}')
356
+        }
357
+     },
358
+     getTimeTwo(val) {
359
+        if(val == ""){
360
+        return ""
361
+        }else {
362
+        return uParseTime(val, '{y}-{m}-{d} {h}:{i}:{s}')
363
+        }
364
+     },
365
+     getUserName(admin_user_id){
366
+       var user_name = ""
367
+       for(let i=0;i<this.adminList.length;i++){
368
+         if(admin_user_id == this.adminList[i].admin_user_id){
369
+            user_name = this.adminList[i].user_name
370
+         }
371
+       }
372
+       return user_name
373
+     },
374
+     handleEdit(index,row) {
375
+      this.$confirm("确认审核吗?", "审核", {
376
+        confirmButtonText: "确 定",
377
+        cancelButtonText: "取 消",
378
+        type: "warning"
379
+      }).then(() => {
380
+          var params = {
381
+            id:row.id,
382
+            application_status:1,
383
+          }
384
+          checkDialysisInformation(params).then(response => {
385
+            if (response.data.state == 0) {
386
+              this.$message.error(response.data.msg);
387
+              return false;
388
+            } else {
389
+              this.$notify({
390
+                title: "成功",
391
+                message: "审核成功",
392
+                type: "success",
393
+                duration: 2000
394
+              });
395
+              this.getlist()
396
+            }
397
+          });
398
+        })
399
+        .catch(() => {});
400
+    },
401
+    handleDelete(index,row){
402
+      this.$confirm("确认审核吗?", "审核", {
403
+        confirmButtonText: "确 定",
404
+        cancelButtonText: "取 消",
405
+        type: "warning"
406
+      }).then(() => {
407
+          var params = {
408
+            id:row.id,
409
+            application_status:3,
410
+          }
411
+          checkDialysisInformation(params).then(response => {
412
+            if (response.data.state == 0) {
413
+              this.$message.error(response.data.msg);
414
+              return false;
415
+            } else {
416
+              this.$notify({
417
+                title: "成功",
418
+                message: "拒绝成功",
419
+                type: "success",
420
+                duration: 2000
421
+              });
422
+              this.getlist()
423
+            }
424
+          });
425
+        }).catch(() => {});
426
+    }
427
+    
428
+    },
429
+   
430
+    created(){
431
+      this.getlist()
432
+    }
433
+  };
434
+</script>