@conecli/cone-render 0.8.21 → 0.8.22

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.
@@ -1 +1 @@
1
- import Taro from '@tarojs/taro'
2
1
  console.log('京购商详页跳转:', this.jumpMiniPath.detail)
2
+ import Taro from '@tarojs/taro'
3
3
  console.log('京购商详页跳转:', this.jumpMiniPath.detail)
4
4
  const getJsonParam = etModelInfo && logBaseInfo ? logBaseInfo : Object.assign({},{
5
5
  shopid: global.info.queryInfo?.shopId,
6
6
  },jsonParam)
@@ -1 +1 @@
1
- export enum LogPnameInfo {
1
+ export enum LogPnameInfo {
2
2
  MOBILE_SEARCH = 'MShop_SearchResult'
@@ -1 +1 @@
1
- import global from '../common'
1
+ import global from '../common'
2
2
  const pageParamStr = typeof pageParam === 'object' ? JSON.stringify(pageParam) : pageParam
3
3
 
4
4
  jdJumpToTabAllProductInner(shopId, venderId, logEventInfo = {}){
5
5
  this.jdJumpToTabAllProduct(shopId, venderId, logEventInfo)
6
6
  }
7
7
  const getJsonParam = etModelInfo && logBaseInfo ? logBaseInfo : Object.assign({},{
8
8
  shopid: global.info.queryInfo?.shopId,
9
9
  },jsonParam)
10
10
  jsonParam: JSON.stringify(getJsonParam),
@@ -1 +1 @@
1
- import { JumpEventReport, JumpEventReportPromise } from '../../jumpEventReport'
2
1
  jdJumpToShopHome: (info: object) => void
3
2
  jdJumpToProduct: (skuId: string | null, logEventInfo: object) => void
4
3
  jdJumpConfigUrl: (detail: object, logEventInfo: object) => void
5
4
  jdJumpToShopMemberInfo: (logEventInfo: object) => void
6
5
  jdJumpToShopMemberPointDetail: (logEventInfo: object) => void
7
6
  jdJumpToShopMemberBenefit: (logEventInfo: object) => void
8
7
  jdJumpToShopMemberRule: (logEventInfo: object) => void
9
8
  jdJumpToShopMemberCloseAccount: (
10
9
  venderType: number,
11
10
  logEventInfo: object,
12
11
  ) => void
13
12
  jdJumpToShopMemberPointExchange: (
14
13
  venderType: number,
15
14
  channel: number,
16
15
  levelZeroMenuUrl: string,
17
16
  logEventInfo: object,
18
17
  ) => void
19
18
  jdJumpToShopMemberBonusPurchase: (
20
19
  customerLevel: number,
21
20
  logEventInfo: object,
22
21
  ) => void
23
22
  jdJumpToShopMemberGood: (customerLevel: number, logEventInfo: object) => void
24
23
  jdJumpToBeanDetail: (logEventInfo: object) => void
25
24
  jdJumpToMyRedEnvelope: (logEventInfo: object) => void
26
25
  jdJumpToMyCoupon: (logEventInfo: object) => void
27
26
  jdJumpToShopHome: () => {},
28
27
  jdJumpToProduct: () => {},
29
28
  jdJumpConfigUrl: () => {},
30
29
  jdJumpToShopMemberInfo: () => {},
31
30
  jdJumpToShopMemberPointDetail: () => {},
32
31
  jdJumpToShopMemberBenefit: () => {},
33
32
  jdJumpToShopMemberRule: () => {},
34
33
  jdJumpToShopMemberCloseAccount: () => {},
35
34
  jdJumpToShopMemberPointExchange: () => {},
36
35
  jdJumpToShopMemberBonusPurchase: () => {},
37
36
  jdJumpToShopMemberGood: () => {},
38
37
  jdJumpToBeanDetail: () => {},
39
38
  jdJumpToMyRedEnvelope: () => {},
40
39
  jdJumpToMyCoupon: () => {},
41
40
  jdJumpToWeb: (url: string, logEventInfo: object) => void
42
41
  jdJumpToAppMiniProgram: (path: string, logEventInfo: object) => void
43
42
  jdJumpToShopLight: (detail: object) => void
44
43
  jdJumpToAppMiniProgram: () => {},
45
44
  jdJumpToShopLight: () => {},
46
45
  jdJumpToWeb: () => {},
47
46
  [key: string]: any
48
47
  [key: string]: any
49
48
  const {
50
49
  jdJumpToTabAllProduct,
51
50
  jdJumpToShopHome,
52
51
  jdJumpToProduct,
53
52
  jdJumpToShopSearch,
54
53
  jdJumpConfigUrl,
55
54
  jdJumpToShopMemberInfo,
56
55
  jdJumpToShopMemberPointDetail,
57
56
  jdJumpToShopMemberBenefit,
58
57
  jdJumpToShopMemberRule,
59
58
  jdJumpToShopMemberCloseAccount,
60
59
  jdJumpToShopMemberPointExchange,
61
60
  jdJumpToShopMemberBonusPurchase,
62
61
  jdJumpToShopMemberGood,
63
62
  jdJumpToBeanDetail,
64
63
  jdJumpToMyRedEnvelope,
65
64
  jdJumpToMyCoupon,
66
65
  } = JumpEventReport
67
66
  const {
68
67
  jdJumpToAppMiniProgram,
69
68
  jdJumpToShopLight,
70
69
  jdJumpToWeb,
71
70
  jumpWebUrl,
72
71
  jumpMiniPath,
73
72
  } = JumpEventReport
74
73
  Object.assign(business, {
75
74
  jdJumpToShopHome: jdJumpToShopHome.bind(JumpEventReport),
76
75
  jdJumpToProduct: jdJumpToProduct.bind(JumpEventReport),
77
76
  jdJumpConfigUrl: jdJumpConfigUrl.bind(JumpEventReport),
78
77
  jdJumpToShopMemberInfo: jdJumpToShopMemberInfo.bind(JumpEventReport),
79
78
  jdJumpToShopMemberPointDetail:
80
79
  jdJumpToShopMemberPointDetail.bind(JumpEventReport),
81
80
  jdJumpToShopMemberBenefit: jdJumpToShopMemberBenefit.bind(JumpEventReport),
82
81
  jdJumpToShopMemberRule: jdJumpToShopMemberRule.bind(JumpEventReport),
83
82
  jdJumpToShopMemberCloseAccount:
84
83
  jdJumpToShopMemberCloseAccount.bind(JumpEventReport),
85
84
  jdJumpToShopMemberPointExchange:
86
85
  jdJumpToShopMemberPointExchange.bind(JumpEventReport),
87
86
  jdJumpToShopMemberBonusPurchase:
88
87
  jdJumpToShopMemberBonusPurchase.bind(JumpEventReport),
89
88
  jdJumpToShopMemberGood: jdJumpToShopMemberGood.bind(JumpEventReport),
90
89
  jdJumpToBeanDetail: jdJumpToBeanDetail.bind(JumpEventReport),
91
90
  jdJumpToMyRedEnvelope: jdJumpToMyRedEnvelope.bind(JumpEventReport),
92
91
  jdJumpToMyCoupon: jdJumpToMyCoupon.bind(JumpEventReport),
93
92
  })
94
93
  Object.assign(side, {
95
94
  jdJumpToAppMiniProgram: jdJumpToAppMiniProgram.bind(JumpEventReport),
96
95
  jdJumpToShopLight: jdJumpToShopLight.bind(JumpEventReport),
97
96
  jdJumpToWeb: jdJumpToWeb.bind(JumpEventReport),
98
97
  jumpWebUrl,
99
98
  jumpMiniPath,
100
99
  })
101
100
  Object.assign(webUrl, jumpWebUrl)
102
101
  Object.assign(minPath, jumpMiniPath)
102
+ import { JumpEventReport, JumpEventReportPromise } from '../../jumpEventReport'
103
103
  jdJumpToShopHome: (info: object) => void
104
104
  jdJumpToProduct: (skuId: string | null, logEventInfo: object) => void
105
105
  jdJumpConfigUrl: (detail: object, logEventInfo: object) => void
106
106
  jdJumpToShopMemberInfo: (logEventInfo: object) => void
107
107
  jdJumpToShopMemberPointDetail: (logEventInfo: object) => void
108
108
  jdJumpToShopMemberBenefit: (logEventInfo: object) => void
109
109
  jdJumpToShopMemberRule: (logEventInfo: object) => void
110
110
  jdJumpToShopMemberCloseAccount: (
111
111
  venderType: number,
112
112
  logEventInfo: object,
113
113
  ) => void
114
114
  jdJumpToShopMemberPointExchange: (
115
115
  venderType: number,
116
116
  channel: number,
117
117
  levelZeroMenuUrl: string,
118
118
  logEventInfo: object,
119
119
  ) => void
120
120
  jdJumpToShopMemberBonusPurchase: (
121
121
  customerLevel: number,
122
122
  logEventInfo: object,
123
123
  ) => void
124
124
  jdJumpToShopMemberGood: (customerLevel: number, logEventInfo: object) => void
125
125
  jdJumpToBeanDetail: (logEventInfo: object) => void
126
126
  jdJumpToMyRedEnvelope: (logEventInfo: object) => void
127
127
  jdJumpToMyCoupon: (logEventInfo: object) => void
128
128
  jdJumpToTabAllProduct: (shopId: string | number,venderId: string | number,logEventInfo: object) => void
129
129
  jdJumpToTabAllProductInner: (shopId: string | number,venderId: string | number,logEventInfo: object) => void
130
130
  jdJumpToShopHome: () => {},
131
131
  jdJumpToProduct: () => {},
132
132
  jdJumpConfigUrl: () => {},
133
133
  jdJumpToShopMemberInfo: () => {},
134
134
  jdJumpToShopMemberPointDetail: () => {},
135
135
  jdJumpToShopMemberBenefit: () => {},
136
136
  jdJumpToShopMemberRule: () => {},
137
137
  jdJumpToShopMemberCloseAccount: () => {},
138
138
  jdJumpToShopMemberPointExchange: () => {},
139
139
  jdJumpToShopMemberBonusPurchase: () => {},
140
140
  jdJumpToShopMemberGood: () => {},
141
141
  jdJumpToBeanDetail: () => {},
142
142
  jdJumpToMyRedEnvelope: () => {},
143
143
  jdJumpToMyCoupon: () => {},
144
144
  jdJumpToTabAllProductInner: () => {},
145
145
  jdJumpToWeb: (url: string, logEventInfo: object) => void
146
146
  jdJumpToAppMiniProgram: (path: string, logEventInfo: object) => void
147
147
  jdJumpToShopLight: (detail: object) => void
148
148
  jdJumpToAppMiniProgram: () => {},
149
149
  jdJumpToShopLight: () => {},
150
150
  jdJumpToWeb: () => {},
151
151
  [key: string]: any
152
152
  [key: string]: any
153
153
  const {
154
154
  jdJumpToShopHome,
155
155
  jdJumpToProduct,
156
156
  jdJumpConfigUrl,
157
157
  jdJumpToShopMemberInfo,
158
158
  jdJumpToShopMemberPointDetail,
159
159
  jdJumpToShopMemberBenefit,
160
160
  jdJumpToShopMemberRule,
161
161
  jdJumpToShopMemberCloseAccount,
162
162
  jdJumpToShopMemberPointExchange,
163
163
  jdJumpToShopMemberBonusPurchase,
164
164
  jdJumpToShopMemberGood,
165
165
  jdJumpToBeanDetail,
166
166
  jdJumpToMyRedEnvelope,
167
167
  jdJumpToMyCoupon,
168
168
  jdJumpToTabAllProduct,
169
169
  jdJumpToTabAllProductInner,
170
170
  } = JumpEventReport
171
171
  const {
172
172
  jdJumpToAppMiniProgram,
173
173
  jdJumpToShopLight,
174
174
  jdJumpToWeb,
175
175
  jumpWebUrl,
176
176
  jumpMiniPath,
177
177
  } = JumpEventReport
178
178
  Object.assign(business, {
179
179
  jdJumpToShopHome: jdJumpToShopHome.bind(JumpEventReport),
180
180
  jdJumpToProduct: jdJumpToProduct.bind(JumpEventReport),
181
181
  jdJumpConfigUrl: jdJumpConfigUrl.bind(JumpEventReport),
182
182
  jdJumpToShopMemberInfo: jdJumpToShopMemberInfo.bind(JumpEventReport),
183
183
  jdJumpToShopMemberPointDetail:
184
184
  jdJumpToShopMemberPointDetail.bind(JumpEventReport),
185
185
  jdJumpToShopMemberBenefit: jdJumpToShopMemberBenefit.bind(JumpEventReport),
186
186
  jdJumpToShopMemberRule: jdJumpToShopMemberRule.bind(JumpEventReport),
187
187
  jdJumpToShopMemberCloseAccount:
188
188
  jdJumpToShopMemberCloseAccount.bind(JumpEventReport),
189
189
  jdJumpToShopMemberPointExchange:
190
190
  jdJumpToShopMemberPointExchange.bind(JumpEventReport),
191
191
  jdJumpToShopMemberBonusPurchase:
192
192
  jdJumpToShopMemberBonusPurchase.bind(JumpEventReport),
193
193
  jdJumpToShopMemberGood: jdJumpToShopMemberGood.bind(JumpEventReport),
194
194
  jdJumpToBeanDetail: jdJumpToBeanDetail.bind(JumpEventReport),
195
195
  jdJumpToMyRedEnvelope: jdJumpToMyRedEnvelope.bind(JumpEventReport),
196
196
  jdJumpToMyCoupon: jdJumpToMyCoupon.bind(JumpEventReport),
197
197
  jdJumpToTabAllProduct: jdJumpToTabAllProduct.bind(JumpEventReport),
198
198
  jdJumpToTabAllProductInner: jdJumpToTabAllProductInner.bind(JumpEventReport),
199
199
  })
200
200
  Object.assign(side, {
201
201
  jdJumpToAppMiniProgram: jdJumpToAppMiniProgram.bind(JumpEventReport),
202
202
  jdJumpToShopLight: jdJumpToShopLight.bind(JumpEventReport),
203
203
  jdJumpToWeb: jdJumpToWeb.bind(JumpEventReport),
204
204
  jumpWebUrl,
205
205
  jumpMiniPath,
206
206
  })
207
207
  Object.assign(webUrl, jumpWebUrl)
208
208
  Object.assign(minPath, jumpMiniPath)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conecli/cone-render",
3
- "version": "0.8.21",
3
+ "version": "0.8.22",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist/"