|
@@ -352,6 +352,7 @@
|
352
|
352
|
|
353
|
353
|
|
354
|
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
|
356
|
</div>
|
356
|
357
|
<div class="cell clearfix">
|
357
|
358
|
|
|
@@ -740,7 +741,7 @@
|
740
|
741
|
|
741
|
742
|
<script>
|
742
|
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
|
745
|
import { generateLog } from '@/api/config'
|
745
|
746
|
import QRCode from 'qrcodejs2'
|
746
|
747
|
import Vue from 'vue'
|
|
@@ -922,7 +923,9 @@
|
922
|
923
|
patient_end_time:"",
|
923
|
924
|
nurse:"0"
|
924
|
925
|
},
|
925
|
|
- adminUserOptions:[]
|
|
926
|
+ adminUserOptions:[],
|
|
927
|
+ scheduleList:[],
|
|
928
|
+ patientsList:[]
|
926
|
929
|
}
|
927
|
930
|
},
|
928
|
931
|
created() {
|
|
@@ -942,9 +945,18 @@
|
942
|
945
|
//获取
|
943
|
946
|
this.GetRemindPatientList()
|
944
|
947
|
this.fetchAllAdminUsers();
|
|
948
|
+ this.getExportList()
|
945
|
949
|
},
|
946
|
950
|
|
947
|
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
|
960
|
fetchAllAdminUsers() {
|
949
|
961
|
fetchAllAdminUsers().then((response) => {
|
950
|
962
|
if (response.data.state === 1) {
|
|
@@ -1513,26 +1525,31 @@
|
1513
|
1525
|
this.schedulType = scheduleType
|
1514
|
1526
|
this.listQuery.schedul_type = scheduleType
|
1515
|
1527
|
this.getList()
|
|
1528
|
+ this.getExportList()
|
1516
|
1529
|
},
|
1517
|
1530
|
selectSystemType(systemType) {
|
1518
|
1531
|
this.systemType = systemType
|
1519
|
1532
|
this.listQuery.binding_state = systemType
|
1520
|
1533
|
this.getList()
|
|
1534
|
+ this.getExportList()
|
1521
|
1535
|
},
|
1522
|
1536
|
selectLapseTo(lapseto) {
|
1523
|
1537
|
this.lapsetoType = lapseto
|
1524
|
1538
|
this.listQuery.lapseto = lapseto
|
1525
|
1539
|
this.getList()
|
|
1540
|
+ this.getExportList()
|
1526
|
1541
|
},
|
1527
|
1542
|
selectSource(source) {
|
1528
|
1543
|
this.sourceType = source
|
1529
|
1544
|
this.listQuery.source = source
|
1530
|
1545
|
this.getList()
|
|
1546
|
+ this.getExportList()
|
1531
|
1547
|
},
|
1532
|
1548
|
selectPatientSource(source){
|
1533
|
1549
|
this.patientSoureType = source
|
1534
|
1550
|
this.listQuery.patientSoureType = source
|
1535
|
1551
|
this.getList()
|
|
1552
|
+ this.getExportList()
|
1536
|
1553
|
},
|
1537
|
1554
|
changeTimeOne(val) {
|
1538
|
1555
|
var time = this.getTimestamp(val) - this.end_time
|
|
@@ -1541,6 +1558,7 @@
|
1541
|
1558
|
this.listQuery.start_time = ''
|
1542
|
1559
|
} else {
|
1543
|
1560
|
this.getList()
|
|
1561
|
+ this.getExportList()
|
1544
|
1562
|
this.startTime = this.getTimestamp(val)
|
1545
|
1563
|
}
|
1546
|
1564
|
},
|
|
@@ -1551,6 +1569,7 @@
|
1551
|
1569
|
this.listQuery.end_time = ''
|
1552
|
1570
|
} else {
|
1553
|
1571
|
this.getList()
|
|
1572
|
+ this.getExportList()
|
1554
|
1573
|
this.end_time = this.getTimestamp(val)
|
1555
|
1574
|
}
|
1556
|
1575
|
},
|
|
@@ -1580,7 +1599,7 @@
|
1580
|
1599
|
console.log("wowowowo",this.tableData)
|
1581
|
1600
|
this.pageTotal = this.tableData.length
|
1582
|
1601
|
this.total = response.data.data.total
|
1583
|
|
-
|
|
1602
|
+
|
1584
|
1603
|
}
|
1585
|
1604
|
})
|
1586
|
1605
|
},
|
|
@@ -1800,6 +1819,31 @@
|
1800
|
1819
|
formatJson(filterVal, jsonData) {
|
1801
|
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
|
1847
|
tranAge(val) {
|
1804
|
1848
|
if(val.birthday){
|
1805
|
1849
|
var birth = uParseTime(val.birthday, '{y}-{m}-{d}');
|
|
@@ -1814,6 +1858,25 @@
|
1814
|
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
|
}
|