|
@@ -3,37 +3,36 @@
|
|
<el-dialog title="" :append-to-body="true" custom-class="selfDialog" center
|
|
<el-dialog title="" :append-to-body="true" custom-class="selfDialog" center
|
|
style="max-height: 100vh;overflow: hidden;" :close-on-click-modal="false" :visible.sync="dialogshow"
|
|
style="max-height: 100vh;overflow: hidden;" :close-on-click-modal="false" :visible.sync="dialogshow"
|
|
:show-close="false" :before-close="close">
|
|
:show-close="false" :before-close="close">
|
|
- <div class="bg-white centerY py-3" style="overflow: hidden;background-color: #409EFF;">
|
|
|
|
|
|
+ <div class="bg-white centerY py-3" style="overflow: hidden;background-color: #409EFF;" v-loading="loading"
|
|
|
|
+ element-loading-text="正在打印中..." element-loading-spinner="el-icon-loading"
|
|
|
|
+ element-loading-background="rgba(0, 0, 0, 0.8)">
|
|
<div class="w-30">
|
|
<div class="w-30">
|
|
<div class="text-center" style="z-index: 999;">
|
|
<div class="text-center" style="z-index: 999;">
|
|
<span
|
|
<span
|
|
- :class="['iconfont fs-40 d-inline-block bg-white p-1 text-primary', getIDCardInfo(patientInfo.idCard).sex == 1 ? 'touxiangnan' : 'touxiangnv']"
|
|
|
|
|
|
+ :class="['iconfont fs-40 d-inline-block bg-white p-1 text-primary', getIDCardInfo(patientInfo.idCard)?.sex == 1 ? 'touxiangnan' : 'touxiangnv']"
|
|
style="border-radius: 50%;"></span>
|
|
style="border-radius: 50%;"></span>
|
|
</div>
|
|
</div>
|
|
<!-- 个人信息 -->
|
|
<!-- 个人信息 -->
|
|
<div class="text-center text-white fs-16 mt-3 px-2">
|
|
<div class="text-center text-white fs-16 mt-3 px-2">
|
|
<div>
|
|
<div>
|
|
<span class="fs-18 "> {{ patientInfo.username }}</span>
|
|
<span class="fs-18 "> {{ patientInfo.username }}</span>
|
|
-
|
|
|
|
</div>
|
|
</div>
|
|
<div class="mt-1">
|
|
<div class="mt-1">
|
|
- <span class="ml-1" v-if="getIDCardInfo(patientInfo.idCard).age">
|
|
|
|
|
|
+ <span class="ml-1" v-if="getIDCardInfo(patientInfo.idCard)?.age">
|
|
{{ getIDCardInfo(patientInfo.idCard).age }}岁
|
|
{{ getIDCardInfo(patientInfo.idCard).age }}岁
|
|
</span>
|
|
</span>
|
|
<span class="ml-1" v-else>暂无年龄</span>
|
|
<span class="ml-1" v-else>暂无年龄</span>
|
|
- <span class="">{{ getIDCardInfo(patientInfo.idCard).sex == 1 ? '男' : '女' }}</span>
|
|
|
|
-
|
|
|
|
|
|
+ <span class="">{{ getIDCardInfo(patientInfo.idCard)?.sex == 1 ? '男' : '女' }}</span>
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
<div class="mt-1">
|
|
<div class="mt-1">
|
|
<span>{{ patientInfo.phone }}</span>
|
|
<span>{{ patientInfo.phone }}</span>
|
|
</div>
|
|
</div>
|
|
<div class="mt-1">
|
|
<div class="mt-1">
|
|
- <span class="ml-1"> {{ MEDICAL_INSURANCE_TYPE[patientInfo.medicalInsuranceType - 1].label }}</span>
|
|
|
|
|
|
+ <span class="ml-1"> {{ MEDICAL_INSURANCE_TYPE[patientInfo.medicalInsuranceType - 1]?.label }}</span>
|
|
</div>
|
|
</div>
|
|
<div class="mt-3">
|
|
<div class="mt-3">
|
|
<span class="el-tag1 fs-12 py-1">
|
|
<span class="el-tag1 fs-12 py-1">
|
|
- {{ CHRONIC_DISEASE_TYPE[patientInfo.chronicDiseaseType - 1].label }}
|
|
|
|
|
|
+ {{ CHRONIC_DISEASE_TYPE[patientInfo.chronicDiseaseType - 1]?.label }}
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<!-- <div>
|
|
<!-- <div>
|
|
@@ -60,7 +59,7 @@
|
|
style="height: 100%;box-sizing: border-box; border-top-left-radius: .9rem;border-bottom-left-radius: .9rem; box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 1), inset 0 0 0.4rem #fff, -1px -1px 0.4rem rgba(0, 0, 0, 0.3);background: rgb(247,252,252);">
|
|
style="height: 100%;box-sizing: border-box; border-top-left-radius: .9rem;border-bottom-left-radius: .9rem; box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 1), inset 0 0 0.4rem #fff, -1px -1px 0.4rem rgba(0, 0, 0, 0.3);background: rgb(247,252,252);">
|
|
<div class="userbox px-2" style="max-height:80vh;overflow: auto;">
|
|
<div class="userbox px-2" style="max-height:80vh;overflow: auto;">
|
|
<div class="fs-16 pt-2 text-right">
|
|
<div class="fs-16 pt-2 text-right">
|
|
- <el-button class="fs-12 py-2 px-4" type="primary">
|
|
|
|
|
|
+ <el-button class="fs-12 py-2 px-4" type="primary" @click="getPrinterList">
|
|
打印
|
|
打印
|
|
</el-button>
|
|
</el-button>
|
|
<el-button class="fs-12 py-2 px-4" type="danger" @click="close()">关闭({{ closeCount }}s)</el-button>
|
|
<el-button class="fs-12 py-2 px-4" type="danger" @click="close()">关闭({{ closeCount }}s)</el-button>
|
|
@@ -175,6 +174,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <Pinter :printerObj="printerObj" :printerData="printerData" @loadingclick="loadingclick()" />
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
@@ -184,8 +184,12 @@
|
|
import { getIDCardInfo, getAge } from '@/utils/common'
|
|
import { getIDCardInfo, getAge } from '@/utils/common'
|
|
import { CHRONIC_DISEASE_TYPE, MEDICAL_INSURANCE_TYPE } from '@/utils/const'
|
|
import { CHRONIC_DISEASE_TYPE, MEDICAL_INSURANCE_TYPE } from '@/utils/const'
|
|
import moment from 'moment'
|
|
import moment from 'moment'
|
|
|
|
+import { mapGetters } from 'vuex'
|
|
|
|
+import { ipcRenderer } from 'electron'
|
|
|
|
+import Pinter from '@/components/print'
|
|
export default {
|
|
export default {
|
|
name: 'Index',
|
|
name: 'Index',
|
|
|
|
+ components: { Pinter },
|
|
props: {
|
|
props: {
|
|
dialogshow: {
|
|
dialogshow: {
|
|
type: Boolean,
|
|
type: Boolean,
|
|
@@ -212,16 +216,35 @@ export default {
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
+ computed: {
|
|
|
|
+ ...mapGetters({
|
|
|
|
+ hospitalInfo: 'hospital/hospitalInfo'
|
|
|
|
+ }),
|
|
|
|
+ },
|
|
watch: {
|
|
watch: {
|
|
dialogshow(newValue, oldValue) {
|
|
dialogshow(newValue, oldValue) {
|
|
- console.log(1)
|
|
|
|
this.closeCount = 30
|
|
this.closeCount = 30
|
|
clearInterval(this.timer)
|
|
clearInterval(this.timer)
|
|
this.setCount()
|
|
this.setCount()
|
|
},
|
|
},
|
|
patientInfo(newValue, oldValue) {
|
|
patientInfo(newValue, oldValue) {
|
|
-
|
|
|
|
- console.log(newValue, oldValue)
|
|
|
|
|
|
+ let t = this
|
|
|
|
+ let obj = {
|
|
|
|
+ info:newValue,
|
|
|
|
+ hospitalInfo: t.hospitalInfo&&t.hospitalInfo.hospitalname?t.hospitalInfo:{ hospitalname: '测试医院' },
|
|
|
|
+ patientother:t.patientother,
|
|
|
|
+ patientvisit:t.patientvisit,
|
|
|
|
+ hospitalname:t.hospitalInfo?.hospitalname||'测试医院',
|
|
|
|
+ username: newValue.username,
|
|
|
|
+ sex: t.getIDCardInfo(newValue.idCard)?.sex == 1 ? '男' : '女',
|
|
|
|
+ age: t.getIDCardInfo(newValue.idCard)?.age+'岁' || '暂无年龄',
|
|
|
|
+ chronicDiseaseType: CHRONIC_DISEASE_TYPE[newValue.chronicDiseaseType - 1]?.label,
|
|
|
|
+ phone: newValue.phone,
|
|
|
|
+ medicalInsuranceType: t.MEDICAL_INSURANCE_TYPE[newValue.medicalInsuranceType - 1]?.label,
|
|
|
|
+ }
|
|
|
|
+ // console.log(obj)
|
|
|
|
+ t.printerData = obj
|
|
|
|
+ // console.log(newValue, oldValue)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
@@ -232,32 +255,52 @@ export default {
|
|
CHRONIC_DISEASE_TYPE,
|
|
CHRONIC_DISEASE_TYPE,
|
|
MEDICAL_INSURANCE_TYPE,
|
|
MEDICAL_INSURANCE_TYPE,
|
|
closeCount: 30,
|
|
closeCount: 30,
|
|
- timer:null
|
|
|
|
|
|
+ timer: null,
|
|
|
|
+ printerObj: {},
|
|
|
|
+ printerData:{},
|
|
|
|
+ loading: false,
|
|
|
|
+ i: 0
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- computed: {
|
|
|
|
-
|
|
|
|
- },
|
|
|
|
created() {
|
|
created() {
|
|
-
|
|
|
|
|
|
+ let t = this
|
|
|
|
+ ipcRenderer.on('getPrinterList', (event, data) => {
|
|
|
|
+ data.map((item) => {
|
|
|
|
+ if (item.isDefault) {
|
|
|
|
+ t.printerObj = item
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ })
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ // 获取打印机
|
|
|
|
+ getPrinterList() {
|
|
|
|
+ this.loading = true;
|
|
|
|
+ clearInterval(this.timer)
|
|
|
|
+ ipcRenderer.send('getPrinterList')
|
|
|
|
+ },
|
|
|
|
+ loadingclick() {
|
|
|
|
+ this.loading = false
|
|
|
|
+ },
|
|
close() {
|
|
close() {
|
|
clearInterval(this.timer)
|
|
clearInterval(this.timer)
|
|
this.$emit('close')
|
|
this.$emit('close')
|
|
},
|
|
},
|
|
- setCount(){
|
|
|
|
- let t=this
|
|
|
|
- this.timer=setInterval(()=>{
|
|
|
|
- if(t.closeCount<=0){
|
|
|
|
|
|
+ setCount() {
|
|
|
|
+ let t = this
|
|
|
|
+ if (process.env.NODE_ENV === "development") {
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ this.timer = setInterval(() => {
|
|
|
|
+ if (t.closeCount <= 1) {
|
|
clearInterval(t.timer)
|
|
clearInterval(t.timer)
|
|
- setTimeout(()=>{
|
|
|
|
|
|
+ setTimeout(() => {
|
|
this.$emit('close')
|
|
this.$emit('close')
|
|
- },500)
|
|
|
|
- }else{
|
|
|
|
- t.closeCount = t.closeCount-1
|
|
|
|
|
|
+ }, 500)
|
|
|
|
+ } else {
|
|
|
|
+ t.closeCount = t.closeCount - 1
|
|
}
|
|
}
|
|
- },1000)
|
|
|
|
|
|
+ }, 1000)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|