@opendesign-plus-test/components 0.0.1-rc.40 → 0.0.1-rc.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +2 -2
- package/dist/components/activity/index.d.ts +1 -1
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +2 -2
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +2 -2
- package/dist/components/meeting/components/OMeetingDetail.vue.d.ts +2 -1
- package/dist/components/meeting/types.d.ts +1 -1
- package/dist/components.cjs.js +36 -36
- package/dist/components.css +1 -1
- package/dist/components.es.js +10216 -10234
- package/package.json +3 -3
- package/src/components/activity/OActivityApproval.vue +10 -16
- package/src/components/activity/OActivityForm.vue +2 -9
- package/src/components/activity/OMyActivityCalendar.vue +6 -20
- package/src/components/events/OEventsList.vue +8 -0
- package/src/components/meeting/OMeetingCalendar.vue +5 -23
- package/src/components/meeting/OMeetingForm.vue +21 -2
- package/src/components/meeting/OMyMeetingCalendar.vue +2 -7
- package/src/components/meeting/components/OMeetingCalendarList.vue +88 -74
- package/src/components/meeting/components/OMeetingDetail.vue +3 -1
- package/src/components/meeting/config.ts +1 -12
- package/src/components/meeting/types.ts +1 -1
|
@@ -13,7 +13,6 @@ export enum CalendarDataType {
|
|
|
13
13
|
MEETING = 'meeting',
|
|
14
14
|
EVENTS = 'events',
|
|
15
15
|
SUMMIT = 'summit',
|
|
16
|
-
ACTIVITY = 'activity',
|
|
17
16
|
APPROVAL = 'approval'
|
|
18
17
|
}
|
|
19
18
|
|
|
@@ -111,6 +110,7 @@ export interface MeetingItemT extends MeetingPostT {
|
|
|
111
110
|
time: string; // 处理一下时间范围
|
|
112
111
|
cycle_sub: any[];
|
|
113
112
|
live_url?: string;
|
|
113
|
+
type: CalendarDataType;
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
export interface PageParamsT {
|