diff --git a/src/views/enterprise_management/user_practitioner/edit.vue b/src/views/enterprise_management/user_practitioner/edit.vue index 3dc01fb..198a93f 100644 --- a/src/views/enterprise_management/user_practitioner/edit.vue +++ b/src/views/enterprise_management/user_practitioner/edit.vue @@ -950,7 +950,6 @@ const fnGetData = async () => { if (!USER_ID) return; const resData = await getPractitionerForEdit({ USER_ID }); const form = resData.pd; - console.log(resData); form.PASSWORD = "Aa@123456"; form.periodStr = resData.periodStr; form.ISSTUDENT = resData.pd.ISSTUDENT.toString(); @@ -1012,13 +1011,12 @@ const fnGetData = async () => { } }); data.form = { ...data.form, ...form }; - if(!data.form.DUTIES_NAME || !data.form.DUTIES_NAME === '') { - data.form.DUTIES = ''; + if (!data.form.DUTIES_NAME || !data.form.DUTIES_NAME === "") { + data.form.DUTIES = ""; } - if(!data.form.TITLE_NAME || !data.form.TITLE_NAME === '') { - data.form.TITLE = ''; + if (!data.form.TITLE_NAME || !data.form.TITLE_NAME === "") { + data.form.TITLE = ""; } - console.log(data.form); }; fnGetData(); const fnGetUserRole = async () => { @@ -1058,7 +1056,6 @@ const fnChangeSchedulingTwo = () => { const fnGetUserCurrentShiftList = async (SHIFTWORKRULES_ID) => { const resData = await getUserCurrentShiftList({ SHIFTWORKRULES_ID }); data.periodList = resData.varList; - console.log(data.periodList); }; const fnChangePeriod = (event) => { for (let i = 0; i < data.periodList.length; i++) {