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

2
package.json

@ -25,7 +25,7 @@
"sortablejs": "^1.15.0",
"vue": "^2.6.14",
"vue-contextmenujs": "^1.4.9",
"vue-img-cutter": "^3.0.5",
"vue-img-cutter": "^3.0.5",
"vue-json-excel": "^0.3.0",
"vue-meta": "^2.4.0",
"vue-print-nb": "^1.7.5",

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
},
//
btnEditMedicalStartDate() {
let body = {
//"completeFlag": "string",
@ -1305,7 +1306,7 @@ export default {
this.multipleSelection.forEach(e => {
body.patientRegisterIds.push(e.id)
});
postapi('/api/app/patientregister/updatepatientregistercompleteflagormedicalstartdate',body)
postapi('/api/app/PatientRegister/UpdatePatientRegisterMedicalStartDate',body)
.then(res => {
if(res.code > -1){
let lfind = 0
@ -1314,7 +1315,7 @@ export default {
lfind = arrayExistObj(this.tableData,'id',e.id)
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");
//监听页面大小改变
window.addEventListener('resize', onResize);

Loading…
Cancel
Save