|
|
|
@ -40,7 +40,8 @@ |
|
|
|
</div> |
|
|
|
<div style="display: flex"> |
|
|
|
<div style="margin: -6px 0 0 1px"> |
|
|
|
<el-checkbox v-model="item.isPrintTrans" @change="btnSavePic" :disabled="doctorBtnDisabled('btnSavePic')"></el-checkbox> |
|
|
|
<el-checkbox v-model="item.isPrintTrans" @change="btnSavePic" |
|
|
|
:disabled="doctorBtnDisabled('btnSavePic')"></el-checkbox> |
|
|
|
</div> |
|
|
|
<div style="font-size: 12px; margin: -2px 0 0 1px">打印</div> |
|
|
|
<div style="font-size: 15px; margin: -5px 0 0 2px"> |
|
|
|
@ -195,7 +196,29 @@ export default { |
|
|
|
this.$message.warning({ showClose: true, message: "未选中组合项目!" }); |
|
|
|
return; |
|
|
|
} |
|
|
|
console.log("采图,开发中……"); |
|
|
|
if (!this.$peisAPI) { |
|
|
|
this.$message.info({ showClose: true, message: "此功能,需要在壳客户端才可运行!" }) |
|
|
|
return |
|
|
|
} |
|
|
|
|
|
|
|
let toOutShell = { |
|
|
|
barCode: this.doctorCheck.checkRequestNo, |
|
|
|
patientName: this.dataTransOpts.tableS.patient_register.patientName, |
|
|
|
sexName: this.dataTransOpts.tableS.patient_register.sexName, |
|
|
|
age: (this.dataTransOpts.tableS.patient_register.age||'') + '', |
|
|
|
asbitemName: this.doctorCheck.asbitemName |
|
|
|
} |
|
|
|
console.log('this.$peisAPI.imageAcquisition',JSON.stringify(toOutShell)) |
|
|
|
this.$peisAPI.imageAcquisition(JSON.stringify(toOutShell)).then(res => { |
|
|
|
let lres = JSON.parse(res) |
|
|
|
if (lres.code > -1) { |
|
|
|
console.log(lres.data) |
|
|
|
} |
|
|
|
console.log('lres', lres) |
|
|
|
}).catch(err => { |
|
|
|
this.$message.error(err) |
|
|
|
}) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
//导图(上传图片) |
|
|
|
|