73 lines
1.8 KiB
JavaScript
73 lines
1.8 KiB
JavaScript
export const defaultState = {
|
|
general: {
|
|
name: { value: "", placeholder: "", isEdit: true },
|
|
medical_system_number: {
|
|
value: "",
|
|
placeholder: 1741025645,
|
|
isEdit: true,
|
|
},
|
|
expertise: { value: "", placeholder: "دندان پزشکی", isEdit: true },
|
|
description: { value: "", isEdit: true },
|
|
skills: { value: "", isEdit: true },
|
|
time_work: { value: "", isEdit: true },
|
|
degree: { value: "", isEdit: true },
|
|
},
|
|
office: {
|
|
address: { value: "مپ", isEdit: true },
|
|
phone: { value: "", placeholder: 1741025645, isEdit: true },
|
|
office_number1: { value: "", isEdit: true },
|
|
state: { value: "", isEdit: true },
|
|
city: { value: "", isEdit: true },
|
|
},
|
|
work_day: [
|
|
{
|
|
name: "شنبه",
|
|
number_turns: { value: 1, isEdit: true },
|
|
turn_time: "",
|
|
workplace: "",
|
|
morning_time: ["", ""],
|
|
evening_time: ["", ""],
|
|
},
|
|
{
|
|
name: "یکشنبه",
|
|
number_turns: { value: 1, isEdit: true },
|
|
turn_time: "",
|
|
workplace: "",
|
|
morning_time: ["", ""],
|
|
evening_time: ["", ""],
|
|
},
|
|
{
|
|
name: "دوشنبه",
|
|
number_turns: { value: 1, isEdit: true },
|
|
turn_time: "",
|
|
workplace: "",
|
|
morning_time: ["", ""],
|
|
evening_time: ["", ""],
|
|
},
|
|
{
|
|
name: "سه شنبه",
|
|
number_turns: { value: 1, isEdit: true },
|
|
turn_time: "",
|
|
workplace: "",
|
|
morning_time: ["", ""],
|
|
evening_time: ["", ""],
|
|
},
|
|
{
|
|
name: "چهار شنبه",
|
|
number_turns: { value: 1, isEdit: true },
|
|
turn_time: "",
|
|
workplace: "",
|
|
morning_time: ["", ""],
|
|
evening_time: ["", ""],
|
|
},
|
|
{
|
|
name: "پنج شنبه",
|
|
number_turns: { value: 1, isEdit: true },
|
|
turn_time: "",
|
|
workplace: "",
|
|
morning_time: ["", ""],
|
|
evening_time: ["", ""],
|
|
},
|
|
],
|
|
};
|