@conecli/cone-render 0.10.1-shop3.2 → 0.10.1-shop3.21

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.
Files changed (75) hide show
  1. package/dist/api/index.ts +1 -1
  2. package/dist/common/const.ts +1 -1
  3. package/dist/common/index.h5.ts +1 -1
  4. package/dist/common/index.jd.ts +1 -1
  5. package/dist/common/index.ts +1 -1
  6. package/dist/common/index.weapp.ts +1 -1
  7. package/dist/common/jssdk.ts +1 -1
  8. package/dist/common/token/index.h5.ts +1 -1
  9. package/dist/common/token/token.jd.ts +1 -1
  10. package/dist/common/wxappApi.ts +1 -1
  11. package/dist/components/base/CommonFloorHead/index.module.scss +126 -111
  12. package/dist/components/base/CommonFloorHead/index.tsx +1 -1
  13. package/dist/components/base/CountDown/index.tsx +1 -1
  14. package/dist/components/base/CustomScrollView/index-back.tsx +1 -0
  15. package/dist/components/base/CustomScrollView/index.tsx +1 -1
  16. package/dist/components/base/Dialog/index.module.scss +11 -0
  17. package/dist/components/base/ExposureSmart/index.h5.module.scss +12 -2
  18. package/dist/components/base/ExposureSmart/index.h5.tsx +1 -1
  19. package/dist/components/base/ExposureSmart/reporter.tsx +1 -1
  20. package/dist/components/base/InViewRender/index.tsx +1 -1
  21. package/dist/components/base/ItemViewExposureSmart/index.module.scss +2 -2
  22. package/dist/components/base/ItemViewExposureSmart/index.tsx +1 -1
  23. package/dist/components/base/NetworkDataError/const.ts +1 -1
  24. package/dist/components/base/NetworkDataError/index.module.scss +116 -70
  25. package/dist/components/base/NetworkDataError/index.tsx +1 -1
  26. package/dist/components/base/Price/Base/index.module.scss +6 -0
  27. package/dist/components/base/Price/Base/index.tsx +1 -1
  28. package/dist/components/base/Price/Double/index.module.scss +6 -0
  29. package/dist/components/base/Price/Double/index.tsx +1 -1
  30. package/dist/components/debug/DebugLayout/index.module.scss +2 -2
  31. package/dist/components/floorItem.weapp.tsx +1 -1
  32. package/dist/interface/common.ts +1 -1
  33. package/dist/interface/component.ts +1 -1
  34. package/dist/interface/jumpEventReport.ts +1 -1
  35. package/dist/interface/service.ts +1 -1
  36. package/dist/jumpEventReport/base.ts +1 -1
  37. package/dist/jumpEventReport/const.ts +1 -1
  38. package/dist/jumpEventReport/index.h5.ts +1 -1
  39. package/dist/jumpEventReport/index.weapp.ts +1 -1
  40. package/dist/jumpEventReport/jdJumpJdApp.ts +1 -1
  41. package/dist/jumpEventReport/jumpUrlConfig/base.ts +1 -1
  42. package/dist/jumpEventReport/logEventConfig.ts +1 -1
  43. package/dist/jumpEventReport/web/report.ts +1 -1
  44. package/dist/jumpEventReport/web.base.ts +1 -1
  45. package/dist/jumpEventReport/web.jd.ts +1 -1
  46. package/dist/jumpEventReport/web.wxapp.ts +1 -1
  47. package/dist/libs/taroAppReport.js +2 -2
  48. package/dist/modules/ContainerFloorList/index.h5.module.scss +66 -53
  49. package/dist/modules/ContainerFloorList/index.h5.tsx +1 -1
  50. package/dist/modules/ContainerFloorList/index.tsx +1 -1
  51. package/dist/open/api/environment.ts +1 -1
  52. package/dist/open/api/shopMember.ts +1 -1
  53. package/dist/open/api/util.ts +1 -1
  54. package/dist/sass/app.h5.scss +273 -224
  55. package/dist/service/fetchGateway.ts +1 -1
  56. package/dist/service/fetchGateway.weapp.ts +1 -0
  57. package/dist/service/http/colorSign.ts +1 -1
  58. package/dist/service/http/const.ts +1 -1
  59. package/dist/service/http/h5Http.ts +1 -1
  60. package/dist/service/requestServer.h5.ts +1 -1
  61. package/dist/service/requestServer.ts +1 -1
  62. package/dist/service/requestServer.weapp.ts +1 -0
  63. package/dist/utils/connectNativeJsBridge.ts +1 -1
  64. package/dist/utils/h5Utils.ts +1 -1
  65. package/dist/utils/index.h5.ts +1 -1
  66. package/dist/utils/index.ts +1 -1
  67. package/dist/utils/index.weapp.ts +1 -1
  68. package/dist/utils/jumpExtMapUtil.h5.ts +1 -0
  69. package/dist/utils/jumpExtMapUtil.ts +1 -0
  70. package/dist/utils/log.ts +1 -0
  71. package/dist/utils/sColor.js +1 -0
  72. package/dist/utils/utils.ts +1 -1
  73. package/dist/wxapp/common/address_api/address_api_v2.js +1 -0
  74. package/dist/wxapp/common/user_info.js +1 -1
  75. package/package.json +158 -141
@@ -1 +1 @@
1
- import React from 'react'
2
1
  const {
3
2
  floorData,
4
3
  renderSourceType = BUSINESS_TYPE.ONLINE,
5
4
  builtInComponents = {},
6
5
  updateContainerFloorListDataFn,
7
6
  } = props
8
7
  const isDevMode = renderSourceType === BUSINESS_TYPE.DECORATE
9
8
  const floorModuleType = floorData?.floorExtInfo?.moduleFlag
10
9
  const FloorContentItem =
11
10
  (floorModuleType && builtInComponents[floorModuleType]) || null
12
11
  const dataDefines = getFloorDataToDataDefines(floorData)
13
12
 
14
13
  const renderDecorateDefaultModule = () => {
15
14
  return (
16
15
  <View
17
16
  style={{
18
17
  lineHeight: '120px',
19
18
  textAlign: 'center',
20
19
  }}
21
20
  >
22
21
  当前模块是{floorData.moduleName}
23
22
  </View>
24
23
  )
25
24
  }
26
25
  return FloorContentItem ? (
27
26
  <ErrorBoundary {...props}>
28
27
  <FloorContentItem {...props} dataDefines={dataDefines} />
29
28
  </ErrorBoundary>
30
29
  ) : isDevMode ? (
31
30
  renderDecorateDefaultModule()
32
31
  ) : null
33
32
  switch (moduleId) {
34
33
  case 83158:
35
34
  return 'freeLayout'
36
35
  case 99654:
37
36
  return 'activeText'
38
37
  case 100382:
39
38
  return 'superGoods'
40
39
  }
41
40
  floorList.map((item) => {
42
41
  if (!item.floorExtInfo) {
43
42
  return null
44
43
  }
45
44
  const moduleFlag = item.floorExtInfo.moduleFlag
46
45
  if (!moduleFlag) {
47
46
  const newModuleFlag = moduleId2ModuleFlag(item.moduleId)
48
47
  if (newModuleFlag) {
49
48
  item.floorExtInfo.moduleFlag = newModuleFlag
50
49
  }
51
50
  }
52
51
  })
52
+ import React from 'react'
53
53
  const { floorData, renderSourceType, builtInComponents = {} } = props
54
54
  const isDevMode = renderSourceType === BUSINESS_TYPE.DECORATE
55
55
  const floorModuleType = floorData?.floorExtInfo?.moduleFlag
56
56
  const FloorContentItem =
57
57
  (floorModuleType && builtInComponents[floorModuleType]) || null
58
58
  const dataDefines = getFloorDataToDataDefines(floorData)
59
59
 
60
60
  const renderDecorateDefaultModule = () => {
61
61
  return (
62
62
  <View
63
63
  style={{
64
64
  lineHeight: '120px',
65
65
  textAlign: 'center',
66
66
  }}
67
67
  >
68
68
  当前模块是{floorData.moduleName}
69
69
  </View>
70
70
  )
71
71
  }
72
72
  return FloorContentItem ? (
73
73
  <ErrorBoundary {...props}>
74
74
  <FloorContentItem {...props} dataDefines={dataDefines} />
75
75
  </ErrorBoundary>
76
76
  ) : isDevMode ? (
77
77
  renderDecorateDefaultModule()
78
78
  ) : null
79
79
  renderSourceType: BUSINESS_TYPE.ONLINE,
80
80
  switch (moduleId) {
81
81
  case 83158:
82
82
  return 'freeLayout'
83
83
  case 99654:
84
84
  return 'activeText'
85
85
  case 100382:
86
86
  return 'superGoods'
87
87
  }
88
88
  floorList.map((item) => {
89
89
  if (!item.floorExtInfo) {
90
90
  return null
91
91
  }
92
92
  const moduleFlag = item.floorExtInfo.moduleFlag
93
93
  if (!moduleFlag) {
94
94
  const newModuleFlag = moduleId2ModuleFlag(item.moduleId)
95
95
  if (newModuleFlag) {
96
96
  item.floorExtInfo.moduleFlag = newModuleFlag
97
97
  }
98
98
  }
99
99
  })
@@ -1 +1 @@
1
- import Taro from '@tarojs/taro'
2
1
  isJingxiMiniViewState?: boolean
3
2
  floorVideInfo: object
4
3
  isFloorInfoDataByPage?: boolean
5
4
  originQueryInfo: {
6
5
  openAppData?: {
7
6
  [key: string]: any
8
7
  }
8
+ import Taro from '@tarojs/taro';
9
9
  export interface BaseConfigInfo {
10
10
  abTestLabels: {
11
11
  [key: string]: any;
12
12
  };
13
13
  nonSellableSkuids: {
14
14
  [key: string]: number;
15
15
  };
16
16
  loginState: boolean;
17
17
  cookiesStr: string;
18
18
  isImmersive: boolean;
19
19
  isJingGouMiniViewState?: boolean;
20
20
  isJingxiMiniViewState?: boolean;
21
21
  shopInfo: {
22
22
  shopId?: string | number;
23
23
  venderId?: string | number;
24
24
  };
25
25
  pageInfo: {
26
26
  appId?: string;
27
27
  shopId?: string | number;
28
28
  venderId?: string | number;
29
29
  logoSquare?: string;
30
30
  logoUrl?: string;
31
31
  address?: string | null;
32
32
  addressCommaStr?: string | null;
33
33
  un_area?: string | null;
34
34
  userLbsAddress?: string;
35
35
  shopName?: string;
36
36
  jumpTab?: string;
37
37
  sourceType?: string;
38
38
  sourceValue?: string;
39
39
  moduleId?: string;
40
40
  entrance?: string;
41
41
  EA_PTAG?: string;
42
42
  ptag?: string;
43
43
  originReferer?: string;
44
44
  recBroker?: string;
45
45
  rcmdRelateSkuId?: string;
46
46
  tabSpm?: string;
47
47
  skuId?: string;
48
48
  keywords?: string;
49
49
  sceneId?: string;
50
50
  miniScrollInfo?: {
51
51
  scrollLeft: number;
52
52
  scrollTop: number;
53
53
  scrollHeight: number;
54
54
  scrollWidth: number;
55
55
  deltaX: number;
56
56
  deltaY: number;
57
57
  };
58
58
  tabsLoadAllDataInfo: {
59
59
  [key: string]: boolean;
60
60
  };
61
61
  wxBusinessType: string;
62
62
  vapptype: string;
63
63
  pageType: string;
64
64
  dataType: string;
65
65
  floorExposureInfo: object;
66
66
  floorVideInfo: object;
67
67
  isExposureState?: boolean;
68
68
  appLazyContainerList?: string[];
69
69
  appLazyFinishContainerList?: [];
70
70
  shopStickyAndToTopInfo?: {
71
71
  toTop: boolean;
72
72
  sticky: boolean;
73
73
  };
74
74
  isVipShop?: boolean;
75
75
  updateShopInfosState?: boolean;
76
76
  pageScrollTop: number;
77
77
  shopNavBarHeight: number;
78
78
  isFloorInfoDataByPage?: boolean;
79
79
  };
80
80
  lazyContainer?: {
81
81
  wellChosen: {
82
82
  appLazyContainerList?: string[];
83
83
  appLazyFinishContainerList?: string[];
84
84
  };
85
85
  };
86
86
  queryLogInfo?: {
87
87
  sourceType: string;
88
88
  sourceValue: string;
89
89
  moduleId?: string;
90
90
  entrance?: string;
91
91
  };
92
92
  queryInfo: {
93
93
  shopId?: string | number;
94
94
  venderId?: string | number;
95
95
  shopName?: string;
96
96
  [key: string]: any;
97
97
  };
98
98
  originQueryInfo: {
99
99
  shopId?: string | number;
100
100
  venderId?: string | number;
101
101
  shopName?: string;
102
102
  [key: string]: any;
103
103
  };
104
104
  sysInfo: {
105
105
  [key: string]: any;
106
106
  };
107
107
  userInfo: {
108
108
  pin?: string;
109
109
  encodePin?: string;
110
110
  ptkey?: string;
111
111
  wqCookie?: string | null;
112
112
  wxappVersion?: string;
113
113
  wqAuthToken?: string;
114
114
  wqVisitkey?: string;
115
115
  };
116
116
  openAppData?: {
117
117
  [key: string]: any;
118
118
  };
119
119
  }
120
120
 
121
121
  export interface OneKeyJoinMemberParamInfo {
122
122
  title?: string;
123
123
  shopId?: string | number;
124
124
  venderId?: string | number;
125
125
  businessSource?: keyof OneKeyJoinMemberBusinessSource;
126
126
  }
127
127
  export interface OneKeyJoinMemberBusinessSource {
128
128
  isv;
129
129
  lv0;
130
130
  }
131
131
  export type lazyContainer = {
132
132
  [key in 'string']?: {
133
133
  appLazyFinishContainerList: any[];
134
134
  appLazyContainerList: any[];
135
135
  };
136
136
  };
137
137
  export type renderedIsvComponents = {
138
138
  [key in 'string']?: any;
139
139
  };
140
140
  export type MiniApplogUtil = any;
141
141
  export type MiniAppLog = any;
142
142
  export type WxAppLogin = any;
143
143
  export type WxAppUserInfo = any;
144
144
  export type wxAppReportManage = any;
145
145
  export type WxAppReportGDT = any;
146
146
  export type WxAppNavigator = any;
147
147
  export type wxAppParamsSign = any;
148
148
  export type wxAppFingerReportInstance = any;
149
149
  export type wxAppSubsGuider = any;
150
150
  export type wxAppAddressV2api = any;
151
151
  [key: string]: any;
@@ -1 +1 @@
1
- import React from 'react'
2
1
  subMessage?: string
3
2
  viewMaxHeight?: string
4
3
  noPosition?: boolean
5
4
  floorLoadWay?: number
6
5
  floorKind?: number
7
6
  shopId?: string
8
7
  moduleDesignerType?: string
9
8
  showCommonFloorHead?: boolean
10
9
  borderRadius: number
11
10
  borderTopLeftRadius?: number
12
11
  borderTopRightRadius?: number
13
12
  borderBottomLeftRadius?: number
14
13
  borderBottomRightRadius?: number
15
14
  marginTop?: number
16
15
  marginBottom?: number
17
16
  marginLeft?: number
18
17
  marginRight?: number
19
18
  paddingTop?: number
20
19
  paddingBottom?: number
21
20
  paddingLeft?: number
22
21
  paddingRight?: number
23
22
  containerId: string
24
23
  background?: string
25
24
  containerPosition?: string
26
25
  key?: string
27
26
  floors: floorItemData[]
28
27
  includeUids: string[]
29
28
  typeCn: string
30
29
  typeCode?: string
31
30
  addLuxuryStyle?: boolean
32
31
  addLuxuryBackupStyle?: boolean
33
32
  renderExtendComponent?: Function
34
33
  insertContainerStartComponent?: Function
35
34
  floorExtendData?: any
36
35
  }
37
36
  isRealTimeRender: boolean
38
37
  forceRenderTime: number
39
38
  luxuryFixed?: boolean
40
39
  customErrorIsvFloorModule?: React.ReactElement | undefined
41
40
  containerIndex?: number
42
41
  containerData?: any
43
42
  shopTotalInfo?: any
44
43
  selectContainerFn?: Function
45
44
  selectContainerId?: string
46
45
  placeHolderPreContainerId?: string
47
46
  children?: any
48
47
  luxuryFixed?: boolean
49
48
  style?: {
50
49
  [key: string]: any
51
50
  };
52
51
  layoutLeftRightMargin?: number
53
52
  }
54
53
  isShowPlaceHolder?: boolean
55
54
  showDayToSecondState?: boolean
56
55
  onFormSubmit?: Function
57
56
  onFormReset?: Function
58
57
  isFormDialog?: boolean
59
58
  forbiddenBgScrollState?: boolean
60
59
  evenList: any[]
61
60
  oddList: any[]
61
+ import React from 'react'
62
62
  subMessage?: string
63
63
  netWorkStyleType?: string
64
64
  viewMaxHeight?: string
65
65
  noPosition?: boolean
66
66
  floorLoadWay?: number
67
67
  floorKind?: number
68
68
  shopId?: string
69
69
  moduleDesignerType?: string
70
70
  showCommonFloorHead?: boolean
71
71
  borderRadius: number
72
72
  borderTopLeftRadius?: number
73
73
  borderTopRightRadius?: number
74
74
  borderBottomLeftRadius?: number
75
75
  borderBottomRightRadius?: number
76
76
  marginTop?: number
77
77
  marginBottom?: number
78
78
  marginLeft?: number
79
79
  marginRight?: number
80
80
  paddingTop?: number
81
81
  paddingBottom?: number
82
82
  paddingLeft?: number
83
83
  paddingRight?: number
84
84
  containerId: string
85
85
  background?: string
86
86
  containerPosition?: string
87
87
  key?: string
88
88
  floors: floorItemData[]
89
89
  includeUids: string[]
90
90
  typeCn: string
91
91
  typeCode?: string
92
92
  addLuxuryStyle?: boolean
93
93
  addLuxuryBackupStyle?: boolean
94
94
  renderExtendComponent?: functionType
95
95
  insertContainerStartComponent?: functionType
96
96
  floorExtendData?: any
97
97
  }
98
98
  isRealTimeRender: boolean
99
99
  forceRenderTime: number
100
100
  luxuryFixed?: boolean
101
101
  customErrorIsvFloorModule?: React.ReactElement | undefined
102
102
  containerIndex?: number
103
103
  containerData?: any
104
104
  shopTotalInfo?: any
105
105
  selectContainerFn?: functionType
106
106
  selectContainerId?: string
107
107
  placeHolderPreContainerId?: string
108
108
  children?: any
109
109
  luxuryFixed?: boolean
110
110
  style?: {
111
111
  [key: string]: any
112
112
  };
113
113
  layoutLeftRightMargin?: number
114
114
  }
115
115
  isShowPlaceHolder?: boolean
116
116
 
117
117
  useFontV2?: boolean
118
118
  useFontV2Bold?: boolean
119
119
  onlyShowDaySpaceTextState?: boolean
120
120
  showDayToSecondState?: boolean
121
121
  useFontV2: boolean
122
122
  useFontV2Bold: boolean
123
123
  onFormSubmit?: functionType
124
124
  onFormReset?: functionType
125
125
  isFormDialog?: boolean
126
126
  forbiddenBgScrollState?: boolean
127
127
  evenList: any[]
128
128
  oddList: any[]
@@ -1 +1 @@
1
- export declare namespace JumpEventReportInterFace {
2
1
  export interface ShopIdsInfo {
3
2
  shopId?: number | string
4
3
  venderId?: number | string
5
4
  logEventInfo?: object
6
5
  type?: string
7
6
  }
8
7
  export interface RouterInfo {
9
8
  params: any
10
9
  pageParamStr?: string
11
10
  [key: string]: any
12
11
  }
13
12
  export interface JumpMiniPath {
14
13
  shop: string
15
14
  shopx: string
16
15
  detail: string
17
16
  searchCoupon: string
18
17
  h5: string
19
18
  jingGouHome: string
20
19
  shopFans: string
21
20
  shopLight: string
22
21
  couponSearch: string
23
22
  shopSearch: string
24
23
  jxCouponSearch: string
25
24
  jxDetail: string
26
25
  }
27
26
  export interface jumpWebUrl {
28
27
  mshop: string
29
28
  pages: string
30
29
  pcCoupon: string
31
30
  couponSearch: string
32
31
  jxCouponSearch: string
33
32
  pcCouponSearch: string
34
33
  shopSecondActivity: string
35
34
  shopLight: string
36
35
  detail: string
37
36
  jxDetail: string
38
37
  tjDetail: string
39
38
  pcDetail: string
40
39
  mobileHome: string
41
40
  rank: string
42
41
  wqShopMember: string
43
42
  wqShopDetail: string
44
43
  wqShopSearch: string
45
44
  myCouponList: string
46
45
  myRedPacketList: string
47
46
  memberHome: string
48
47
  memberCard: string
49
48
  memberPoints: string
50
49
  memberBenefit: string
51
50
  memberScores: string
52
51
  memberScoreRule: string
53
52
  memberProduct: string
54
53
  shopMember: string
55
54
  shopMemberPointDetail: string
56
55
  shopMemberBenefit: string
57
56
  shopMemberRule: string
58
57
  shopMemberCloseAccount: string
59
58
  shopMemberPointExchange: string
60
59
  shopMemberBonusPurchase: string
61
60
  shopMemberGood: string
62
61
  beanDetail: string
63
62
  totalPromotion: string
64
63
  mLive: string
65
64
  shopHome: string
66
65
  shopIntroduce: string
67
66
  shopSearch: string
68
67
  shopLottery: string
69
68
  shopCoupon: string
70
69
  shopWares: string
71
70
  shopFastShopping: string
72
71
  shopSpeciSeckill: string
73
72
  shopVideos: string
74
73
  shopMoreGoods:string
75
74
  shopUseShareOrderUgcContent: string
76
75
  dongDongChat: string
77
76
  samCenter: string
78
77
  samCard: string
79
78
  shopH5MemberCardAPP: string
80
79
  shopH5MemberCardM: string
81
80
  }
82
81
  export interface EventReportConfig {
83
82
  routerInfo: RouterInfo
84
83
  nativeEvent: any
85
84
  }
86
85
  export interface OptEventLogParams {
87
86
  eventId?: string
88
87
  eventParam?: string | object
89
88
  pTag?: string
90
89
  jsonParam?: {
91
90
  [key: string]: any
92
91
  }
93
92
  skuId?: string | number
94
93
  eventLevel?: string
95
94
  exposureState?: boolean
96
95
  otherParams?: object
97
96
  }
98
97
 
99
98
  export interface JumpH5ReportConfig {
100
99
  shopId?: number | string
101
100
  venderId?: number | string
102
101
  sourceValue?: string
103
102
  sourceType?: string
104
103
  }
105
104
  export interface JumpEventReportInit extends EventReportConfig {
106
105
  getConfig(opt): EventReportConfig
107
106
  updateInfo(routerInfo, logPname): void
108
107
  }
109
108
  export interface CouponUrlParams {
110
109
  batchId: number
111
110
  bindType: number
112
111
  startTime?: number
113
112
  endTime?: number
114
113
  quangoufrom?: number
115
114
  sceneId?: number
116
115
  }
117
116
  export interface JdMiniJumpParams {
118
117
  param: string | object
119
118
  sourceValue?: string
120
119
  sourceType?: string
121
120
  des?: any
122
121
  logEventInfo?: object
123
122
  }
124
123
  export interface LinkMiniParams {
125
124
  param?: {
126
125
  pageType?: string
127
126
  }
128
127
  appId?: string | number
129
128
  path?: string
130
129
  }
131
130
  export interface JdJumpWxappReportConfig {
132
131
  wxApiVersion: string
133
132
  wxApiUrl: string
134
133
  wqReportUrl: string
135
134
  }
135
+ export declare namespace JumpEventReportInterFace {
136
136
  export interface ShopIdsInfo {
137
137
  shopId?: number | string;
138
138
  venderId?: number | string;
139
139
  logEventInfo?: object;
140
140
  type?: string;
141
141
  }
142
142
  export interface RouterInfo {
143
143
  params: any;
144
144
  pageParamStr?: string;
145
145
  [key: string]: any;
146
146
  }
147
147
  export interface JumpMiniPath {
148
148
  shop: string;
149
149
  shopx: string;
150
150
  detail: string;
151
151
  searchCoupon: string;
152
152
  h5: string;
153
153
  jingGouHome: string;
154
154
  shopFans: string;
155
155
  shopLight: string;
156
156
  couponSearch: string;
157
157
  shopSearch: string;
158
158
  jxCouponSearch: string;
159
159
  jxDetail: string;
160
160
  jdLive: string;
161
161
  }
162
162
  export interface jumpWebUrl {
163
163
  mshop: string;
164
164
  pages: string;
165
165
  pcCoupon: string;
166
166
  couponSearch: string;
167
167
  jxCouponSearch: string;
168
168
  pcCouponSearch: string;
169
169
  shopSecondActivity: string;
170
170
  shopLight: string;
171
171
  detail: string;
172
172
  jxDetail: string;
173
173
  tjDetail: string;
174
174
  pcDetail: string;
175
175
  mobileHome: string;
176
176
  rank: string;
177
177
  wqShopMember: string;
178
178
  wqShopDetail: string;
179
179
  wqShopSearch: string;
180
180
  myCouponList: string;
181
181
  myRedPacketList: string;
182
182
  memberHome: string;
183
183
  memberCard: string;
184
184
  memberPoints: string;
185
185
  memberBenefit: string;
186
186
  memberScores: string;
187
187
  memberScoreRule: string;
188
188
  memberProduct: string;
189
189
  shopMember: string;
190
190
  shopMemberPointDetail: string;
191
191
  shopMemberBenefit: string;
192
192
  shopMemberRule: string;
193
193
  shopMemberCloseAccount: string;
194
194
  shopMemberPointExchange: string;
195
195
  shopMemberBonusPurchase: string;
196
196
  shopMemberGood: string;
197
197
  beanDetail: string;
198
198
  totalPromotion: string;
199
199
  mLive: string;
200
200
  shopHome: string;
201
201
  shopIntroduce: string;
202
202
  shopSearch: string;
203
203
  shopLottery: string;
204
204
  shopCoupon: string;
205
205
  shopWares: string;
206
206
  shopFastShopping: string;
207
207
  shopSpeciSeckill: string;
208
208
  shopVideos: string;
209
209
  shopMoreGoods: string;
210
210
  shopUseShareOrderUgcContent: string;
211
211
  dongDongChat: string;
212
212
  samCenter: string;
213
213
  samCard: string;
214
214
  shopH5MemberCardAPP: string;
215
215
  shopH5MemberCardM: string;
216
216
  sageAuthorHome: string;
217
217
  }
218
218
  export interface EventReportConfig {
219
219
  routerInfo: RouterInfo;
220
220
  nativeEvent: any;
221
221
  }
222
222
  export interface OptEventLogParams {
223
223
  eventId?: string;
224
224
  eventParam?: string | object;
225
225
  pTag?: string;
226
226
  jsonParam?: {
227
227
  [key: string]: any;
228
228
  };
229
229
  skuId?: string | number;
230
230
  eventLevel?: string;
231
231
  exposureState?: boolean;
232
232
  otherParams?: object;
233
233
  }
234
234
 
235
235
  export interface JumpH5ReportConfig {
236
236
  shopId?: number | string;
237
237
  venderId?: number | string;
238
238
  sourceValue?: string;
239
239
  sourceType?: string;
240
240
  }
241
241
  export interface JumpEventReportInit extends EventReportConfig {
242
242
  getConfig(opt): EventReportConfig;
243
243
  updateInfo(routerInfo, logPname): void;
244
244
  }
245
245
  export interface CouponUrlParams {
246
246
  batchId: number;
247
247
  bindType: number;
248
248
  startTime?: number;
249
249
  endTime?: number;
250
250
  quangoufrom?: number;
251
251
  sceneId?: number;
252
252
  }
253
253
  export interface JdMiniJumpParams {
254
254
  param: string | object;
255
255
  sourceValue?: string;
256
256
  sourceType?: string;
257
257
  des?: any;
258
258
  logEventInfo?: object;
259
259
  }
260
260
  export interface LinkMiniParams {
261
261
  param?: {
262
262
  pageType?: string;
263
263
  };
264
264
  appId?: string | number;
265
265
  path?: string;
266
266
  }
267
267
  export interface JdJumpWxappReportConfig {
268
268
  wxApiVersion: string;
269
269
  wxApiUrl: string;
270
270
  wqReportUrl: string;
271
271
  }