WIP Исправила event create
This commit is contained in:
@@ -319,18 +319,22 @@ export default {
|
||||
start: this.mergeDate(this.eventDate, this.startTime),
|
||||
end: this.mergeDate(this.eventDate, this.endTime),
|
||||
kind: this.kind,
|
||||
employees: this.findPerson(
|
||||
this.ownersData,
|
||||
this.ownersList,
|
||||
this.employees,
|
||||
"employee"
|
||||
),
|
||||
members: this.findPerson(
|
||||
this.membersData,
|
||||
this.membersList,
|
||||
this.members,
|
||||
"person"
|
||||
),
|
||||
employees: [
|
||||
this.findPerson(
|
||||
this.ownersData,
|
||||
this.ownersList,
|
||||
this.employees,
|
||||
"employee"
|
||||
),
|
||||
],
|
||||
members: [
|
||||
this.findPerson(
|
||||
this.membersData,
|
||||
this.membersList,
|
||||
this.members,
|
||||
"person"
|
||||
),
|
||||
],
|
||||
};
|
||||
this.postCreateEvent(this.eventData);
|
||||
this.clearForm();
|
||||
|
||||
@@ -356,6 +356,7 @@ export default {
|
||||
<style lang="sass" scoped>
|
||||
.schedule
|
||||
position: relative
|
||||
border-top-left-radius: 4px
|
||||
background-color: var(--default-white)
|
||||
width: calc(100% - (var(--sidebar-width) + 8px))
|
||||
height: calc(100vh - 56px - 8px)
|
||||
|
||||
Reference in New Issue
Block a user