Browse Source

新分支

28169 1 year ago
parent
commit
3349a9216b

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

803
     method:"get",
803
     method:"get",
804
     params:params,
804
     params:params,
805
   })
805
   })
806
+}
807
+
808
+export function getExportList(params){
809
+  
810
+  return request({
811
+    url:"/api/patient/getexportlist",
812
+    metod:"get",
813
+    params:params,
814
+  })
806
 }
815
 }

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

38
   })
38
   })
39
 }
39
 }
40
 
40
 
41
+export function getSchedulesThree(params){
42
+  
43
+  return request({
44
+    url:"/api/schedule/getschedulethreeone",
45
+    method:"Get",
46
+    params:params,
47
+  })
48
+}
49
+
41
 export function getSchedulePatients(params) {
50
 export function getSchedulePatients(params) {
42
   return request({
51
   return request({
43
     url: '/api/schedule/patients',
52
     url: '/api/schedule/patients',

+ 11 - 0
src/router/modules/workforce.js View File

223
   //     noCache: true
223
   //     noCache: true
224
   //   }
224
   //   }
225
   // }
225
   // }
226
+  {
227
+    path: '/scheduleTablePrintSix',
228
+    component: () => import('@/xt_pages/workforce/scheduleTablePrintSix'),
229
+    name: 'scheduleTablePrintSix',
230
+    hidden: true,
231
+    is_menu: false,
232
+    meta: {
233
+      title: 'scheduleTablePrintSix',
234
+      noCache: true
235
+    }
236
+  },
226
   ]
237
   ]
227
 }
238
 }

+ 5 - 5
src/xt_pages/dialysis/details/consumable/dialysisParameterPrint.vue View File

16
             <span class="main_title"> &nbsp;
16
             <span class="main_title"> &nbsp;
17
               透析参数
17
               透析参数
18
             </span>
18
             </span>
19
-            <span  style="float:right;">打印日期: &nbsp;
19
+            <span  style="float:left;">打印日期: &nbsp;
20
                {{$route.query.schedule_date}}
20
                {{$route.query.schedule_date}}
21
             </span>
21
             </span>
22
           </div>
22
           </div>
52
                 <td width="100" v-if="dialysisSett.sealing_fluid_dispose == 1">封管液</td>
52
                 <td width="100" v-if="dialysisSett.sealing_fluid_dispose == 1">封管液</td>
53
                 <td width="100"  v-if="dialysisSett.glucose==1">葡萄糖</td>
53
                 <td width="100"  v-if="dialysisSett.glucose==1">葡萄糖</td>
54
                 <td width="100"  v-if="dialysisSett.blood_flow_volume==1">血流量</td>
54
                 <td width="100"  v-if="dialysisSett.blood_flow_volume==1">血流量</td>
55
-                <td>封管液</td>
56
-                <td>促红</td>
55
+                <td v-if="org_id!=10587 && org_id!=0">封管液</td>
56
+                <td v-if="org_id!=10587 && org_id!=0">促红</td>
57
               </tr>
57
               </tr>
58
               </thead>
58
               </thead>
59
               <tbody>
59
               <tbody>
175
                    <span>{{item.dialysis_solution.blood_flow_volume?item.dialysis_solution.blood_flow_volume:""}}</span> 
175
                    <span>{{item.dialysis_solution.blood_flow_volume?item.dialysis_solution.blood_flow_volume:""}}</span> 
176
                 </td>
176
                 </td>
177
                 
177
                 
178
-                <td>
178
+                <td v-if="org_id!=10587 && org_id!=0">
179
                   <span v-if="getBloodAccessOption(item.dialysis_solution.blood_access).indexOf('导管')!==-1">1</span>
179
                   <span v-if="getBloodAccessOption(item.dialysis_solution.blood_access).indexOf('导管')!==-1">1</span>
180
                   <span v-else></span>
180
                   <span v-else></span>
181
                 </td>
181
                 </td>
182
                 
182
                 
183
                 
183
                 
184
-                <td>
184
+                <td v-if="org_id!=10587&& org_id!=0">
185
                   {{ item.advice_spc }}
185
                   {{ item.advice_spc }}
186
                 </td>
186
                 </td>
187
                </tr>
187
                </tr>

+ 2 - 2
src/xt_pages/dialysis/details/index.vue View File

2238
           newArr.sort(this.compare('created_time'))
2238
           newArr.sort(this.compare('created_time'))
2239
         }
2239
         }
2240
 
2240
 
2241
-        if(this.org_id ==10579 || this.org_id == 0){
2241
+        if(this.org_id ==10579 || this.org_id == 0 || this.org_id ==10587){
2242
           if(newArr!=null && newArr.length>0){
2242
           if(newArr!=null && newArr.length>0){
2243
             for(let i=0;i<newArr.length;i++){
2243
             for(let i=0;i<newArr.length;i++){
2244
               newArr[i].sort =0
2244
               newArr[i].sort =0
2417
           newArr.sort(this.compare('created_time'))
2417
           newArr.sort(this.compare('created_time'))
2418
         }
2418
         }
2419
 
2419
 
2420
-        if(this.org_id == 0 || this.org_id == 10579){
2420
+        if(this.org_id == 0 || this.org_id == 10579 || this.org_id ==10587){
2421
           if(newArr!=null && newArr.length>0){
2421
           if(newArr!=null && newArr.length>0){
2422
             for(let i=0;i<newArr.length;i++){
2422
             for(let i=0;i<newArr.length;i++){
2423
               newArr[i].sort =0
2423
               newArr[i].sort =0

+ 1 - 1
src/xt_pages/dialysis/details/indexs.vue View File

1419
           newArr.sort(this.compare('created_time'))
1419
           newArr.sort(this.compare('created_time'))
1420
         }
1420
         }
1421
 
1421
 
1422
-        if(this.org_id ==10579 || this.org_id == 0){
1422
+        if(this.org_id ==10579 || this.org_id == 0 || this.org_id ==10587){
1423
           if(newArr!=null && newArr.length>0){
1423
           if(newArr!=null && newArr.length>0){
1424
             for(let i=0;i<newArr.length;i++){
1424
             for(let i=0;i<newArr.length;i++){
1425
               newArr[i].sort =0
1425
               newArr[i].sort =0

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderFortySeven.vue View File

842
                         style="width: 100px; text-align: center"
842
                         style="width: 100px; text-align: center"
843
                       >
843
                       >
844
                         <span v-if="org_id == 10290 || org_id == 10318">{{
844
                         <span v-if="org_id == 10290 || org_id == 10318">{{
845
-                          lastafterdialysis.weight_after
845
+                          lastafterdialysis.weight_after?lastafterdialysis.weight_after:"/"
846
                         }}</span>
846
                         }}</span>
847
                         <span v-if="org_id != 10290 && org_id != 10318">{{
847
                         <span v-if="org_id != 10290 && org_id != 10318">{{
848
                           predialysis.weight_after_last_transparency
848
                           predialysis.weight_after_last_transparency

+ 4 - 4
src/xt_pages/role/admin.vue View File

25
         >医药师登记</el-button>
25
         >医药师登记</el-button>
26
 
26
 
27
 
27
 
28
-        <!-- <el-button
28
+        <el-button
29
           type="primary"
29
           type="primary"
30
           size="small"
30
           size="small"
31
           icon="el-icon-circle-plus-outline"
31
           icon="el-icon-circle-plus-outline"
32
           style="float:left"
32
           style="float:left"
33
-          @click="toJiaBan">加班</el-button> -->
33
+          @click="toJiaBan">加班</el-button>
34
        
34
        
35
 
35
 
36
          <!-- <el-button
36
          <!-- <el-button
214
           size="small"
214
           size="small"
215
           icon="el-icon-circle-plus-outline"
215
           icon="el-icon-circle-plus-outline"
216
           style="float:left"
216
           style="float:left"
217
-          @click="toAutoDrug">自动生成</el-button>
217
+          @click="toAutoDrug">自动生成</el-button> -->
218
 
218
 
219
 
219
 
220
           <el-button
220
           <el-button
222
           size="small"
222
           size="small"
223
           icon="el-icon-circle-plus-outline"
223
           icon="el-icon-circle-plus-outline"
224
           style="float:left"
224
           style="float:left"
225
-          @click="toAutoDiagnose">自动脚本</el-button> -->
225
+          @click="toAutoDiagnose">自动脚本</el-button>
226
      </div>
226
      </div>
227
 
227
 
228
 
228
 

+ 7 - 5
src/xt_pages/user/components/PatientDetail.vue View File

282
               </el-form-item>
282
               </el-form-item>
283
              </el-col>
283
              </el-col>
284
 
284
 
285
+             <el-col :span="8">
286
+                <el-form-item label="工作单位 : " prop="work">
287
+                  <el-input v-model="form.work" disabled></el-input>
288
+                </el-form-item>
289
+              </el-col>
290
+
285
              <el-col :span="24">
291
              <el-col :span="24">
286
               <el-form-item label="病历号 : " prop="record_number">
292
               <el-form-item label="病历号 : " prop="record_number">
287
                 <el-input
293
                 <el-input
750
                   </el-select>
756
                   </el-select>
751
                 </el-form-item>
757
                 </el-form-item>
752
               </el-col>
758
               </el-col>
753
-              <el-col :span="8">
754
-                <el-form-item label="工作单位 : " prop="work">
755
-                  <el-input v-model="form.work" disabled></el-input>
756
-                </el-form-item>
757
-              </el-col>
759
+          
758
               <el-col :span="8">
760
               <el-col :span="8">
759
                 <el-form-item label="单位地址 : " prop="unit_address">
761
                 <el-form-item label="单位地址 : " prop="unit_address">
760
                   <el-input v-model="form.unit_address" disabled></el-input>
762
                   <el-input v-model="form.unit_address" disabled></el-input>

+ 9 - 5
src/xt_pages/user/components/PatientForm.vue View File

333
                 </el-checkbox-group>
333
                 </el-checkbox-group>
334
               </el-form-item>
334
               </el-form-item>
335
             </el-col>
335
             </el-col>
336
+
337
+            <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
338
+                <el-form-item label="工作单位 : " prop="work">
339
+                  <el-input v-model="form.work"></el-input>
340
+                </el-form-item>
341
+            </el-col>
342
+
336
             
343
             
337
             <el-col :span="24">
344
             <el-col :span="24">
338
               <el-form-item label="病历号 : " prop="record_number">
345
               <el-form-item label="病历号 : " prop="record_number">
343
               </el-form-item>
350
               </el-form-item>
344
              </el-col>
351
              </el-col>
345
 
352
 
353
+            
346
              <el-col :span="24">
354
              <el-col :span="24">
347
               <el-form-item label="主管护士 : " prop="record_number">
355
               <el-form-item label="主管护士 : " prop="record_number">
348
                 <el-select v-model="form.nurse" style="width:200px">
356
                 <el-select v-model="form.nurse" style="width:200px">
791
                     </el-select>
799
                     </el-select>
792
                   </el-form-item>
800
                   </el-form-item>
793
                 </el-col>
801
                 </el-col>
794
-                <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
795
-                  <el-form-item label="工作单位 : " prop="work">
796
-                    <el-input v-model="form.work"></el-input>
797
-                  </el-form-item>
798
-                </el-col>
802
+                
799
                 <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
803
                 <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
800
                   <el-form-item label="单位地址 : " prop="unit_address">
804
                   <el-form-item label="单位地址 : " prop="unit_address">
801
                     <el-input v-model="form.unit_address"></el-input>
805
                     <el-input v-model="form.unit_address"></el-input>

+ 66 - 3
src/xt_pages/user/patients.vue View File

352
       
352
       
353
   
353
   
354
         <el-button type="primary" size="small" style="float:right" @click="toExport">导出</el-button>
354
         <el-button type="primary" size="small" style="float:right" @click="toExport">导出</el-button>
355
+        <el-button type="primary" size="small" style="float:right" @click="toExportOne">导出2</el-button>
355
       </div>
356
       </div>
356
       <div  class="cell clearfix">
357
       <div  class="cell clearfix">
357
 
358
 
740
 
741
 
741
 <script>
742
 <script>
742
   import { fetchAllAdminUsers } from "@/api/doctor";
743
   import { fetchAllAdminUsers } from "@/api/doctor";
743
-  import { code, EditLapseto, fetchList, getMaxDialysisNo, OpenView, postExportPatients,GetRemind,getPatientAllagic } from '@/api/patient'
744
+  import { code, EditLapseto, fetchList, getMaxDialysisNo, OpenView, postExportPatients,GetRemind,getPatientAllagic,getExportList } from '@/api/patient'
744
   import { generateLog } from '@/api/config'
745
   import { generateLog } from '@/api/config'
745
   import QRCode from 'qrcodejs2'
746
   import QRCode from 'qrcodejs2'
746
   import Vue from 'vue'
747
   import Vue from 'vue'
922
           patient_end_time:"",
923
           patient_end_time:"",
923
           nurse:"0"
924
           nurse:"0"
924
         },
925
         },
925
-        adminUserOptions:[]
926
+        adminUserOptions:[],
927
+        scheduleList:[],
928
+        patientsList:[]
926
       }
929
       }
927
     },
930
     },
928
     created() {
931
     created() {
942
       //获取
945
       //获取
943
       this.GetRemindPatientList()
946
       this.GetRemindPatientList()
944
       this.fetchAllAdminUsers();
947
       this.fetchAllAdminUsers();
948
+      this.getExportList()
945
     },
949
     },
946
 
950
 
947
     methods: {
951
     methods: {
952
+      getExportList(){
953
+        getExportList(this.listQuery).then(response=>{
954
+           if(response.data.state ==1){
955
+             this.scheduleList =  response.data.data.schedule
956
+             this.patientsList = response.data.data.patientsList
957
+           }
958
+        })
959
+      },
948
       fetchAllAdminUsers() {
960
       fetchAllAdminUsers() {
949
         fetchAllAdminUsers().then((response) => {
961
         fetchAllAdminUsers().then((response) => {
950
           if (response.data.state === 1) {
962
           if (response.data.state === 1) {
1513
         this.schedulType = scheduleType
1525
         this.schedulType = scheduleType
1514
         this.listQuery.schedul_type = scheduleType
1526
         this.listQuery.schedul_type = scheduleType
1515
         this.getList()
1527
         this.getList()
1528
+        this.getExportList()
1516
       },
1529
       },
1517
       selectSystemType(systemType) {
1530
       selectSystemType(systemType) {
1518
         this.systemType = systemType
1531
         this.systemType = systemType
1519
         this.listQuery.binding_state = systemType
1532
         this.listQuery.binding_state = systemType
1520
         this.getList()
1533
         this.getList()
1534
+        this.getExportList()
1521
       },
1535
       },
1522
       selectLapseTo(lapseto) {
1536
       selectLapseTo(lapseto) {
1523
         this.lapsetoType = lapseto
1537
         this.lapsetoType = lapseto
1524
         this.listQuery.lapseto = lapseto
1538
         this.listQuery.lapseto = lapseto
1525
         this.getList()
1539
         this.getList()
1540
+        this.getExportList()
1526
       },
1541
       },
1527
       selectSource(source) {
1542
       selectSource(source) {
1528
         this.sourceType = source
1543
         this.sourceType = source
1529
         this.listQuery.source = source
1544
         this.listQuery.source = source
1530
         this.getList()
1545
         this.getList()
1546
+        this.getExportList()
1531
       },
1547
       },
1532
       selectPatientSource(source){
1548
       selectPatientSource(source){
1533
         this.patientSoureType = source
1549
         this.patientSoureType = source
1534
         this.listQuery.patientSoureType = source
1550
         this.listQuery.patientSoureType = source
1535
         this.getList()
1551
         this.getList()
1552
+        this.getExportList()
1536
       },
1553
       },
1537
       changeTimeOne(val) {
1554
       changeTimeOne(val) {
1538
         var time = this.getTimestamp(val) - this.end_time
1555
         var time = this.getTimestamp(val) - this.end_time
1541
           this.listQuery.start_time = ''
1558
           this.listQuery.start_time = ''
1542
         } else {
1559
         } else {
1543
           this.getList()
1560
           this.getList()
1561
+          this.getExportList()
1544
           this.startTime = this.getTimestamp(val)
1562
           this.startTime = this.getTimestamp(val)
1545
         }
1563
         }
1546
       },
1564
       },
1551
           this.listQuery.end_time = ''
1569
           this.listQuery.end_time = ''
1552
         } else {
1570
         } else {
1553
           this.getList()
1571
           this.getList()
1572
+          this.getExportList()
1554
           this.end_time = this.getTimestamp(val)
1573
           this.end_time = this.getTimestamp(val)
1555
         }
1574
         }
1556
       },
1575
       },
1580
             console.log("wowowowo",this.tableData)
1599
             console.log("wowowowo",this.tableData)
1581
             this.pageTotal = this.tableData.length
1600
             this.pageTotal = this.tableData.length
1582
             this.total = response.data.data.total
1601
             this.total = response.data.data.total
1583
-
1602
+          
1584
           }
1603
           }
1585
         })
1604
         })
1586
       },
1605
       },
1800
     formatJson(filterVal, jsonData) {
1819
     formatJson(filterVal, jsonData) {
1801
       return jsonData.map(v => filterVal.map(j => v[j]));
1820
       return jsonData.map(v => filterVal.map(j => v[j]));
1802
     },
1821
     },
1822
+
1823
+    toExportOne(){
1824
+      import('@/vendor/Export2Excel').then(excel => {
1825
+
1826
+        console.log("hhhh323223",this.scheduleList)
1827
+        for(let i=0;i<this.scheduleList.length;i++){
1828
+          this.scheduleList[i].name = ""
1829
+          this.scheduleList[i].wort_unit = ""
1830
+            this.scheduleList[i].name = this.GetPatientName(this.scheduleList[i].patient_id)
1831
+            this.scheduleList[i].wort_unit = this.GetPatientWorkUnit(this.scheduleList[i].patient_id)
1832
+        }
1833
+
1834
+        const tHeader = ['姓名', '工作单位']
1835
+        const filterVal = ['name', 'wort_unit']
1836
+        console.log("table",this.scheduleList)
1837
+
1838
+        const data = this.formatJson(filterVal, this.scheduleList)
1839
+        excel.export_json_to_excel({
1840
+          header: tHeader,
1841
+          data,
1842
+          filename: '今日透析记录'
1843
+        })
1844
+        this.downloadLoading = false
1845
+     })
1846
+    },
1803
     tranAge(val) {
1847
     tranAge(val) {
1804
       if(val.birthday){
1848
       if(val.birthday){
1805
         var birth = uParseTime(val.birthday, '{y}-{m}-{d}');
1849
         var birth = uParseTime(val.birthday, '{y}-{m}-{d}');
1814
           this.patientAllgicList = list
1858
           this.patientAllgicList = list
1815
         }
1859
         }
1816
       })
1860
       })
1861
+    },
1862
+    GetPatientName(id){
1863
+       var name = ""
1864
+       for(let i=0;i<this.patientsList.length;i++){
1865
+          if(id == this.patientsList[i].id){
1866
+             name = this.patientsList[i].name
1867
+          }
1868
+       }
1869
+       return name
1870
+    },
1871
+    GetPatientWorkUnit(id){
1872
+      console.log("HHAHAHAH",this.patientsList)
1873
+      var work_unit =""
1874
+      for(let i=0;i<this.patientsList.length;i++){
1875
+          if(id == this.patientsList[i].id){
1876
+            work_unit = this.patientsList[i].work_unit
1877
+          }
1878
+       }
1879
+       return work_unit
1817
     }
1880
     }
1818
     }
1881
     }
1819
   }
1882
   }

+ 15 - 0
src/xt_pages/workforce/appointment.vue View File

68
       <div style="display:flex;align-items:center">
68
       <div style="display:flex;align-items:center">
69
         <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleAction" v-if="activeName !='historyWeek'">打印排班</el-button>
69
         <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleAction" v-if="activeName !='historyWeek'">打印排班</el-button>
70
         <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleActionOne" v-if="activeName == 'historyWeek'">打印排班</el-button>
70
         <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleActionOne" v-if="activeName == 'historyWeek'">打印排班</el-button>
71
+        <el-button type="primary" size="small" icon="el-icon-printer" @click="printScheduleActionTwo">治疗签到</el-button>
71
         <!-- <schedule-upload-excel style="margin-right:10px;" :on-success='handleSuccess' v-if="is_edit"></schedule-upload-excel> -->
72
         <!-- <schedule-upload-excel style="margin-right:10px;" :on-success='handleSuccess' v-if="is_edit"></schedule-upload-excel> -->
72
         <!-- <el-button @click="printTable" type="primary" size="small">打印排班</el-button> -->
73
         <!-- <el-button @click="printTable" type="primary" size="small">打印排班</el-button> -->
73
         <el-button v-if="isShow()" type="primary" size="small" @click="export_file()" :loading="downloadLoading">
74
         <el-button v-if="isShow()" type="primary" size="small" @click="export_file()" :loading="downloadLoading">
1005
 
1006
 
1006
       this.$router.push({path:'/scheduleTablePrintThree?partition_id='+partition_id+"&weekTime="+nextTwoWeek+"&week_date="+week_date+"&start_time="+start_time+"&end_time="+end_time})
1007
       this.$router.push({path:'/scheduleTablePrintThree?partition_id='+partition_id+"&weekTime="+nextTwoWeek+"&week_date="+week_date+"&start_time="+start_time+"&end_time="+end_time})
1007
     },
1008
     },
1009
+    printScheduleActionTwo:function(){
1010
+      var date = new Date().getTime()
1011
+      if(this.activeName == 'historyWeek'){
1012
+        date = date - 14 * 24 * 60 * 60 * 1000
1013
+      }else if (this.activeName == 'lastWeek') {
1014
+        date = date - 7 * 24 * 60 * 60 * 1000
1015
+      } else if (this.activeName == 'nextWeek') {
1016
+        date = date + 7 * 24 * 60 * 60 * 1000
1017
+      } else if (this.activeName == 'nextTwoWeek') {
1018
+        date = date + 14 * 24 * 60 * 60 * 1000
1019
+      }
1020
+       this.$router.push({path: '/scheduleTablePrintSix?partition_id=' + this.partition_id + "&weekTime=" + this.activeName+"&week_date="+this.week_date+"&schedule_type="+this.schedule_type})
1021
+      
1022
+    },
1008
     isShow() {
1023
     isShow() {
1009
       let isShow = false
1024
       let isShow = false
1010
       if (Object.keys(this.partitions).length != 0) {
1025
       if (Object.keys(this.partitions).length != 0) {