@opendesign-plus-test/components 0.0.1-rc.58 → 0.0.1-rc.59
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/package.json
CHANGED
|
@@ -376,7 +376,7 @@ const changeIntervalType = () => {
|
|
|
376
376
|
};
|
|
377
377
|
|
|
378
378
|
const changeIsCycle = () => {
|
|
379
|
-
form.value.platform = '
|
|
379
|
+
form.value.platform = typeOptions.value.find(v => (v.value as unknown as string).toLowerCase() === 'welink')?.value as unknown as string || 'WeLink';
|
|
380
380
|
};
|
|
381
381
|
|
|
382
382
|
const { lePadV } = useScreen();
|
|
@@ -37,7 +37,7 @@ export interface OptionItemT {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
export type PlatformT = 'welink' | 'tencent' | 'zoom' | 'WELINK' | 'TENCENT' | 'ZOOM';
|
|
40
|
+
export type PlatformT = 'welink' | 'tencent' | 'zoom' | 'WELINK' | 'TENCENT' | 'ZOOM' | 'WeLink' | 'Tencent';
|
|
41
41
|
|
|
42
42
|
export enum MeetingGroupType {
|
|
43
43
|
SIG = 'sig',
|
|
@@ -63,7 +63,7 @@ export interface MeetingPostT {
|
|
|
63
63
|
topic: string; // 会议主题 128
|
|
64
64
|
sponsor?: string; // 会议发起人 20
|
|
65
65
|
group_name: string; // 所属SIG 64
|
|
66
|
-
platform: PlatformT; // 会议平台
|
|
66
|
+
platform: PlatformT | string; // 会议平台
|
|
67
67
|
date: string; // 会议日期
|
|
68
68
|
date_range?: string[]; // 日期返回
|
|
69
69
|
time: string; // 会议时间
|