|
@@ -445,7 +445,7 @@
|
445
|
445
|
title="打印"
|
446
|
446
|
:visible.sync="listVisible"
|
447
|
447
|
>
|
448
|
|
- <listPrint :paramsObj='paramsObj'></listPrint>
|
|
448
|
+ <listPrint ref="checklists" :paramsObj='paramsObj' :key="jgFileTimer"></listPrint>
|
449
|
449
|
</el-dialog>
|
450
|
450
|
|
451
|
451
|
<el-dialog
|
|
@@ -625,7 +625,6 @@ import BreadCrumb from '@/xt_pages/components/bread-crumb'
|
625
|
625
|
import { getDoctorList, getExportConsumeDetailList, getHisOrderList, Refund } from '@/api/his/his'
|
626
|
626
|
import { ModifyFapiaoCode } from '@/api/his/his_tools'
|
627
|
627
|
|
628
|
|
-
|
629
|
628
|
// import NewStatementPrint from './newStatementPrint'
|
630
|
629
|
import { adminMainView} from "@/api/role/admin";
|
631
|
630
|
import NewStatementPrint from './statementPrint.vue'
|
|
@@ -667,7 +666,7 @@ export default {
|
667
|
666
|
listPrint,
|
668
|
667
|
allListPrint,
|
669
|
668
|
invoicePrint,
|
670
|
|
- settlementPrint
|
|
669
|
+ settlementPrint,
|
671
|
670
|
},
|
672
|
671
|
data() {
|
673
|
672
|
return {
|
|
@@ -729,9 +728,7 @@ export default {
|
729
|
728
|
patienttypeArr:[{value:1,label:'血透患者'},{value:2,label:'慢病患者'},{value:3,label:'会员患者'},
|
730
|
729
|
{value:4,label:'腹透患者'},{value:5,label:'CKD患者'},{value:6,label:'其他患者'}
|
731
|
730
|
],
|
732
|
|
- // paramsObj3:{
|
733
|
|
- // id:''
|
734
|
|
- // }
|
|
731
|
+ jgFileTimer:''
|
735
|
732
|
}
|
736
|
733
|
},
|
737
|
734
|
|
|
@@ -4037,6 +4034,7 @@ export default {
|
4037
|
4034
|
getTimes(time) {
|
4038
|
4035
|
return uParseTime(time, '{y}-{m}-{d}')
|
4039
|
4036
|
},
|
|
4037
|
+
|
4040
|
4038
|
toDetail(row) {
|
4041
|
4039
|
this.$router.push(
|
4042
|
4040
|
'/outpatientCharges/summaryDetail?patient_id=' +
|
|
@@ -4090,13 +4088,14 @@ export default {
|
4090
|
4088
|
})
|
4091
|
4089
|
},
|
4092
|
4090
|
open(row) {
|
4093
|
|
- console.log('row',row);
|
4094
|
|
- this.paramsObj.id = row.id
|
4095
|
|
- // if (index == 1) {
|
4096
|
|
- this.listVisible = true
|
4097
|
|
- // } else if (index == 2) {
|
4098
|
|
- // this.allListVisible = true
|
4099
|
|
- // }
|
|
4091
|
+ this.paramsObj.id =''
|
|
4092
|
+ console.log('row',(row.id).toString());
|
|
4093
|
+ const id = (row.id).toString()
|
|
4094
|
+ this.paramsObj.id = id
|
|
4095
|
+ this.jgFileTimer = new Date().getTime()
|
|
4096
|
+ console.log('this.paramsObj.id',this.paramsObj.id);
|
|
4097
|
+ this.listVisible = true
|
|
4098
|
+
|
4100
|
4099
|
}, unique(array) {
|
4101
|
4100
|
// res用来存储结果
|
4102
|
4101
|
var res = []
|
|
@@ -4185,7 +4184,8 @@ export default {
|
4185
|
4184
|
|
4186
|
4185
|
|
4187
|
4186
|
}
|
4188
|
|
- }
|
|
4187
|
+ },
|
|
4188
|
+
|
4189
|
4189
|
}
|
4190
|
4190
|
</script>
|
4191
|
4191
|
<style lang="scss">
|