1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| export const SOURCE_KEY = '__data__'
|
| export const COMPONENT_LIFECYCLE = {
| created: 'onServiceCreated',
| attached: 'onServiceAttached',
| ready: 'mounted',
| moved: 'moved',
| detached: 'destroyed'
| }
|
| export const COMPONENT_LIFECYCLE_KEYS = Object.keys(COMPONENT_LIFECYCLE)
|
| export const PAGE_LIFETIMES = {
| show: 'onPageShow',
| hide: 'onPageHide',
| resize: 'onPageResize'
| }
|
| export const PAGE_LIFETIMES_KEYS = Object.keys(PAGE_LIFETIMES)
| // TODO 待整理,现在到处都是
| export const PAGE_LIFECYCLE = [
| 'onInit',
| 'onLoad',
| 'onShow',
| 'onReady',
| 'onHide',
| 'onUnload',
| 'onPullDownRefresh',
| 'onReachBottom',
| 'onAddToFavorites',
| 'onShareTimeline',
| 'onShareAppMessage',
| 'onPageScroll',
| 'onResize',
| 'onTabItemTap'
| ]
|
|