Browse Source

reportPrint

master
pengjun 11 months ago
parent
commit
83e0569f47
  1. 2
      src/components/doctorCheck/PacsImgPreview.vue
  2. 2
      src/components/report/PatientRegisterListNobtn.vue
  3. 6
      src/components/report/PatientRegisterQueryNobtn.vue
  4. 1
      src/store/index.js

2
src/components/doctorCheck/PacsImgPreview.vue

@ -6,7 +6,7 @@
<div style="
position: relative;
font-size: 24px;
margin: -6px 0 0 55px;
margin: -6px 0 0 95px;
height: 30px;
z-index: 2;
">

2
src/components/report/PatientRegisterListNobtn.vue

@ -350,7 +350,7 @@ export default {
if (this.patientRegister.query.phone) body.phone = this.patientRegister.query.phone
if (this.patientRegister.query.completeFlag) body.completeFlag = this.patientRegister.query.completeFlag
if (this.patientRegister.query.isAudit) body.isAudit = this.patientRegister.query.isAudit
if (this.patientRegister.query.reportPrintTimes >= 0) body.isReportPrint = this.patientRegister.query.reportPrintTimes
if (this.patientRegister.query.isReportPrint) body.isReportPrint = this.patientRegister.query.isReportPrint
if (this.patientRegister.query.isUpload) body.isUpload = this.patientRegister.query.isUpload
if (this.patientRegister.query.medicalTypeIds) body.medicalTypeIds = this.patientRegister.query.medicalTypeIds
if (this.patientRegister.query.personnelTypeId) body.personnelTypeId = this.patientRegister.query.personnelTypeId

6
src/components/report/PatientRegisterQueryNobtn.vue

@ -79,10 +79,10 @@
</div>
<div class="query">
<span class="spanClass">打印</span>
<el-select v-model="patientRegister.query.reportPrintTimes" placeholder="请选择" clearable style="width: 75px"
<el-select v-model="patientRegister.query.isReportPrint" placeholder="请选择" clearable style="width: 75px"
size="small">
<el-option label="未打印" value=0 />
<el-option label="已打印" value=1 />
<el-option label="未打印" value="N" />
<el-option label="已打印" value="Y" />
</el-select>
</div>
<div class="query">

1
src/store/index.js

@ -212,6 +212,7 @@ export default new Vuex.Store({
patientName: '', //姓名
sex: '', //性别
idCardNo: '', //身份证号
isReportPrint:'', // 报告是否打印
isSeries: 'N',
isSmsComplete: "N",
isPhoneComplete: "N",

Loading…
Cancel
Save