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

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 (33) hide show
  1. package/dist/common/const.ts +1 -1
  2. package/dist/common/index.h5.ts +1 -1
  3. package/dist/common/index.jd.ts +1 -1
  4. package/dist/common/index.ts +1 -1
  5. package/dist/common/index.weapp.ts +1 -1
  6. package/dist/common/jssdk.ts +1 -1
  7. package/dist/common/pageType.ts +1 -0
  8. package/dist/common/token/index.h5.ts +1 -1
  9. package/dist/common/token/token.jd.ts +1 -1
  10. package/dist/components/base/CustomScrollView/index.tsx +1 -1
  11. package/dist/components/base/ExposureSmart/reporter.tsx +1 -1
  12. package/dist/components/base/MobileCommonHeader/index.module.scss +9 -0
  13. package/dist/components/base/MobileCommonHeader/index.tsx +1 -0
  14. package/dist/components/base/NetworkDataError/index.tsx +1 -1
  15. package/dist/components/base/Price/Double/index.tsx +1 -1
  16. package/dist/components/base/Price/index.tsx +1 -1
  17. package/dist/components/decorate/DecorateFloorModule/index.module.scss +21 -2
  18. package/dist/components/decorate/DecorateFloorModule/index.tsx +1 -1
  19. package/dist/components/decorate/EmptyFloorModule/index.tsx +1 -1
  20. package/dist/interface/component.ts +1 -1
  21. package/dist/jumpEventReport/const.ts +1 -1
  22. package/dist/jumpEventReport/logEventConfig.ts +1 -1
  23. package/dist/jumpEventReport/web.base.ts +1 -1
  24. package/dist/jumpEventReport/web.jd.ts +1 -1
  25. package/dist/jumpEventReport/web.wxapp.ts +1 -1
  26. package/dist/open/api/environment.ts +1 -1
  27. package/dist/open/api/index.ts +1 -1
  28. package/dist/open/components/index.ts +1 -1
  29. package/dist/service/fetchGateway.ts +1 -1
  30. package/dist/service/http/const.ts +1 -1
  31. package/dist/service/requestServer.ts +1 -1
  32. package/dist/utils/utils.ts +1 -1
  33. package/package.json +1 -1
@@ -1 +1 @@
1
- import React from 'react';
2
1
  const result = String(strPrice).match(/(-?\d+)\.?(\d+)?/);
3
2
  if(result && Number(result[0]) > 0){
4
3
  return {
5
4
  integerPrice: result[1],
6
5
  decimalPrice: (result[2] || '').replace(/0+$/, '')
7
6
  }
8
7
  }else{
9
8
  return null;
10
9
  }
11
10
  const {
12
11
  jdPrice,
13
12
  finalPrice,
14
13
  priceText = '',
15
14
  priceType,
16
15
  hitUserIdentity = false,
17
16
  isAuctionWare,
18
17
  fallbackRender = null,
19
18
  className = null,
20
19
  style = {},
21
20
  childrenClassName = null,
22
21
  bigNoPriceClassName = null,
23
22
  bigSymbolClassName = null,
24
23
  bigIntegerClassName = null,
25
24
  bigDecimalClassName = null,
26
25
  priceDescClassName = null,
27
26
  smallPriceClassName = null,
28
27
  lineNumber = 1,
29
28
  size = 'M'
30
29
  } = props
31
30
  const especialHitStyleType = {
32
31
  7: 'plusStyle',
33
32
  9: 'samStyle'
34
33
  }
35
34
  const especialMissStyleType = {
36
35
  7: 'plusStyle',
37
36
  8: 'fansStyle',
38
37
  9: 'samStyle',
39
38
  10: 'studentStyle',
40
39
  12: 'yhdStyle',
41
40
  13: 'memberStyle'
42
41
  }
43
42
  const isNoPrice = priceType === 4
44
43
  const isUseFinalPriceAsBigPrice = [1, 2, 6, 14, 16, 17, 18].includes(priceType)
45
44
  const isEquivalentHit = isUseFinalPriceAsBigPrice || hitUserIdentity
46
45
  const bigPriceObj = getDeconstructPrice(isEquivalentHit? finalPrice: jdPrice)
47
46
  if(isAuctionWare || (!isNoPrice && bigPriceObj === null)){
48
47
  return fallbackRender
49
48
  }
50
49
  const {integerPrice, decimalPrice = ''} = bigPriceObj || {}
51
50
  const isOnlyShowBigPrice = priceType === 3
52
51
  const isHideSmallPrice = priceType === 14
53
52
  const smallPrice = isEquivalentHit? jdPrice: finalPrice
54
53
  const isPriceDescInFront = isEquivalentHit
55
54
  const hitColorStyle = isEquivalentHit? styles[especialHitStyleType[priceType]]: null
56
55
  const missColorStyle = isEquivalentHit? null: styles[especialMissStyleType[priceType]]
57
56
  const isBigPriceHasDecimal = decimalPrice !== '' && !/^0+$/.test(decimalPrice)
58
57
  const sizeLineHeight = {
59
58
  'XS': 28,
60
59
  'S': 34,
61
60
  'M': 40,
62
61
  'L': 46,
63
62
  'XL': 52
64
63
  }
65
64
  const lineHeight = Taro.pxTransform(sizeLineHeight[size] * 1.25)
66
65
  const wrapHeight = Taro.pxTransform(sizeLineHeight[size] * 1.25 * lineNumber)
67
66
  const computedHeightStyle = {
68
67
  height: wrapHeight
69
68
  }
70
69
  const itemCommonStyle = {
71
70
  height: lineHeight
72
71
  }
73
72
  const needSizeStyles = ['bigNoPrice', 'bigSymbol', 'bigInteger', 'bigDecimal', 'priceDesc', 'smallPrice']
74
73
  const sizeStyles = needSizeStyles.reduce((acc, cur) => {
75
74
  acc[cur] = styles[cur + size]
76
75
  return acc
77
76
  }, {})
78
77
  const noPriceShowText = priceText || (/^[\u4e00-\u9fa5]+$/.test(jdPrice)? jdPrice: '')
79
78
  return (
80
79
  <View className={classNames(styles.wrap, className)} style={{...computedHeightStyle, ...style}}>
81
80
  {isNoPrice?
82
81
  <Text className={classNames(styles.childStyle, styles.bigStyle, styles.bigNoPrice, sizeStyles['bigNoPrice'], childrenClassName, bigNoPriceClassName)} style={{...itemCommonStyle}}>{noPriceShowText}</Text>
83
82
  :
84
83
  [
85
84
  <Text className={classNames(styles.childStyle, styles.bigStyle, styles.bigSymbol, sizeStyles['bigSymbol'], hitColorStyle, childrenClassName, bigSymbolClassName)} key="bigSymbol" style={{...itemCommonStyle}}>¥</Text>,
86
85
  <Text className={classNames(styles.childStyle, styles.bigStyle, styles.bigInteger, sizeStyles['bigInteger'], hitColorStyle, !isOnlyShowBigPrice && !isBigPriceHasDecimal && !isPriceDescInFront ? styles.rightMargin : null, childrenClassName, bigIntegerClassName)} key="bigInteger" style={{...itemCommonStyle}}>{integerPrice}</Text>,
87
86
  isBigPriceHasDecimal?
88
87
  <Text className={classNames(styles.childStyle, styles.bigStyle, styles.bigDecimal, sizeStyles['bigDecimal'], hitColorStyle, isPriceDescInFront ? null : styles.rightMargin, childrenClassName, bigDecimalClassName)} key="bigDecimal" style={{...itemCommonStyle}}>.{decimalPrice}</Text>
89
88
  :
90
89
  null
91
90
  ,
92
91
  !isOnlyShowBigPrice && [
93
92
  isPriceDescInFront && <Text className={classNames(styles.childStyle, styles.priceDesc, sizeStyles['priceDesc'], styles.bigStyle, hitColorStyle, isPriceDescInFront ? styles.rightMargin : null, childrenClassName, priceDescClassName)} key="descFront" style={{...itemCommonStyle}}>{priceText}</Text>,
94
93
  smallPrice && !isHideSmallPrice ? <Text className={classNames(styles.childStyle, styles.smallPrice, sizeStyles['smallPrice'], styles.smallStyle, missColorStyle, childrenClassName, smallPriceClassName)} key="smallPrice" style={{...itemCommonStyle}}>¥{smallPrice}</Text> : null,
95
94
  !isPriceDescInFront && <Text className={classNames(styles.childStyle, styles.priceDesc, sizeStyles['priceDesc'], styles.smallStyle, styles.missPriceDesc, missColorStyle, childrenClassName, priceDescClassName)} key="descBack" style={{...itemCommonStyle}}>{priceText}</Text>
96
95
  ]
97
96
  ]
98
97
  }
99
98
  </View>
100
99
  )
100
+ import React from 'react';
101
101
  const result = String(strPrice).match(/(-?\d+)\.?(\d+)?/);
102
102
  if(result && Number(result[0]) > 0){
103
103
  return {
104
104
  integerPrice: result[1],
105
105
  decimalPrice: (result[2] || '').replace(/0+$/, '')
106
106
  }
107
107
  }else{
108
108
  return null;
109
109
  }
110
110
  const {
111
111
  jdPrice,
112
112
  finalPrice,
113
113
  priceText = '',
114
114
  priceType,
115
115
  hitUserIdentity = false,
116
116
  isAuctionWare,
117
117
  fallbackRender = null,
118
118
  className = null,
119
119
  style = {},
120
120
  childrenClassName = null,
121
121
  bigNoPriceClassName = null,
122
122
  bigSymbolClassName = null,
123
123
  bigIntegerClassName = null,
124
124
  bigDecimalClassName = null,
125
125
  priceDescClassName = null,
126
126
  smallPriceClassName = null,
127
127
  lineNumber = 1,
128
128
  size = 'M',
129
129
  isDefaultRemoveSmallPrice = false
130
130
  } = props
131
131
  const especialHitStyleType = {
132
132
  7: 'plusStyle',
133
133
  9: 'samStyle'
134
134
  }
135
135
  const especialMissStyleType = {
136
136
  7: 'plusStyle',
137
137
  8: 'fansStyle',
138
138
  9: 'samStyle',
139
139
  10: 'studentStyle',
140
140
  12: 'yhdStyle',
141
141
  13: 'memberStyle'
142
142
  }
143
143
  const isNoPrice = priceType === 4
144
144
  const isUseFinalPriceAsBigPrice = [1, 2, 6, 14, 16, 17, 18].includes(priceType)
145
145
  const isEquivalentHit = isUseFinalPriceAsBigPrice || hitUserIdentity
146
146
  const bigPriceObj = getDeconstructPrice(isEquivalentHit? finalPrice: jdPrice)
147
147
  if(isAuctionWare || (!isNoPrice && bigPriceObj === null)){
148
148
  return fallbackRender
149
149
  }
150
150
  const {integerPrice, decimalPrice = ''} = bigPriceObj || {}
151
151
  const isOnlyShowBigPrice = priceType === 3
152
152
  const isHideSmallPrice = priceType === 14 || isDefaultRemoveSmallPrice
153
153
  const smallPrice = isEquivalentHit? jdPrice: finalPrice
154
154
  const isPriceDescInFront = isEquivalentHit
155
155
  const hitColorStyle = isEquivalentHit? styles[especialHitStyleType[priceType]]: null
156
156
  const missColorStyle = isEquivalentHit? null: styles[especialMissStyleType[priceType]]
157
157
  const isBigPriceHasDecimal = decimalPrice !== '' && !/^0+$/.test(decimalPrice)
158
158
  const sizeLineHeight = {
159
159
  'XS': 28,
160
160
  'S': 34,
161
161
  'M': 40,
162
162
  'L': 46,
163
163
  'XL': 52
164
164
  }
165
165
  const lineHeight = Taro.pxTransform(sizeLineHeight[size] * 1.25)
166
166
  const wrapHeight = Taro.pxTransform(sizeLineHeight[size] * 1.25 * lineNumber)
167
167
  const computedHeightStyle = {
168
168
  height: wrapHeight
169
169
  }
170
170
  const itemCommonStyle = {
171
171
  height: lineHeight
172
172
  }
173
173
  const needSizeStyles = ['bigNoPrice', 'bigSymbol', 'bigInteger', 'bigDecimal', 'priceDesc', 'smallPrice']
174
174
  const sizeStyles = needSizeStyles.reduce((acc, cur) => {
175
175
  acc[cur] = styles[cur + size]
176
176
  return acc
177
177
  }, {})
178
178
  const noPriceShowText = priceText || (/^[\u4e00-\u9fa5]+$/.test(jdPrice)? jdPrice: '')
179
179
  return (
180
180
  <View className={classNames(styles.wrap, className)} style={{...computedHeightStyle, ...style}}>
181
181
  {isNoPrice?
182
182
  <Text className={classNames(styles.childStyle, styles.bigStyle, styles.bigNoPrice, sizeStyles['bigNoPrice'], childrenClassName, bigNoPriceClassName)} style={{...itemCommonStyle}}>{noPriceShowText}</Text>
183
183
  :
184
184
  [
185
185
  <Text className={classNames(styles.childStyle, styles.bigStyle, styles.bigSymbol, sizeStyles['bigSymbol'], hitColorStyle, childrenClassName, bigSymbolClassName)} key="bigSymbol" style={{...itemCommonStyle}}>¥</Text>,
186
186
  <Text className={classNames(styles.childStyle, styles.bigStyle, styles.bigInteger, sizeStyles['bigInteger'], hitColorStyle, !isOnlyShowBigPrice && !isBigPriceHasDecimal && !isPriceDescInFront ? styles.rightMargin : null, childrenClassName, bigIntegerClassName)} key="bigInteger" style={{...itemCommonStyle}}>{integerPrice}</Text>,
187
187
  isBigPriceHasDecimal?
188
188
  <Text className={classNames(styles.childStyle, styles.bigStyle, styles.bigDecimal, sizeStyles['bigDecimal'], hitColorStyle, isPriceDescInFront ? null : styles.rightMargin, childrenClassName, bigDecimalClassName)} key="bigDecimal" style={{...itemCommonStyle}}>.{decimalPrice}</Text>
189
189
  :
190
190
  null
191
191
  ,
192
192
  !isOnlyShowBigPrice && [
193
193
  isPriceDescInFront && <Text className={classNames(styles.childStyle, styles.priceDesc, sizeStyles['priceDesc'], styles.bigStyle, hitColorStyle, isPriceDescInFront ? styles.rightMargin : null, childrenClassName, priceDescClassName)} key="descFront" style={{...itemCommonStyle}}>{priceText}</Text>,
194
194
  <view style={{
195
195
  display: 'inline-flex'
196
196
  }}>
197
197
  {smallPrice && !isHideSmallPrice ? <Text className={classNames(styles.childStyle, styles.smallPrice, sizeStyles['smallPrice'], styles.smallStyle, missColorStyle, childrenClassName, smallPriceClassName)} key="smallPrice" style={{...itemCommonStyle}}>¥{smallPrice}</Text> : null}
198
198
  {!isPriceDescInFront && !isHideSmallPrice && <Text className={classNames(styles.childStyle, styles.priceDesc, sizeStyles['priceDesc'], styles.smallStyle, styles.missPriceDesc, missColorStyle, childrenClassName, priceDescClassName)} key="descBack" style={{...itemCommonStyle}}>{priceText}</Text>}
199
199
  </view>
200
200
  ]
201
201
  ]
202
202
  }
203
203
  </View>
204
204
  )
@@ -1 +1 @@
1
- import React from 'react'
2
1
  <BasePrice {...props}/>
3
2
  :
4
3
  <DoublePrice {...props} />
4
+ import React from 'react'
5
5
  if (props.priceType === undefined) {
6
6
  if (props.value === undefined) {
7
7
  if (props.jdPrice === undefined) {
8
8
  return null
9
9
  } else {
10
10
  return <BasePrice {...props} value={props.jdPrice} />
11
11
  }
12
12
  } else {
13
13
  return <BasePrice {...props} />
14
14
  }
15
15
  } else {
16
16
  return <DoublePrice {...props} />
17
17
  }
@@ -1,12 +1,19 @@
1
1
 
2
- .d-container-item {
2
+ .d-container-item, .d-container-item-trusteeship {
3
3
  position: relative;
4
4
  overflow: hidden;
5
5
  z-index: 3;
6
6
  &:first-child {
7
7
  z-index: 1;
8
8
  }
9
- &.d-container-item-active {
9
+
10
+ &.d-container-item-hide{
11
+ display: none;
12
+ }
13
+ }
14
+
15
+ .d-container-item{
16
+ &.d-container-item-active {
10
17
  :global {
11
18
  .d-decorate-floor-item {
12
19
  .d-floor-selected-border {
@@ -16,3 +23,15 @@
16
23
  }
17
24
  }
18
25
  }
26
+
27
+ .d-container-item-trusteeship{
28
+ &.d-container-item-active {
29
+ :global {
30
+ .d-decorate-floor-item {
31
+ .d-floor-selected-border {
32
+ border: 4px solid #4A82F2 !important;
33
+ }
34
+ }
35
+ }
36
+ }
37
+ }
@@ -1 +1 @@
1
- import { View } from '@tarojs/components'
2
1
  selectContainerId,
3
2
  placeHolderPreContainerId,
4
3
  containerData,
5
4
  children,
6
5
  style,
7
6
  shopTotalInfo,
8
7
  } = props;
9
8
  return children ? children : null;
10
9
  }, [containerData, shopTotalInfo]);
11
10
  data-container-empty={containerData?.floors?.[0]?.configEmpty || 'false'}
11
+ import { View } from '@tarojs/components'
12
12
  const {
13
13
  selectContainerId,
14
14
  placeHolderPreContainerId,
15
15
  containerData,
16
16
  children,
17
17
  style,
18
18
  shopTotalInfo,
19
19
  urlQueryData
20
20
  } = props;
21
21
  const { isTrusteeship = false } = urlQueryData || {}
22
22
  const selectContainerState = selectContainerId == containerData?.containerId
23
23
  const ChildrenComponent = useCallback(() => {
24
24
  return children ? children : null;
25
25
  }, [containerData, shopTotalInfo]);
26
26
  const isHideFloor = isTrusteeship && containerData?.floors?.[0]?.status === -1
27
27
  return (
28
28
  <View
29
29
  className={classNames(
30
30
  decorateModuleStyle[isTrusteeship ? 'd-container-item-trusteeship' : 'd-container-item'],
31
31
  'J_container',
32
32
  {
33
33
  [decorateModuleStyle['d-container-item-active']]:
34
34
  selectContainerState,
35
35
  },
36
36
  {
37
37
  J_floorItemActive: selectContainerState,
38
38
  },
39
39
  {
40
40
  [decorateModuleStyle['d-container-item-hide']]:
41
41
  isHideFloor,
42
42
  }
43
43
  )}
44
44
  id={`J_container_${containerData?.containerId}`}
45
45
  data-container-id={containerData?.containerId}
46
46
  data-container-type={containerData?.typeCode}
47
47
  data-container-cn={containerData?.typeCn}
48
48
  data-container-floorFlag={containerData?.extInfo?.floorFlag || ''}
49
49
  data-container-moduleInstanceType={containerData?.extInfo?.moduleInstanceType || ''}
50
50
  data-container-position={containerData?.containerPosition}
51
51
  data-container-alias={
52
52
  containerData?.containerAlias
53
53
  ? containerData?.containerAlias
54
54
  : ''
55
55
  }
56
56
  data-container-empty={containerData?.floors?.[0]?.configEmpty || 'false'}
57
57
  style={
58
58
  containerData?.typeCode !== ContainerShopHeaderType ? style : {}
59
59
  }
60
60
  >
61
61
  <input
62
62
  type="hidden"
63
63
  value={`container_${containerData?.containerId}`}
64
64
  />
65
65
  <ChildrenComponent />
66
66
  <PlaceHolder
67
67
  placeHolderPreContainerId={placeHolderPreContainerId}
68
68
  containerId={containerData?.containerId}
69
69
  />
70
70
  </View>
71
71
  )
@@ -1 +1 @@
1
- import { View, Text } from '@tarojs/components'
2
1
  '//img11.360buyimg.com/imagetools/jfs/t1/141506/22/31698/7923/637b6db9E2af80265/10e76e2c31e0e356.png'
3
2
  const newModuleFloorTypeList = [100, 101, 100000, 99999]
4
3
  const isNewFloorState = newModuleFloorTypeList.includes(moduleType)
5
4
  if ((moduleType == 99999 || moduleType == 101) && !previewUri) {
5
+ import { View, Text } from '@tarojs/components'
6
6
  '//img11.360buyimg.com/imagetools/jfs/t1/141506/22/31698/7923/637b6db9E2af80265/10e76e2c31e0e356.png'
7
7
  const newModuleFloorTypeList = [100, 101, 100000, 99999]
8
8
  const isNewFloorState = newModuleFloorTypeList.includes(moduleType)
9
9
  if ((moduleType == 99999 || moduleType == 101) && !previewUri) {
10
10
  if (moduleFlag && TRUSTEESHIP_MODULE_FLAG_LIST.indexOf(moduleFlag) !== -1) return null
@@ -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
  floorLoadWay?: number
25
25
  showCommonFloorHead?: boolean
26
26
  isRealTimeRender: boolean
27
27
  customErrorIsvFloorModule?: React.ReactElement | undefined
28
28
  containerIndex?: number
29
29
  containerData?: any
30
30
  shopTotalInfo?: any
31
31
  selectContainerFn?: Function
32
32
  selectContainerId?: string
33
33
  placeHolderPreContainerId?: string
34
34
  children?: any
35
35
  style?: {
36
36
  [key: string]: any
37
37
  };
38
38
  layoutLeftRightMargin?: number
39
39
  }
40
40
  onFormSubmit?: Function
41
41
  onFormReset?: Function
42
42
  isFormDialog?: boolean
43
43
  forbiddenBgScrollState?: boolean
@@ -1 +1 @@
1
- import { isH5 } from '../utils'
2
1
  ? 'Terminator_New_Mobile_Shop'
3
2
  : 'W_jdgwxcx_shop'
4
3
  CONFIG_TYPE_NO_LINK = 0,
5
4
  CONFIG_TYPE_SKU_LIST = 1,
6
5
  CONFIG_TYPE_COUPON_LIST = 2,
7
6
  CONFIG_TYPE_CATEGORY = 3,
8
7
  CONFIG_TYPE_JSHOP_MOBILE = 4,
9
8
  CONFIG_TYPE_JSHOP_PC = 5,
10
9
  CONFIG_TYPE_JSHOP_DETAIL = 6,
11
10
  CONFIG_TYPE_CUSTOM_LINK = 7,
12
11
  CONFIG_TYPE_MEMBER = 9,
13
12
  CONFIG_TYPE_SHOP_ACTIVITY = 10,
14
13
  CONFIG_TYPE_SHOP_HOME = 12,
15
14
  CONFIG_TYPE_ANCHOR_POINT = 13,
16
15
  CONFIG_TYPE_SHOPPING_GUIDE = 17,
17
16
  CONFIG_TYPE_MINI_PROGRAM = 18,
18
17
  CONFIG_TYPE_FINANCE_COUPON = 22,
19
18
  CONFIG_TYPE_CATEGORY_PAGE = 25,
19
+ import { isH5 } from '../utils'
20
20
  ? 'Terminator_New_Mobile_Shop'
21
21
  : 'W_jdgwxcx_shop'
22
22
  CONFIG_TYPE_NO_LINK = 0,
23
23
  CONFIG_TYPE_SKU_LIST = 1,
24
24
  CONFIG_TYPE_COUPON_LIST = 2,
25
25
  CONFIG_TYPE_CATEGORY = 3,
26
26
  CONFIG_TYPE_JSHOP_MOBILE = 4,
27
27
  CONFIG_TYPE_JSHOP_PC = 5,
28
28
  CONFIG_TYPE_JSHOP_DETAIL = 6,
29
29
  CONFIG_TYPE_CUSTOM_LINK = 7,
30
30
  CONFIG_TYPE_MEMBER = 9,
31
31
  CONFIG_TYPE_SHOP_ACTIVITY = 10,
32
32
  CONFIG_TYPE_SHOP_HOME = 12,
33
33
  CONFIG_TYPE_ANCHOR_POINT = 13,
34
34
  CONFIG_TYPE_SHOPPING_GUIDE = 17,
35
35
  CONFIG_TYPE_MINI_PROGRAM = 18,
36
36
  CONFIG_TYPE_FINANCE_COUPON = 22,
37
37
  CONFIG_TYPE_CATEGORY_PAGE = 25,
@@ -1 +1 @@
1
- export enum LogPnameInfo {
2
1
  HOME = 'home',
3
2
  MEMBER = 'member',
4
3
  CLASSIFY = 'classify',
5
4
  PROMOTION = 'promotion',
6
5
  WX_SHOP_HOME = 'wx_shop_home',
7
6
  APP_SHOP_DETAIL = 'app_Shop_ShopDetail',
8
7
  MOBILE_SEARCH = 'MShop_SearchResult',
9
8
  APP_SHOP_MEMBER = 'Shop_ShopCard',
10
9
  MOBILE_SEARCH = 'MShop_SearchResult',
11
10
  APP_SHOP_MEMBER = 'Shop_ShopCard'
11
+ export enum LogPnameInfo {
12
12
  HOME = 'home',
13
13
  MEMBER = 'member',
14
14
  CLASSIFY = 'classify',
15
15
  PROMOTION = 'promotion',
16
16
  WX_SHOP_HOME = 'wx_shop_home',
17
17
  APP_SHOP_DETAIL = 'app_Shop_ShopDetail',
18
18
  MOBILE_SEARCH = 'MShop_SearchResult',
19
19
  APP_SHOP_MEMBER = 'Shop_ShopCard',
20
20
  SALE_VIEW = 'Shop_NewActivity',
21
21
  MOBILE_SEARCH = 'MShop_SearchResult',
22
22
  APP_SHOP_MEMBER = 'Shop_ShopCard',
23
23
  SALE_VIEW = 'Shop_NewActivity'