pengjun 4 months ago
parent
commit
60fb6a321f
  1. 2
      public/sysConfig.json
  2. 6
      src/components/doctorCheck/PatientRegisterList.vue
  3. 4
      src/components/doctorCheck/QueueCheckList.vue

2
public/sysConfig.json

@ -1,5 +1,5 @@
{
"apiurl": "http://192.168.0.188:9530",
"apiurl": "http://192.168.0.188:9527",
"softName": "神豚体检管理系统",
"pacsApi": "http://192.168.0.188:9530",
"dcmViewers": "https://app.mzaktj.com:4436",

6
src/components/doctorCheck/PatientRegisterList.vue

@ -101,8 +101,8 @@
</template>
</el-table-column>
<el-table-column prop="patientName" label="姓名" width="80" sortable align="center" show-overflow-tooltip/>
<el-table-column prop="sexName" label="性别" sortable align="center" />
<el-table-column prop="age" label="年龄" width="40" align="center" />
<el-table-column prop="sexName" label="性别" width="50" sortable align="center" />
<el-table-column prop="age" label="年龄" width="50" align="center" sortable/>
<el-table-column prop="customerOrgName" label="部门" width="100" sortable show-overflow-tooltip>
<template slot-scope="scope">
<div>{{ scope.row.customerOrgParentName ? scope.row.customerOrgName : "" }}</div>
@ -122,7 +122,7 @@
</template>
</el-table-column>
<el-table-column prop="nationName" label="民族" sortable align="center" show-overflow-tooltip/>
<el-table-column prop="idNo" label="身份证" sortable width="180" align="center" show-overflow-tooltip/>
<el-table-column prop="idNo" label="身份证" sortable width="160" align="center" show-overflow-tooltip/>
<el-table-column prop="birthDate" label="出生日期" align="center" width="100">
<template slot-scope="scope">
<div v-if="scope.row.birthDate">

4
src/components/doctorCheck/QueueCheckList.vue

@ -423,6 +423,7 @@ export default {
RepatPlayNum: this.queue_play_voice_repeate_times,
Delay: this.queue_play_voice_repeate_interval,
};
console.log("叫号 this.$peisAPI.speechSendText",toOutShell)
return this.$peisAPI.speechSendText(JSON.stringify(toOutShell));
})
.catch((err) => {
@ -563,6 +564,7 @@ export default {
this.waitRow = row;
this.queueParams = {
patientRegisterId: row.patientRegisterId,
patientName:row.patientName
};
},
@ -571,6 +573,7 @@ export default {
this.alreadyRow = row;
this.queueParams = {
patientRegisterId: row.patientRegisterId,
patientName:row.patientName
};
},
@ -583,6 +586,7 @@ export default {
rClick(row, column, event) {
this.queueParams = {
patientRegisterId: row.patientRegisterId,
patientName:row.patientName,
state: row.state,
queueRegisterId: row.queueRegisterId
};

Loading…
Cancel
Save