pengjun 1 year ago
parent
commit
e9c7bd47c5
  1. 9
      public/electron/windows/latest.yml
  2. 0
      public/electron/windows/readme.md
  3. BIN
      public/electron/windows/shentun_0.3.5.exe
  4. BIN
      public/electron/windows/shentun_0.3.5.exe.blockmap
  5. 2
      public/sysConfig.json
  6. 10
      src/components/patientRegister/PatientRegisterList.vue

9
public/electron/windows/latest.yml

@ -0,0 +1,9 @@
version: 0.3.5
files:
- url: shentun_0.3.5.exe
sha512: MA5V3NabKv2axJuFvih1vJ36b3gDx/6AUnam7YcZUtzSKeXBMK5BXpiiggoSWlvJY7opkB/aLGssxmXuvrM6bw==
size: 132509010
path: shentun_0.3.5.exe
sha512: MA5V3NabKv2axJuFvih1vJ36b3gDx/6AUnam7YcZUtzSKeXBMK5BXpiiggoSWlvJY7opkB/aLGssxmXuvrM6bw==
releaseNotes: 增加报表、读卡、摄像头拍照接口
releaseDate: '2024-07-11T03:42:25.810Z'

0
public/electron/readme.md → public/electron/windows/readme.md

BIN
public/electron/windows/shentun_0.3.5.exe

BIN
public/electron/windows/shentun_0.3.5.exe.blockmap

2
public/sysConfig.json

@ -1,4 +1,4 @@
{
"apiurl": "http://192.168.2.67:9529",
"apiurl": "http://140.143.162.39:9529",
"softName": "神豚体检管理系统"
}

10
src/components/patientRegister/PatientRegisterList.vue

@ -690,7 +690,7 @@ export default {
for (let i = 0; i < this.multipleSelection.length; i++) {
let row = this.multipleSelection[i]
try {
await printGuideLisPacs(row)
await this.printGuideLisPacs(row)
} catch (error) {
console.log('printPromise', error)
}
@ -986,6 +986,7 @@ export default {
this.dataTransOpts.tableS.patient_register.id = ''
this.tableDataCurrentRow = {} //
this.tableData = []
setTimeout(() => {
this.dataTransOpts.refresh.register_check_asbitem.M++ //
}, 10);
@ -1034,8 +1035,11 @@ export default {
if (this.patientRegister.query.patientName)
body.patientName = this.patientRegister.query.patientName;
if (this.patientRegister.query.completeFlag)
body.completeFlag = this.patientRegister.query.completeFlag;
if (this.patientRegister.query.medicalTypeIds && this.patientRegister.query.medicalTypeIds.length > 0)
body.medicalTypeIds = this.patientRegister.query.medicalTypeIds;
if (this.patientRegister.query.completeFlags && this.patientRegister.query.completeFlags.length > 0)
body.completeFlags = this.patientRegister.query.completeFlags;
//StartDate EndDate
if (

Loading…
Cancel
Save