@opendesign-plus-test/components 0.0.1-rc.19 → 0.0.1-rc.20
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/events/config.d.ts +13 -12
- package/dist/components.cjs.js +3 -3
- package/dist/components.es.js +1827 -1827
- package/package.json +1 -1
- package/src/assets/events/city/beijing.jpg +0 -0
- package/src/assets/events/city/chengdu.jpg +0 -0
- package/src/assets/events/city/default-cover.jpg +0 -0
- package/src/assets/events/city/guangzhou.jpg +0 -0
- package/src/assets/events/city/hangzhou.jpg +0 -0
- package/src/assets/events/city/nanjing.jpg +0 -0
- package/src/assets/events/city/shanghai.jpg +0 -0
- package/src/assets/events/city/shenzhen1.jpg +0 -0
- package/src/assets/events/city/shenzhen2.jpg +0 -0
- package/src/assets/events/city/suzhou.jpg +0 -0
- package/src/assets/events/city/tianjin.jpg +0 -0
- package/src/assets/events/city/wuhan.jpg +0 -0
- package/src/assets/events/city/wuxi.jpg +0 -0
- package/src/assets/events/city/xian.jpg +0 -0
- package/src/assets/events/city/zhengzhou.jpg +0 -0
- package/src/components/events/OEventsList.vue +1 -1
- package/src/components/events/config.ts +28 -12
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -14,7 +14,7 @@ import { computed, ref } from 'vue';
|
|
|
14
14
|
import { type EventsCardItemT, EventsStatusT, type EventsListPropsT, SearchParamsT } from './types';
|
|
15
15
|
import { compareDate } from './utils.ts';
|
|
16
16
|
import { useI18n } from '@/i18n';
|
|
17
|
-
import defaultCover from '
|
|
17
|
+
import defaultCover from '@/assets/events/city/default-cover.jpg';
|
|
18
18
|
import { CITY_MAP } from './config.ts';
|
|
19
19
|
import { useScreen } from '@opendesign-plus/composables';
|
|
20
20
|
|
|
@@ -3,6 +3,21 @@ import IconEvents from '~icons/events/icon-events.svg';
|
|
|
3
3
|
import IconCompetition from '~icons/events/icon-competition.svg';
|
|
4
4
|
import IconRelease from '~icons/events/icon-release.svg';
|
|
5
5
|
|
|
6
|
+
import 上海 from '@/assets/events/city/shanghai.jpg';
|
|
7
|
+
import 北京 from '@/assets/events/city/beijing.jpg';
|
|
8
|
+
import 南京 from '@/assets/events/city/nanjing.jpg';
|
|
9
|
+
import 天津 from '@/assets/events/city/tianjin.jpg';
|
|
10
|
+
import 成都 from '@/assets/events/city/chengdu.jpg';
|
|
11
|
+
import 无锡 from '@/assets/events/city/wuxi.jpg';
|
|
12
|
+
import 杭州 from '@/assets/events/city/hangzhou.jpg';
|
|
13
|
+
import 深圳1 from '@/assets/events/city/shenzhen1.jpg';
|
|
14
|
+
import 深圳2 from '@/assets/events/city/shenzhen2.jpg';
|
|
15
|
+
import 苏州 from '@/assets/events/city/suzhou.jpg';
|
|
16
|
+
import 西安 from '@/assets/events/city/xian.jpg';
|
|
17
|
+
import 郑州 from '@/assets/events/city/zhengzhou.jpg';
|
|
18
|
+
import 武汉 from '@/assets/events/city/wuhan.jpg';
|
|
19
|
+
import 广州 from '@/assets/events/city/guangzhou.jpg';
|
|
20
|
+
|
|
6
21
|
export const EVENTS_COLOR_MAP = {
|
|
7
22
|
summit: '--o-orange-6',
|
|
8
23
|
events: '--o-cyan-6',
|
|
@@ -18,16 +33,17 @@ export const EVENTS_ICON_MAP = {
|
|
|
18
33
|
};
|
|
19
34
|
|
|
20
35
|
export const CITY_MAP = {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
深圳: [
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
36
|
+
上海,
|
|
37
|
+
北京,
|
|
38
|
+
南京,
|
|
39
|
+
天津,
|
|
40
|
+
成都,
|
|
41
|
+
无锡,
|
|
42
|
+
杭州,
|
|
43
|
+
深圳: [深圳1, 深圳2],
|
|
44
|
+
苏州,
|
|
45
|
+
西安,
|
|
46
|
+
郑州,
|
|
47
|
+
武汉,
|
|
48
|
+
广州,
|
|
33
49
|
};
|