@conecli/cone-render 0.8.38-beta.0 → 0.8.38

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 (41) 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/wxappApi.ts +1 -1
  8. package/dist/components/base/CommonFloorHead/index.tsx +1 -1
  9. package/dist/components/base/CustomScrollView/index.tsx +1 -1
  10. package/dist/components/base/InOrOutViewObserver/index.tsx +1 -1
  11. package/dist/components/floorItem.tsx +1 -1
  12. package/dist/components/isv/Floor/index.tsx +1 -1
  13. package/dist/components/remoteFloorItem.tsx +1 -1
  14. package/dist/interface/common.ts +1 -1
  15. package/dist/interface/component.ts +1 -1
  16. package/dist/interface/jumpEventReport.ts +1 -1
  17. package/dist/interface/service.ts +1 -1
  18. package/dist/jumpEventReport/base.ts +1 -1
  19. package/dist/jumpEventReport/index.h5.ts +1 -1
  20. package/dist/jumpEventReport/jumpUrlConfig/base.ts +1 -1
  21. package/dist/jumpEventReport/web.base.ts +1 -1
  22. package/dist/jumpEventReport/web.jd.ts +1 -1
  23. package/dist/open/api/index.ts +1 -1
  24. package/dist/utils/h5Utils.ts +1 -1
  25. package/dist/utils/index.h5.ts +1 -1
  26. package/dist/utils/index.ts +1 -1
  27. package/dist/utils/index.weapp.ts +1 -1
  28. package/dist/utils/utils.ts +1 -1
  29. package/package.json +1 -1
  30. package/dist/common/jssdk.ts +0 -1
  31. package/dist/jumpEventReport/web.pc.ts +0 -1
  32. package/dist/wxapp/api/helper.js +0 -1
  33. package/dist/wxapp/components/launch-app/index.js +0 -1
  34. package/dist/wxapp/components/launch-app/index.json +0 -5
  35. package/dist/wxapp/components/launch-app/index.wxml +0 -0
  36. package/dist/wxapp/components/launch-app/index.wxss +0 -0
  37. package/dist/wxapp/components/subscribe-guider/helper.js +0 -1
  38. package/dist/wxapp/components/subscribe-guider/index.js +0 -1
  39. package/dist/wxapp/components/subscribe-guider/index.json +0 -5
  40. package/dist/wxapp/components/subscribe-guider/index.wxml +0 -0
  41. package/dist/wxapp/components/subscribe-guider/index.wxss +0 -0
@@ -1 +1 @@
1
- import React, { Suspense, lazy } from 'react'
2
1
  const { floorData, renderSourceType, updateContainerFloorListDataFn } = props
3
2
  const dataDefines = getFloorDataToDataDefines(floorData)
4
3
 
5
4
  const getFloorSetHeight = (item) => {
6
5
  const getHeight = item?.floorExtInfo?.floorHeight
7
6
  ? Number(item?.floorExtInfo?.floorHeight)
8
7
  : 200
9
8
  return getHeight > 0 ? getHeight : 200
10
9
  }
11
10
  console.log(
12
11
  '>>>>>>>>>> floorModuleType === FloorModuleType.ISVDESIGNERH5MODULE >>>>>>>>>>',
13
12
  )
14
13
  const renderResult = (() => {
15
14
  try {
16
15
  console.log('>>>>>>>>>> 开始渲染1个isv模块 >>>>>>>>>>')
17
16
  console.log(
18
17
  '==========当前业务类型renderSourceType、楼层floorId: ',
19
18
  renderSourceType,
20
19
  floorData.uid,
21
20
  )
22
21
  const modularPackResult = floorData?.floorExtInfo?.modularPackResult
23
22
  const modularPackResultObj =
24
23
  typeof modularPackResult === 'string'
25
24
  ? JSON.parse(modularPackResult)
26
25
  : modularPackResult
27
26
  const opt = {
28
27
  msg: `店铺首页isv h5楼层隐藏不显示。原因:modularPackResult数据不完备。页面类型-buildType: ${buildType}。楼层顺序-floorIdx: ${floorData?.floorIdx}`,
29
28
  buildType,
30
29
  uid: floorData?.uid,
31
30
  floorIdx: floorData?.floorIdx,
32
31
  shopId: floorData?.floorExtInfo?.shopId,
33
32
  moduleId: floorData?.moduleId,
34
33
  moduleName: floorData?.moduleName,
35
34
  middleTemplateId: floorData?.middleTemplateId,
36
35
  modularPackResult: modularPackResult,
37
36
  }
38
37
  if (modularPackResultObj) {
39
38
  const { bundleUrl, bundleFileName } = modularPackResultObj
40
39
  if (bundleUrl && bundleFileName) {
41
40
  let ISVModule =
42
41
  taroJdBaseInfo?.renderedIsvComponents[
43
42
  `${floorData.uid}_${bundleFileName}`
44
43
  ] || null
45
44
  if (!ISVModule) {
46
45
  ISVModule = lazy(
47
46
  () => import(bundleFileName + '@@@@@@' + bundleUrl),
48
47
  )
49
48
  console.log(
50
49
  '1|加载isv模块==========走lazy import生成新的isv模块react组件',
51
50
  bundleFileName,
52
51
  )
53
52
  taroJdBaseInfo.renderedIsvComponents[
54
53
  `${floorData.uid}_${bundleFileName}`
55
54
  ] = ISVModule
56
55
  console.log(
57
56
  '2|渲染isv模块的react组件==========,window.taroJshopH5WebpackJsonp上的组件是否已就绪: ',
58
57
  bundleFileName,
59
58
  window['taroJshopH5WebpackJsonp'].find(
60
59
  (item) => item[0][0] == bundleFileName,
61
60
  ),
62
61
  )
63
62
  } else {
64
63
  console.log(
65
64
  '1|加载isv模块==========不走lazy import生成新的isv模块react组件,从已加载中获取,taroJdBaseInfo: ',
66
65
  taroJdBaseInfo,
67
66
  )
68
67
  console.log(
69
68
  '2|渲染isv模块的react组件==========,taroJdBaseInfo.renderedIsvComponents上的组件是否已就绪: ',
70
69
  taroJdBaseInfo.renderedIsvComponents[
71
70
  `${floorData.uid}_${bundleFileName}`
72
71
  ],
73
72
  )
74
73
  }
75
74
  const _floorHeight = getFloorSetHeight(floorData)
76
75
  return (
77
76
  <ErrorBoundary {...props}>
78
77
  <Suspense
79
78
  fallback={
80
79
  <View
81
80
  style={{
82
81
  position: 'relative',
83
82
  background: `#ffffff url('${JD_PLACEHOLDER_IMG}') center center no-repeat`,
84
83
  height: `${_floorHeight}px`,
85
84
  }}
86
85
  ></View>
87
86
  }
88
87
  >
89
88
  <ISVFloor {...props} dataDefines={dataDefines} isRealTimeRender={realTimerRenderTypeList.includes(taroJdBaseInfo.info.pageInfo.dataType)}>
90
89
  <ISVModule {...props} dataDefines={dataDefines}></ISVModule>
91
90
  </ISVFloor>
92
91
  </Suspense>
93
92
  </ErrorBoundary>
94
93
  )
95
94
  } else {
96
95
  console.log(
97
96
  '3|isv模块渲染异常,modularPackResult中缺少bundleUrl或bundleFileName==========modularPackResult: ',
98
97
  modularPackResultObj,
99
98
  )
100
99
  sgmCustomReport({
101
100
  code: 'isvModuleError',
102
101
  msg: opt,
103
102
  })
104
103
  return null
105
104
  }
106
105
  } else {
107
106
  console.log(
108
107
  '3|isv模块渲染异常,缺少modularPackResult==========modularPackResult: ',
109
108
  modularPackResultObj,
110
109
  )
111
110
  sgmCustomReport({
112
111
  code: 'isvModuleError',
113
112
  msg: opt,
114
113
  })
115
114
  return null
116
115
  }
117
116
  } catch (err) {
118
117
  console.log('3|isv模块渲染异常,floorItem逻辑错误==========err: ', err)
119
118
  sgmCustomReport({
120
119
  code: 'isvModuleError',
121
120
  msg: {
122
121
  msg: 'remoteFloorItem try catch 异常',
123
122
  err
124
123
  },
125
124
  })
126
125
  return null
127
126
  }
128
127
  })()
129
128
  if (renderResult === null) {
130
129
  updateContainerFloorListDataFn &&
131
130
  updateContainerFloorListDataFn({
132
131
  type: 'filter',
133
132
  containerId: floorData?.uid,
134
133
  })
135
134
  console.log('renderResult === null: 命中了!')
136
135
  taroEventSendPageScrollInfo()
137
136
  } else {
138
137
  console.log('renderResult !== null: 没命中', renderResult)
139
138
  }
140
139
  return renderResult
140
+ import React, { Suspense, lazy } from 'react'
141
141
  const { floorData, renderSourceType, updateContainerFloorListDataFn } = props
142
142
  const dataDefines = getFloorDataToDataDefines(floorData)
143
143
 
144
144
  const getFloorSetHeight = (item) => {
145
145
  const getHeight = item?.floorExtInfo?.floorHeight
146
146
  ? Number(item?.floorExtInfo?.floorHeight)
147
147
  : 200
148
148
  return getHeight > 0 ? getHeight : 200
149
149
  }
150
150
  console.log(
151
151
  '>>>>>>>>>> floorModuleType === FloorModuleType.ISVDESIGNERH5MODULE >>>>>>>>>>',
152
152
  )
153
153
  const renderResult = (() => {
154
154
  try {
155
155
  console.log('>>>>>>>>>> 开始渲染1个isv模块 >>>>>>>>>>')
156
156
  console.log(
157
157
  '==========当前业务类型renderSourceType、楼层floorId: ',
158
158
  renderSourceType,
159
159
  floorData.uid,
160
160
  )
161
161
  const modularPackResult = floorData?.floorExtInfo?.modularPackResult
162
162
  const modularPackResultObj =
163
163
  typeof modularPackResult === 'string'
164
164
  ? JSON.parse(modularPackResult)
165
165
  : modularPackResult
166
166
  const opt = {
167
167
  msg: `店铺首页isv h5楼层隐藏不显示。原因:modularPackResult数据不完备。页面类型-buildType: ${buildType}。楼层顺序-floorIdx: ${floorData?.floorIdx}`,
168
168
  buildType,
169
169
  uid: floorData?.uid,
170
170
  floorIdx: floorData?.floorIdx,
171
171
  shopId: floorData?.floorExtInfo?.shopId,
172
172
  moduleId: floorData?.moduleId,
173
173
  moduleName: floorData?.moduleName,
174
174
  middleTemplateId: floorData?.middleTemplateId,
175
175
  modularPackResult: modularPackResult,
176
176
  }
177
177
  if (modularPackResultObj) {
178
178
  const { bundleUrl, bundleFileName } = modularPackResultObj
179
179
  if (bundleUrl && bundleFileName) {
180
180
  let ISVModule =
181
181
  taroJdBaseInfo?.renderedIsvComponents[
182
182
  `${floorData.uid}_${bundleFileName}`
183
183
  ] || null
184
184
  if (!ISVModule) {
185
185
  ISVModule = lazy(
186
186
  () => import(bundleFileName + '@@@@@@' + bundleUrl),
187
187
  )
188
188
  console.log(
189
189
  '1|加载isv模块==========走lazy import生成新的isv模块react组件',
190
190
  bundleFileName,
191
191
  )
192
192
  taroJdBaseInfo.renderedIsvComponents[
193
193
  `${floorData.uid}_${bundleFileName}`
194
194
  ] = ISVModule
195
195
  console.log(
196
196
  '2|渲染isv模块的react组件==========,window.taroJshopH5WebpackJsonp上的组件是否已就绪: ',
197
197
  bundleFileName,
198
198
  window['taroJshopH5WebpackJsonp'].find(
199
199
  (item) => item[0][0] == bundleFileName,
200
200
  ),
201
201
  )
202
202
  } else {
203
203
  console.log(
204
204
  '1|加载isv模块==========不走lazy import生成新的isv模块react组件,从已加载中获取,taroJdBaseInfo: ',
205
205
  taroJdBaseInfo,
206
206
  )
207
207
  console.log(
208
208
  '2|渲染isv模块的react组件==========,taroJdBaseInfo.renderedIsvComponents上的组件是否已就绪: ',
209
209
  taroJdBaseInfo.renderedIsvComponents[
210
210
  `${floorData.uid}_${bundleFileName}`
211
211
  ],
212
212
  )
213
213
  }
214
214
  const _floorHeight = getFloorSetHeight(floorData)
215
215
  return (
216
216
  <ErrorBoundary {...props}>
217
217
  <Suspense
218
218
  fallback={
219
219
  <View
220
220
  style={{
221
221
  position: 'relative',
222
222
  background: `#ffffff url('${JD_PLACEHOLDER_IMG}') center center no-repeat`,
223
223
  height: `${_floorHeight}px`,
224
224
  }}
225
225
  ></View>
226
226
  }
227
227
  >
228
228
  <ISVFloor {...props} dataDefines={dataDefines}>
229
229
  <ISVModule {...props} dataDefines={dataDefines}></ISVModule>
230
230
  </ISVFloor>
231
231
  </Suspense>
232
232
  </ErrorBoundary>
233
233
  )
234
234
  } else {
235
235
  console.log(
236
236
  '3|isv模块渲染异常,modularPackResult中缺少bundleUrl或bundleFileName==========modularPackResult: ',
237
237
  modularPackResultObj,
238
238
  )
239
239
  sgmCustomReport({
240
240
  code: 'isvModuleError',
241
241
  msg: opt,
242
242
  })
243
243
  return null
244
244
  }
245
245
  } else {
246
246
  console.log(
247
247
  '3|isv模块渲染异常,缺少modularPackResult==========modularPackResult: ',
248
248
  modularPackResultObj,
249
249
  )
250
250
  sgmCustomReport({
251
251
  code: 'isvModuleError',
252
252
  msg: opt,
253
253
  })
254
254
  return null
255
255
  }
256
256
  } catch (err) {
257
257
  console.log('3|isv模块渲染异常,floorItem逻辑错误==========err: ', err)
258
258
  sgmCustomReport({
259
259
  code: 'isvModuleError',
260
260
  msg: {
261
261
  msg: 'remoteFloorItem try catch 异常',
262
262
  err
263
263
  },
264
264
  })
265
265
  return null
266
266
  }
267
267
  })()
268
268
  if (renderResult === null) {
269
269
  updateContainerFloorListDataFn &&
270
270
  updateContainerFloorListDataFn({
271
271
  type: 'filter',
272
272
  containerId: floorData?.uid,
273
273
  })
274
274
  console.log('renderResult === null: 命中了!')
275
275
  taroEventSendPageScrollInfo()
276
276
  } else {
277
277
  console.log('renderResult !== null: 没命中', renderResult)
278
278
  }
279
279
  return renderResult
@@ -1 +1 @@
1
- import Taro from '@tarojs/taro'
2
1
  floorVideInfo: object
2
+ import Taro from '@tarojs/taro'
@@ -1 +1 @@
1
- import React from 'react'
2
1
  subMessage?: string
3
2
  floorLoadWay?: number
4
3
  showCommonFloorHead?: boolean
5
4
  isRealTimeRender: boolean
6
5
  customErrorIsvFloorModule?: React.ReactElement | undefined
7
6
  containerIndex?: number
8
7
  containerData?: any
9
8
  shopTotalInfo?: any
10
9
  selectContainerFn?: Function
11
10
  selectContainerId?: string
12
11
  placeHolderPreContainerId?: string
13
12
  children?: any
14
13
  style?: {
15
14
  [key: string]: any
16
15
  };
17
16
  layoutLeftRightMargin?: number
18
17
  }
19
18
  onFormSubmit?: Function
20
19
  onFormReset?: Function
21
20
  isFormDialog?: boolean
22
21
  forbiddenBgScrollState?: boolean
22
+ import React from 'react'
23
23
  subMessage?: string
24
24
  showCommonFloorHead?: boolean
25
25
  customErrorIsvFloorModule?: React.ReactElement | undefined
26
26
  containerIndex?: number
27
27
  containerData?: any
28
28
  shopTotalInfo?: any
29
29
  selectContainerFn?: Function
30
30
  selectContainerId?: string
31
31
  placeHolderPreContainerId?: string
32
32
  children?: any
33
33
  style?: {
34
34
  [key: string]: any
35
35
  };
36
36
  layoutLeftRightMargin?: number
37
37
  }
38
38
  onFormSubmit?: Function
39
39
  onFormReset?: Function
40
40
  isFormDialog?: boolean
41
41
  forbiddenBgScrollState?: boolean
@@ -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
  }
25
24
  export interface jumpWebUrl {
26
25
  mshop: string
27
26
  pages: string
28
27
  pcCoupon: string
29
28
  couponSearch: string
30
29
  pcCouponSearch: string
31
30
  shopSecondActivity: string
32
31
  shopLight: string
33
32
  detail: string
34
33
  pcDetail: string
35
34
  mobileHome: string
36
35
  rank: string
37
36
  wqShopMember: string
38
37
  wqShopDetail: string
39
38
  wqShopSearch: string
40
39
  shopMember: string
41
40
  shopMemberPointDetail: string
42
41
  shopMemberBenefit: string
43
42
  shopMemberRule: string
44
43
  shopMemberCloseAccount: string
45
44
  shopMemberPointExchange: string
46
45
  shopMemberBonusPurchase: string
47
46
  shopMemberGood: string
48
47
  beanDetail: string
49
48
  totalPromotion: string
50
49
  mLive: string
51
50
  shopHome: string
52
51
  shopIntroduce: string
53
52
  shopSearch: string
54
53
  shopLottery: string
55
54
  shopCoupon: string
56
55
  shopWares: string
57
56
  shopFastShopping: string
58
57
  shopSpeciSeckill: string
59
58
  shopVideos: string
60
59
  shopUseShareOrderUgcContent: string
61
60
  dongDongChat: string
62
61
  samCenter: string
63
62
  samCard: string
64
63
  shopH5MemberCardAPP: string
65
64
  shopH5MemberCardM: string
66
65
  }
67
66
  export interface EventReportConfig {
68
67
  routerInfo: RouterInfo
69
68
  nativeEvent: any
70
69
  }
71
70
  export interface OptEventLogParams {
72
71
  eventId?: string
73
72
  eventParam?: string | object
74
73
  pTag?: string
75
74
  jsonParam?: {
76
75
  [key: string]: any
77
76
  }
78
77
  skuId?: string | number
79
78
  eventLevel?: string
80
79
  exposureState?: boolean
81
80
  otherParams?: object
82
81
  }
83
82
 
84
83
  export interface JumpH5ReportConfig {
85
84
  shopId?: number | string
86
85
  venderId?: number | string
87
86
  sourceValue?: string
88
87
  sourceType?: string
89
88
  }
90
89
  export interface JumpEventReportInit extends EventReportConfig {
91
90
  getConfig(opt): EventReportConfig
92
91
  updateInfo(routerInfo, logPname): void
93
92
  }
94
93
  export interface CouponUrlParams {
95
94
  batchId: number
96
95
  bindType: number
97
96
  startTime?: number
98
97
  endTime?: number
99
98
  quangoufrom?: number
100
99
  sceneId?: number
101
100
  }
102
101
  export interface JdMiniJumpParams {
103
102
  param: string | object
104
103
  sourceValue: string
105
104
  sourceType: string
106
105
  des?: any
107
106
  logEventInfo?: object
108
107
  }
109
108
  export interface LinkMiniParams {
110
109
  param?: {
111
110
  pageType?: string
112
111
  }
113
112
  appId?: string | number
114
113
  path?: string
115
114
  }
116
115
  export interface JdJumpWxappReportConfig {
117
116
  wxApiVersion: string
118
117
  wxApiUrl: string
119
118
  wqReportUrl: string
120
119
  }
120
+ export declare namespace JumpEventReportInterFace {
121
121
  export interface ShopIdsInfo {
122
122
  shopId?: number | string
123
123
  venderId?: number | string
124
124
  logEventInfo?: object
125
125
  type?: string
126
126
  }
127
127
  export interface RouterInfo {
128
128
  params: any
129
129
  pageParamStr?: string
130
130
  [key: string]: any
131
131
  }
132
132
  export interface JumpMiniPath {
133
133
  shop: string
134
134
  shopx: string
135
135
  detail: string
136
136
  searchCoupon: string
137
137
  h5: string
138
138
  jingGouHome: string
139
139
  shopFans: string
140
140
  shopLight: string
141
141
  couponSearch: string
142
142
  shopSearch: string
143
143
  }
144
144
  export interface jumpWebUrl {
145
145
  mshop: string
146
146
  pages: string
147
147
  couponSearch: string
148
148
  shopSecondActivity: string
149
149
  shopLight: string
150
150
  detail: string
151
151
  mobileHome: string
152
152
  rank: string
153
153
  wqShopMember: string
154
154
  wqShopDetail: string
155
155
  wqShopSearch: string
156
156
  shopMember: string
157
157
  shopMemberPointDetail: string
158
158
  shopMemberBenefit: string
159
159
  shopMemberRule: string
160
160
  shopMemberCloseAccount: string
161
161
  shopMemberPointExchange: string
162
162
  shopMemberBonusPurchase: string
163
163
  shopMemberGood: string
164
164
  beanDetail: string
165
165
  totalPromotion: string
166
166
  mLive: string
167
167
  shopHome: string
168
168
  shopIntroduce: string
169
169
  shopSearch: string
170
170
  shopLottery: string
171
171
  shopCoupon: string
172
172
  shopWares: string
173
173
  shopFastShopping: string
174
174
  shopSpeciSeckill: string
175
175
  shopVideos: string
176
176
  shopUseShareOrderUgcContent: string
177
177
  dongDongChat: string
178
178
  samCenter: string
179
179
  samCard: string
180
180
  shopH5MemberCardAPP: string
181
181
  shopH5MemberCardM: string
182
182
  }
183
183
  export interface EventReportConfig {
184
184
  routerInfo: RouterInfo
185
185
  nativeEvent: any
186
186
  }
187
187
  export interface OptEventLogParams {
188
188
  eventId?: string
189
189
  eventParam?: string | object
190
190
  pTag?: string
191
191
  jsonParam?: {
192
192
  [key: string]: any
193
193
  }
194
194
  skuId?: string | number
195
195
  eventLevel?: string
196
196
  exposureState?: boolean
197
197
  otherParams?: object
198
198
  }
199
199
 
200
200
  export interface JumpH5ReportConfig {
201
201
  shopId?: number | string
202
202
  venderId?: number | string
203
203
  sourceValue?: string
204
204
  sourceType?: string
205
205
  }
206
206
  export interface JumpEventReportInit extends EventReportConfig {
207
207
  getConfig(opt): EventReportConfig
208
208
  updateInfo(routerInfo, logPname): void
209
209
  }
210
210
  export interface CouponUrlParams {
211
211
  batchId: number
212
212
  bindType: number
213
213
  startTime?: number
214
214
  endTime?: number
215
215
  quangoufrom?: number
216
216
  sceneId?: number
217
217
  }
218
218
  export interface JdMiniJumpParams {
219
219
  param: string | object
220
220
  sourceValue: string
221
221
  sourceType: string
222
222
  des?: any
223
223
  logEventInfo?: object
224
224
  }
225
225
  export interface LinkMiniParams {
226
226
  param?: {
227
227
  pageType?: string
228
228
  }
229
229
  appId?: string | number
230
230
  path?: string
231
231
  }
232
232
  export interface JdJumpWxappReportConfig {
233
233
  wxApiVersion: string
234
234
  wxApiUrl: string
235
235
  wqReportUrl: string
236
236
  }
@@ -1 +1 @@
1
- import { ComponentInterFace } from './component'
2
1
  pcCoupon: string
3
2
  pcSo: string
4
3
  mobileLogin: string
5
4
  isLogin: string
5
+ import { ComponentInterFace } from './component'
6
6
  mobileLogin: string
7
7
  isLogin: string