pengjun 1 year ago
parent
commit
16295b8b15
  1. 1525
      src/components/doctorCheck/PacsCutPic.vue
  2. 5
      src/components/patientRegister/PatientRegisterList.vue
  3. 2
      src/main.js

1525
src/components/doctorCheck/PacsCutPic.vue
File diff suppressed because it is too large
View File

5
src/components/patientRegister/PatientRegisterList.vue

@ -1296,6 +1296,7 @@ export default {
this.dialogEditMedicalStartDate = true this.dialogEditMedicalStartDate = true
}, },
//
btnEditMedicalStartDate() { btnEditMedicalStartDate() {
let body = { let body = {
//"completeFlag": "string", //"completeFlag": "string",
@ -1305,7 +1306,7 @@ export default {
this.multipleSelection.forEach(e => { this.multipleSelection.forEach(e => {
body.patientRegisterIds.push(e.id) body.patientRegisterIds.push(e.id)
}); });
postapi('/api/app/patientregister/updatepatientregistercompleteflagormedicalstartdate',body)
postapi('/api/app/PatientRegister/UpdatePatientRegisterMedicalStartDate',body)
.then(res => { .then(res => {
if(res.code > -1){ if(res.code > -1){
let lfind = 0 let lfind = 0
@ -1314,7 +1315,7 @@ export default {
lfind = arrayExistObj(this.tableData,'id',e.id) lfind = arrayExistObj(this.tableData,'id',e.id)
if(lfind > -1) this.tableData.medicalStartDate = body.medicalStartDate if(lfind > -1) this.tableData.medicalStartDate = body.medicalStartDate
}); });
this.editMedicalStartDate = false
this.dialogEditMedicalStartDate = false
} }
}) })
}, },

2
src/main.js

@ -96,6 +96,8 @@ new Vue({
}).$mount("#app"); }).$mount("#app");
//监听页面大小改变 //监听页面大小改变
window.addEventListener('resize', onResize); window.addEventListener('resize', onResize);

Loading…
Cancel
Save