jufubao-base 1.0.56-beta8 → 1.0.56

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.
@@ -28,9 +28,9 @@
28
28
  color: cutIndex === 1 ? '#fff' : mainColor,
29
29
  }"
30
30
  >
31
- <view>使用扫码绑定</view>
31
+ <view>扫码绑定</view>
32
32
  <xd-font-icon
33
- :style="{marginLeft: '15rpx'}"
33
+ :style="{marginLeft: '20rpx'}"
34
34
  size="45"
35
35
  icon="iconsaoma"
36
36
  ></xd-font-icon>
@@ -45,9 +45,9 @@
45
45
  color: cutIndex === 2 ? '#fff' : mainColor,
46
46
  }"
47
47
  >
48
- <view>券号密码绑定</view>
48
+ <view>密码绑定</view>
49
49
  <xd-font-icon
50
- :style="{marginLeft: '15rpx'}"
50
+ :style="{marginLeft: '20rpx'}"
51
51
  size="45"
52
52
  icon="iconyuechi"
53
53
  ></xd-font-icon>
@@ -69,6 +69,7 @@
69
69
  </view>
70
70
  </template>
71
71
  </view>
72
+ <view class="jfb-base-card-entry__body-line" v-if="!notice"></view>
72
73
  <view
73
74
  class="jfb-base-card-entry__body-notice"
74
75
  :style="{ background: noticeBackgroundColor }"
@@ -96,9 +97,7 @@
96
97
  color: dangerColor,
97
98
  fontSize: 26 + 'rpx',
98
99
  }"
99
- >
100
- 该组件未配置数据,因此改模块在正式环境将不显示</view
101
- >
100
+ >该组件未配置数据,因此改模块在正式环境将不显示</view>
102
101
  <view class="jfb-base-card-entry__body-tab">
103
102
  <view
104
103
  @click="tabIndex = 1"
@@ -160,36 +159,47 @@
160
159
  <view class="card-list__other" v-if="item.other_card_point && item.card_point_type === 2">
161
160
  <view><text>购买其他物品可抵:</text><text>{{item.other_card_point}} {{ item.unit }}</text></view>
162
161
  </view>
163
- <view class="card-list__entry" v-if="item.entries.length === 1">
164
- <view @click.stop="handleBindLogin(item,item['entries'][0])" :style="{color: mainColor}">{{login_name}}</view>
165
- </view>
166
- <view class="card-list__nodata" v-if="item.entries.length === 0">暂无支持服务列表</view>
167
- <view class="card-list__entrys" v-if="item.entries.length > 1">
168
- <view class="card-list__entrys-title">
169
- <view>可兑换权益</view>
170
- <view @click="toDetail(item, false)">
171
- <text>查看详情</text>
172
- <xd-font-icon icon="iconxiangyou_xian" color="#999" size="20"></xd-font-icon>
173
- </view>
162
+ <template v-if="tabIndex === 1">
163
+ <view class="card-list__entry" v-if="item.entries.length === 1">
164
+ <view
165
+ @click.stop="handleBindLogin(item,item['entries'][0])"
166
+ :style="{color: item['theme']['color']}"
167
+ >进入{{item['entries'][0]['entry_name']}}</view>
174
168
  </view>
175
- <view class="card-list__entrys-list">
176
- <scroll-view scroll-x class="card-list__entrys-scroll">
177
- <view class="card-list__entrys-item">
178
- <view
179
- v-for="(entry,idx) in item.entries"
180
- :key="idx"
181
- @click.stop="handleBindLogin(item, entry)"
182
- >
183
- <view><image :src="entry.image_url"></image></view>
184
- <view>{{entry|cutstr}}</view>
185
- <view>
186
- <text>去兑换</text>
187
- <xd-font-icon icon="iconxiangyou_xian" color="#999" size="20"></xd-font-icon>
169
+ <view class="card-list__nodata" v-if="item.entries.length === 0">暂无支持服务列表</view>
170
+ <view class="card-list__entrys" v-if="item.entries.length > 1">
171
+ <view class="card-list__entrys-title">
172
+ <view>可兑换权益</view>
173
+ <view @click.stop="toDetail(item, false)">
174
+ <text>查看详情</text>
175
+ <xd-font-icon icon="iconxiangyou_xian" color="#999" size="20"></xd-font-icon>
176
+ </view>
177
+ </view>
178
+ <view class="card-list__entrys-list">
179
+ <scroll-view scroll-x class="card-list__entrys-scroll">
180
+ <view class="card-list__entrys-item">
181
+ <view
182
+ v-for="(entry,idx) in item.entries"
183
+ :key="idx"
184
+ @click.stop="handleBindLogin(item, entry)"
185
+ >
186
+ <view><image :src="entry.image_url"></image></view>
187
+ <view>{{entry|cutstr}}</view>
188
+ <view>
189
+ <text>去兑换</text>
190
+ <xd-font-icon icon="iconxiangyou_xian" color="#999" size="20"></xd-font-icon>
191
+ </view>
188
192
  </view>
189
193
  </view>
190
- </view>
191
- </scroll-view>
194
+ </scroll-view>
195
+ </view>
192
196
  </view>
197
+ </template>
198
+ <view class="card-list__entry" v-else>
199
+ <view
200
+ @click.stop="handleBindLogin(item,item['entries'][0])"
201
+ :style="{color: item['theme']['color']}"
202
+ >票券转换</view>
193
203
  </view>
194
204
  </view>
195
205
  </view>
@@ -229,10 +239,10 @@ import { jfbRootExec } from "@/utils/xd.event";
229
239
  import JfbBaseCardEntryMixin from "./JfbBaseCardEntryMixin";
230
240
  import componentsMixins from "@/mixins/componentsMixins";
231
241
  import extsMixins from "@/mixins/extsMixins";
242
+ import colorCardMixins from "@/mixins/colorCardMixins";
232
243
  import { mapState, mapActions } from "vuex";
233
244
  import { getContainerPropsValue, isWechat } from "@/utils/xd.base";
234
245
  import XdNoticeBar from "@/components/XdNoticeBar/XdNoticeBar";
235
- import getServiceUrl from "@/common/getServiceUrl";
236
246
  import { Base64 } from "js-base64";
237
247
  const Color = require("color");
238
248
 
@@ -244,7 +254,7 @@ export default {
244
254
  XdNoticeBar,
245
255
  XdCardV2
246
256
  },
247
- mixins: [componentsMixins, extsMixins, JfbBaseCardEntryMixin],
257
+ mixins: [componentsMixins, extsMixins, JfbBaseCardEntryMixin, colorCardMixins],
248
258
  computed: {
249
259
  ...mapState({
250
260
  jwxSDK: (state) => state.jwxSDK,
@@ -252,7 +262,7 @@ export default {
252
262
  }),
253
263
  showList(){
254
264
  return this.tabIndex === 1 ? this.cardList: this.changeList
255
- }
265
+ },
256
266
  },
257
267
  filters:{
258
268
  cutstr(val){
@@ -292,29 +302,6 @@ export default {
292
302
  disabledUrl: "",
293
303
  //cardLayout: "1", //票券布局
294
304
  showDisabled: 'Y',
295
-
296
-
297
- cardThemesColor: [
298
- 'radial-gradient(50% 50%, rgba(255, 151, 128, 1) 0%, rgba(255, 64, 61, 1) 100%)',
299
- 'radial-gradient(50% 50%, rgba(247, 198, 35, 1) 0%, rgba(255, 81, 0, 1) 99.91%)',
300
- 'radial-gradient(50% 50%, rgba(0, 207, 193, 1) 0%, rgba(0, 117, 108, 1) 99.91%)',
301
- 'radial-gradient(50% 50%, rgba(255, 148, 77, 1) 0%, rgba(240, 92, 0, 1) 100%)',
302
- 'radial-gradient(50% 50%, rgba(252, 126, 49, 1) 0%, rgba(255, 143, 67, 1) 100%)',
303
- '#FF524D', '#FFAA00', '#00C2B8', '#33AAFF', '#FF8636', '#FF744A', '#38C4EB', '#AF5EE0', '#D98643', '#17C26F'
304
- ],
305
- cardThemesImage: [
306
- //'//img.jufubao.cn/component/card/vip.png',
307
- '//img.jufubao.cn/component/card/1.png',
308
- '//img.jufubao.cn/component/card/2.png',
309
- '//img.jufubao.cn/component/card/3.png',
310
- '//img.jufubao.cn/component/card/4.png',
311
- '//img.jufubao.cn/component/card/5.png',
312
- '//img.jufubao.cn/component/card/6.png',
313
- '//img.jufubao.cn/component/card/7.png',
314
- '//img.jufubao.cn/component/card/8.png',
315
- '//img.jufubao.cn/component/card/9.png',
316
- '//img.jufubao.cn/component/card/10.png'
317
- ],
318
305
 
319
306
  //活动
320
307
  dialogEvent: false,
@@ -328,7 +315,7 @@ export default {
328
315
 
329
316
 
330
317
  //#ifdef H5
331
- this.isWx = isWechat();
318
+ this.isWx = this.isPreview || isWechat();
332
319
  if (!this.$configProject.isPreview) {
333
320
  jfbRootExec("getH5WxAuthorize", {
334
321
  vm: this,
@@ -345,49 +332,6 @@ export default {
345
332
 
346
333
  },
347
334
  methods: {
348
- stringToNumber(str) {
349
- let result = 0;
350
- let len = str.length;
351
- for (let i = 0; i < len; i++) {
352
- result = result + str.charCodeAt(i) + i;
353
- }
354
- return result;
355
- },
356
- getCardThemes(name){
357
- let colorLen = this.cardThemesColor.length;
358
- let imgLen = this.cardThemesImage.length;
359
- let colorIndex = this.stringToNumber(name)% colorLen;
360
- let imgIndex = this.stringToNumber(name) % imgLen;
361
- return {
362
- color: this.cardThemesColor[colorIndex],
363
- image: this.cardThemesImage[imgIndex],
364
- }
365
- },
366
-
367
- getEntry(codes=[] , allEntry=[]){
368
- //无支持业务线或者未配置业务入口
369
- if(codes.length ===0 || allEntry.length === 0) return [];
370
-
371
- let support = [];
372
- codes.map(bus=>{
373
- allEntry.map(it=>{
374
- it['image_url'] = getServiceUrl(it['image_url'])
375
- if(bus === it['business_code']){
376
- support.push(it);
377
- }
378
- })
379
- });
380
- return support
381
- },
382
-
383
- getCardGroupItem(list, allEntry){
384
- list.map(item=>{
385
- //设置卡片样式
386
- item['theme'] = this.getCardThemes(item['card_type_name'] + item['card_type']);
387
- item['entries'] = this.getEntry(item['business_codes'], allEntry)
388
- });
389
- return list
390
- },
391
335
 
392
336
  init(container){
393
337
  //设置
@@ -400,6 +344,7 @@ export default {
400
344
  //this.allEntryPath = getContainerPropsValue(container,"content.allEntryPath",{value: ""}).value;
401
345
  this.login_name = getContainerPropsValue(container, "content.login_name", "登录");
402
346
  },
347
+
403
348
  handleToLink(path) {
404
349
  this.$xdUniHelper.navigateTo({
405
350
  url: path,
@@ -561,10 +506,12 @@ export default {
561
506
  },
562
507
 
563
508
  toDetail(item, out=true) {
564
- if(out && item.entries.length === 1) {
565
- this.$xdUniHelper.navigateTo({
566
- url: `${this.detailUrl}?card_number=${item["card_number"]}`,
567
- }, false);
509
+ if(out) {
510
+ if(item.entries.length === 1) {
511
+ this.$xdUniHelper.navigateTo({
512
+ url: `${this.detailUrl}?card_number=${item["card_number"]}`,
513
+ }, false);
514
+ }
568
515
  }
569
516
  else{
570
517
  this.$xdUniHelper.navigateTo({
@@ -655,7 +602,7 @@ export default {
655
602
  box-sizing: border-box;
656
603
 
657
604
  &__body {
658
- padding: unit(40, rpx) unit(26, rpx);
605
+ padding: unit(30, rpx) unit(26, rpx);
659
606
  color: #333;
660
607
 
661
608
  &-dialog {
@@ -691,6 +638,13 @@ export default {
691
638
  }
692
639
  }
693
640
  }
641
+
642
+ &-line {
643
+ height: 1px;
644
+ background: #eee;
645
+ overflow: hidden;
646
+ margin: unit(30, rpx) unit(-35, rpx) 0 unit(-35, rpx);
647
+ }
694
648
 
695
649
  &-cut {
696
650
  display: flex;
@@ -703,7 +657,7 @@ export default {
703
657
  font-size: unit(36, rpx);
704
658
  color: #fe7a63ff;
705
659
  border-radius: unit(16, rpx);
706
- width: unit(320, rpx);
660
+ width: unit(330, rpx);
707
661
  height: unit(94, rpx);
708
662
  display: flex;
709
663
  align-items: center;
@@ -714,7 +668,8 @@ export default {
714
668
  }
715
669
 
716
670
  &-notice {
717
- margin: unit(40, rpx) unit(-35, rpx) 0 unit(-35, rpx);
671
+ margin: unit(30, rpx) unit(-35, rpx) 0 unit(-35, rpx);
672
+
718
673
  padding: unit(22, rpx) unit(35, rpx);
719
674
  line-height: unit(70, rpx);
720
675
  }
@@ -723,8 +678,8 @@ export default {
723
678
  display: flex;
724
679
  align-items: center;
725
680
  font-size: unit(28, rpx);
726
- margin-bottom: unit(40, rpx);
727
- margin-top: unit(40, rpx);
681
+ margin-bottom: unit(30, rpx);
682
+ margin-top: unit(30, rpx);
728
683
 
729
684
  & > view {
730
685
  // width: unit(214, rpx);
@@ -739,7 +694,7 @@ export default {
739
694
 
740
695
  &-tips {
741
696
  font-size: unit(20, rpx);
742
- margin-bottom: unit(40, rpx);
697
+ margin-bottom: unit(30, rpx);
743
698
  }
744
699
 
745
700
  &-disabled {
@@ -858,7 +813,7 @@ export default {
858
813
  line-height: unit(64, rpx);
859
814
  text-align: center;
860
815
  font-size: unit(26, rpx);
861
- border-radius: unit(8, rpx);
816
+ border-radius: unit(32, rpx);
862
817
  background: rgba(255, 255, 255, 1);
863
818
  box-shadow: 0 unit(4, rpx) unit(8, rpx) rgba(156, 62, 0, 0.11);
864
819
  font-weight: 500;
@@ -903,7 +858,7 @@ export default {
903
858
  justify-content: flex-start;
904
859
  align-items: center;
905
860
  flex-flow: nowrap;
906
- margin-left: unit(-16, rpx);
861
+ margin-left: unit(-14, rpx);
907
862
  padding-top: unit(20, rpx);
908
863
 
909
864
  & > view {
@@ -2,108 +2,226 @@
2
2
 
3
3
  module.exports = {
4
4
  getListEntryCardBind: {
5
- "is_show_invalid_card_entrance": "Y",
6
5
  "list": [{
7
- "card_number": "101001000005195",
8
- "card_point": 100000000,
9
- "card_type_name": "聚福宝福卡测试蛋糕",
6
+ "card_number": "101001000008422",
7
+ "card_point": 100000,
8
+ "card_type": "27",
9
+ "card_type_name": "聚福宝福",
10
10
  "unit": "点",
11
- "end_time": "2024-10-31 23:59:59",
11
+ "end_time": "2025-04-30",
12
12
  "is_valid": "Y",
13
- "main_product_name": "",
13
+ "main_business_code_name": "",
14
14
  "other_card_point": 0,
15
- "is_exchange": "N"
15
+ "is_exchange": "N",
16
+ "card_point_type": 1,
17
+ "business_codes": ["health"]
16
18
  }, {
17
- "card_number": "101001000005193",
18
- "card_point": 99963600,
19
- "card_type_name": "聚福宝福卡测试蛋糕",
20
- "unit": "",
21
- "end_time": "2024-10-31 23:59:59",
19
+ "card_number": "121000100000028",
20
+ "card_point": 10000,
21
+ "card_type": "44",
22
+ "card_type_name": "抵扣券测试",
23
+ "unit": "",
24
+ "end_time": "2024-10-31",
22
25
  "is_valid": "Y",
23
- "main_product_name": "",
26
+ "main_business_code_name": "",
24
27
  "other_card_point": 0,
25
- "is_exchange": "N"
28
+ "is_exchange": "N",
29
+ "card_point_type": 1,
30
+ "business_codes": ["health"]
26
31
  }, {
27
- "card_number": "101001000005184",
32
+ "card_number": "101001000005192",
28
33
  "card_point": 100000000,
29
- "card_type_name": "聚福宝福卡测试蛋糕",
30
- "unit": "",
31
- "end_time": "2024-10-31 23:59:59",
32
- "is_valid": "Y",
33
- "main_product_name": "",
34
- "other_card_point": 0,
35
- "is_exchange": "N"
36
- }, {
37
- "card_number": "101001000005185",
38
- "card_point": 99631000,
39
- "card_type_name": "聚福宝福卡测试蛋糕",
34
+ "card_type": "27",
35
+ "card_type_name": "聚福宝福",
40
36
  "unit": "点",
41
- "end_time": "2024-10-31 23:59:59",
37
+ "end_time": "2024-10-31",
42
38
  "is_valid": "Y",
43
- "main_product_name": "",
39
+ "main_business_code_name": "",
44
40
  "other_card_point": 0,
45
- "is_exchange": "N"
41
+ "is_exchange": "N",
42
+ "card_point_type": 1,
43
+ "business_codes": ["movie", "market", "cake", "book", "video", "play", "health", "small", "travel", "supermarket", "food"]
46
44
  }, {
47
- "card_number": "101001000006990",
48
- "card_point": 1400,
49
- "card_type_name": "聚福宝福卡测试蛋糕",
50
- "unit": "",
51
- "end_time": "2025-05-03 23:59:59",
45
+ "card_number": "101001000008421",
46
+ "card_point": 100000,
47
+ "card_type": "27",
48
+ "card_type_name": "聚福宝福",
49
+ "unit": "",
50
+ "end_time": "2024-12-31",
52
51
  "is_valid": "Y",
53
- "main_product_name": "",
52
+ "main_business_code_name": "",
54
53
  "other_card_point": 0,
55
- "is_exchange": "N"
54
+ "is_exchange": "N",
55
+ "card_point_type": 1,
56
+ "business_codes": ["cake"]
56
57
  }, {
57
- "card_number": "171004000000012",
58
- "card_point": 0,
59
- "card_type_name": "聚福宝测试C40",
58
+ "card_number": "171003500000385",
59
+ "card_point": 10000,
60
+ "card_type": "39",
61
+ "card_type_name": "一对一次卡(无限制)",
60
62
  "unit": "次",
61
- "end_time": "2025-05-03 23:59:59",
63
+ "end_time": "2024-08-31",
62
64
  "is_valid": "Y",
63
- "main_product_name": "",
65
+ "main_business_code_name": "",
64
66
  "other_card_point": 0,
65
- "is_exchange": "Y"
67
+ "is_exchange": "Y",
68
+ "card_point_type": 1,
69
+ "business_codes": ["movie", "market", "cake"]
66
70
  }, {
67
- "card_number": "101001000006989",
68
- "card_point": 3600,
69
- "card_type_name": "聚福宝福卡测试蛋糕",
70
- "unit": "",
71
- "end_time": "2025-05-03 23:59:59",
71
+ "card_number": "101001000007175",
72
+ "card_point": 9998700,
73
+ "card_type": "27",
74
+ "card_type_name": "聚福宝福",
75
+ "unit": "",
76
+ "end_time": "2023-10-31",
72
77
  "is_valid": "Y",
73
- "main_product_name": "",
78
+ "main_business_code_name": "",
74
79
  "other_card_point": 0,
75
- "is_exchange": "N"
80
+ "is_exchange": "N",
81
+ "card_point_type": 1,
82
+ "business_codes": ["movie", "market", "cake", "video", "play", "health"]
76
83
  }, {
77
- "card_number": "171004000000011",
84
+ "card_number": "261001000002666",
78
85
  "card_point": 0,
79
- "card_type_name": "聚福宝测试C40",
86
+ "card_type": "35",
87
+ "card_type_name": "大礼包测试",
80
88
  "unit": "次",
81
- "end_time": "2025-05-03 23:59:59",
82
- "is_valid": "Y",
83
- "main_product_name": "",
89
+ "end_time": "2025-02-28",
90
+ "is_valid": "N",
91
+ "main_business_code_name": "",
84
92
  "other_card_point": 0,
85
- "is_exchange": "Y"
93
+ "is_exchange": "N",
94
+ "card_point_type": 1,
95
+ "business_codes": ["gift"]
86
96
  }, {
87
- "card_number": "101001000005479",
88
- "card_point": 10000000,
89
- "card_type_name": "聚福宝福卡测试蛋糕",
97
+ "card_number": "261001000002518",
98
+ "card_point": 100000,
99
+ "card_type": "31",
100
+ "card_type_name": "加盟商福卡",
90
101
  "unit": "点",
91
- "end_time": "2024-02-03 23:59:59",
92
- "is_valid": "Y",
93
- "main_product_name": "",
102
+ "end_time": "2023-08-29",
103
+ "is_valid": "N",
104
+ "main_business_code_name": "",
94
105
  "other_card_point": 0,
95
- "is_exchange": "N"
106
+ "is_exchange": "N",
107
+ "card_point_type": 1,
108
+ "business_codes": ["movie", "market", "cake", "book", "video", "play", "health", "small", "travel", "supermarket", "food"]
96
109
  }, {
97
- "card_number": "101001000005478",
98
- "card_point": 1000000,
99
- "card_type_name": "聚福宝福卡测试蛋糕",
100
- "unit": "",
101
- "end_time": "2024-02-23 23:59:59",
102
- "is_valid": "Y",
103
- "main_product_name": "",
110
+ "card_number": "261001000000344",
111
+ "card_point": 100,
112
+ "card_type": "35",
113
+ "card_type_name": "大礼包测试",
114
+ "unit": "",
115
+ "end_time": "2023-07-21",
116
+ "is_valid": "N",
117
+ "main_business_code_name": "",
104
118
  "other_card_point": 0,
105
- "is_exchange": "N"
106
- }], "request_id": "dd73b058e5de1e90"
119
+ "is_exchange": "N",
120
+ "card_point_type": 1,
121
+ "business_codes": ["movie", "market", "cake", "book", "gift", "video", "play", "health", "small", "travel"]
122
+ }],
123
+ "is_show_invalid_card_entrance": "Y",
124
+ "is_can_unbind": "Y",
125
+ "site_entry_settings": [{
126
+ "id": 57,
127
+ "business_code": "movie",
128
+ "entry_name": "在线选座",
129
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/74fcb8bf1bf617249eee5f1416533766.png",
130
+ "redirect_data": "{\"path\":\"https:\\\/\\\/website-01.jufubao.cn\\\/base\\\/system\\\/zhrk\\\/zkrk\"}",
131
+ "redirect_type": "URL"
132
+ }, {
133
+ "id": 10,
134
+ "business_code": "gift",
135
+ "entry_name": "礼包",
136
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/f1c8a447209eb04d77c2095a13cdadf4.png",
137
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/gift\\\/type\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/main\\\/gift\\\/type\",\"frontPath\":\"\\\/apply\\\/main\\\/gift\\\/type\",\"fixed_business_code\":\"\"}",
138
+ "redirect_type": "INN"
139
+ }, {
140
+ "id": 7,
141
+ "business_code": "movie",
142
+ "entry_name": "在线选座",
143
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/61b3302ec80009964e0a4b7b2336e5cf.png",
144
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/movie\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/main\\\/movie\\\/index\",\"frontPath\":\"\\\/apply\\\/main\\\/movie\\\/index\",\"fixed_business_code\":\"\"}",
145
+ "redirect_type": "INN"
146
+ }, {
147
+ "id": 9,
148
+ "business_code": "cake",
149
+ "entry_name": "蛋糕",
150
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/e582dc796bdb703a10860bcbbbb378f3.png",
151
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/cake\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/main\\\/cake\\\/index\",\"frontPath\":\"\\\/apply\\\/main\\\/cake\\\/index\",\"fixed_business_code\":\"\"}",
152
+ "redirect_type": "INN"
153
+ }, {
154
+ "id": 18,
155
+ "business_code": "book",
156
+ "entry_name": "图书",
157
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/9edcdc737c48cdbf9364e321e8199a93.png",
158
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/book\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/main\\\/book\\\/index\",\"frontPath\":\"\\\/apply\\\/main\\\/book\\\/index\",\"fixed_business_code\":\"\"}",
159
+ "redirect_type": "INN"
160
+ }, {
161
+ "id": 8,
162
+ "business_code": "market",
163
+ "entry_name": "百货",
164
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/920c4bd80f0a995e245aedbfaf1181d5.png",
165
+ "redirect_data": "{\"dir\":\"apply02\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/mall\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply02\\\/main\\\/mall\\\/index\",\"frontPath\":\"\\\/apply02\\\/main\\\/mall\\\/index\",\"fixed_business_code\":\"\"}",
166
+ "redirect_type": "INN"
167
+ }, {
168
+ "id": 17,
169
+ "business_code": "video",
170
+ "entry_name": "网络视听",
171
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/1ca9647b7ddd9937054792412d3c2367.png",
172
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/video\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/main\\\/video\\\/index\",\"frontPath\":\"\\\/apply\\\/main\\\/video\\\/index\",\"fixed_business_code\":\"\"}",
173
+ "redirect_type": "INN"
174
+ }, {
175
+ "id": 35,
176
+ "business_code": "v-RcA8Mv-Gpd96_Y_mjIf",
177
+ "entry_name": "全福券",
178
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/53191864826b864b8b6fd4f1eb397a93.png",
179
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/system\\\/card\\\/card\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/system\\\/card\\\/card\",\"frontPath\":\"\\\/apply\\\/system\\\/card\\\/card\",\"fixed_business_code\":\"\"}",
180
+ "redirect_type": "INN"
181
+ }, {
182
+ "id": 40,
183
+ "business_code": "93028be3",
184
+ "entry_name": "专区",
185
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/84d23a8c7af7a63842eb696c00068b3d.png",
186
+ "redirect_data": "{\"dir\":\"apply05\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/mall\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply05\\\/main\\\/mall\\\/index\",\"frontPath\":\"\\\/apply05\\\/main\\\/mall\\\/index\",\"fixed_business_code\":\"-y8t4cmogeFvi8fmuxFSK\"}",
187
+ "redirect_type": "INN"
188
+ }, {
189
+ "id": 34,
190
+ "business_code": "food",
191
+ "entry_name": "餐饮",
192
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/97728bf3ef2a6361c0a1771549d2d435.png",
193
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/food\\\/rkym\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/main\\\/food\\\/rkym\",\"frontPath\":\"\\\/apply\\\/main\\\/food\\\/rkym\",\"fixed_business_code\":\"\"}",
194
+ "redirect_type": "INN"
195
+ }, {
196
+ "id": 55,
197
+ "business_code": "cake",
198
+ "entry_name": "蛋糕内部",
199
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/2e549739768758dde7968ff7cb98c6d8.png",
200
+ "redirect_data": "{\"dir\":\"apply03\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/cake\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply03\\\/main\\\/cake\\\/index\",\"frontPath\":\"\\\/apply03\\\/main\\\/cake\\\/index\",\"fixed_business_code\":\"cake\"}",
201
+ "redirect_type": "INN"
202
+ }, {
203
+ "id": 54,
204
+ "business_code": "health",
205
+ "entry_name": "体检",
206
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/e06b058a2104025ffecee960b3b9321d.png",
207
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/health\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/main\\\/health\\\/index\",\"frontPath\":\"\\\/apply\\\/main\\\/health\\\/index\",\"fixed_business_code\":\"\"}",
208
+ "redirect_type": "INN"
209
+ }, {
210
+ "id": 30,
211
+ "business_code": "travel",
212
+ "entry_name": "旅游",
213
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/09ceefe2d1776a399b567c7acdf2c9db.png",
214
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/travel\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/main\\\/travel\\\/index\",\"frontPath\":\"\\\/apply\\\/main\\\/travel\\\/index\",\"fixed_business_code\":\"\"}",
215
+ "redirect_type": "INN"
216
+ }, {
217
+ "id": 16,
218
+ "business_code": "play",
219
+ "entry_name": "演出",
220
+ "image_url": "https:\/\/sandbox-img.jufubao.cn\/uploads\/20230927\/07e1d76f1850fbadc9a12d7ff2d7689c.png",
221
+ "redirect_data": "{\"dir\":\"apply\",\"host\":\"sandbox-website-05.jufubao.cn\",\"path\":\"\\\/main\\\/play\\\/index\",\"site_id\":\"17928cc37788be02\",\"site_url\":\"https:\\\/\\\/sandbox-website-05.jufubao.cn\\\/apply\\\/main\\\/play\\\/index\",\"frontPath\":\"\\\/apply\\\/main\\\/play\\\/index\",\"fixed_business_code\":\"\"}",
222
+ "redirect_type": "INN"
223
+ }],
224
+ "request_id": "b5231dd2d0f71d95"
107
225
  },
108
226
  loginEntryCardBind: {
109
227
  "card_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJhM2U4YjQ5OWEwNzUwN2EyIiwiaWF0IjoxNjc0OTYzODE3LjY2OTM1MywiZXhwIjoxNjc1MDIwNTc3LjY2OTM1MywiY2FyZF9udW1iZXIiOiIxMDEwMDEwMDAwMDUxOTUiLCJjYXJkX3R5cGVfbmFtZSI6IjZJR2E1NmFQNWE2ZDU2YVA1WTJoNXJXTDZLK1Y2SnVMNTdPViIsInByaWNlIjoxMDAsIm9ubGluZV9wcmljZSI6MTAwLCJ1c2Vfc2NlbmNlIjozLCJidXNpbmVzc19jb2RlcyI6IjAsMSwyLDMsNCJ9.LsoBJq4pC_gSc1jZRwDhD2rAfOf1DMCy29VHomGiqYE",