Browse Source

出诊设置 排班是否允许重合接口

pull/15/head
longchao 3 weeks ago
parent
commit
c1157623cc
  1. 7
      src/views/DoctorInformation.vue
  2. 4
      src/views/HosInformation.vue

7
src/views/DoctorInformation.vue

@ -356,7 +356,7 @@ export default {
fd.append('first_visit_audit', siteForm.first_visit_audit) fd.append('first_visit_audit', siteForm.first_visit_audit)
fd.append('approver_phone', siteForm.approver_phone) fd.append('approver_phone', siteForm.approver_phone)
this.setApproverWechat(fd) this.setApproverWechat(fd)
}, },
setApproverWechat(param) { setApproverWechat(param) {
this.$http('POST', '/api/admin/set_doctor_approver', param).then(response => { this.$http('POST', '/api/admin/set_doctor_approver', param).then(response => {
if (response.code != 0) { if (response.code != 0) {
@ -400,8 +400,9 @@ export default {
return return
} }
this.$http('POST', '/api/admin/set_doctor_approver', { this.$http('POST', '/api/admin/set_allow_coincide', {
is_allow_coincide:this.siteForm.is_allow_coincide is_allow_coincide:this.siteForm.is_allow_coincide,
did: this.doctorId
}).then(response => { }).then(response => {
if (response.code != 0) { if (response.code != 0) {
this.$message.error(response.msg) this.$message.error(response.msg)

4
src/views/HosInformation.vue

@ -1138,7 +1138,7 @@ export default {
...mapState(['hosMenuData']) // VuexshowSidebar ...mapState(['hosMenuData']) // VuexshowSidebar
}, },
methods: { methods: {
// - // -
handleVisitCancel() { handleVisitCancel() {
this.handleVisitClose() this.handleVisitClose()
@ -2377,7 +2377,7 @@ export default {
hasScheduleData(dateString) { hasScheduleData(dateString) {
return !!this.getDateSchedule(dateString); return !!this.getDateSchedule(dateString);
}, },
// //
getWorkTimeDesc(plan) { getWorkTimeDesc(plan) {
const planMap = { const planMap = {

Loading…
Cancel
Save