jufubao-base 1.0.56-beta8 → 1.0.56-beta9
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.
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
}"
|
|
30
30
|
>
|
|
31
31
|
<xd-font-icon
|
|
32
|
-
style="
|
|
32
|
+
:style="{marginBottom: '15rpx'}"
|
|
33
33
|
size="80"
|
|
34
34
|
icon="iconsaoma"
|
|
35
35
|
></xd-font-icon>
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}"
|
|
46
46
|
>
|
|
47
47
|
<xd-font-icon
|
|
48
|
-
|
|
48
|
+
:style="{marginBottom: '15rpx'}"
|
|
49
49
|
size="80"
|
|
50
50
|
icon="iconyuechi"
|
|
51
51
|
></xd-font-icon>
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
</view>
|
|
68
68
|
</template>
|
|
69
69
|
</view>
|
|
70
|
-
<view class="jfb-base-card__body-line"></view>
|
|
70
|
+
<view class="jfb-base-card__body-line" v-if="!notice"></view>
|
|
71
71
|
<view
|
|
72
72
|
class="jfb-base-card__body-notice"
|
|
73
73
|
:style="{ background: noticeBackgroundColor }"
|
|
@@ -119,10 +119,9 @@
|
|
|
119
119
|
</view>
|
|
120
120
|
<view
|
|
121
121
|
class="jfb-base-card__body-tips"
|
|
122
|
-
:style="{ color:
|
|
122
|
+
:style="{ color: warningColor }"
|
|
123
123
|
v-if="tabIndex === 2"
|
|
124
|
-
|
|
125
|
-
>
|
|
124
|
+
>* 目前仅支持电影票兑换券进行转换</view>
|
|
126
125
|
<view
|
|
127
126
|
v-if="tabIndex === 2 || tabIndex === 1"
|
|
128
127
|
class="jfb-base-card__body-card"
|
|
@@ -621,13 +620,13 @@ export default {
|
|
|
621
620
|
|
|
622
621
|
&-line {
|
|
623
622
|
width: 120%;
|
|
624
|
-
height:
|
|
623
|
+
height: 1px;
|
|
625
624
|
background: #eee;
|
|
626
625
|
margin: unit(60, rpx) unit(-35, rpx) 0 unit(-35, rpx);
|
|
627
626
|
}
|
|
628
627
|
|
|
629
628
|
&-notice {
|
|
630
|
-
margin:
|
|
629
|
+
margin: unit(46, rpx) unit(-35, rpx) 0 unit(-35, rpx);
|
|
631
630
|
padding: unit(22, rpx) unit(35, rpx);
|
|
632
631
|
line-height: unit(70, rpx);
|
|
633
632
|
}
|
|
@@ -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"
|
|
@@ -400,6 +399,7 @@ export default {
|
|
|
400
399
|
//this.allEntryPath = getContainerPropsValue(container,"content.allEntryPath",{value: ""}).value;
|
|
401
400
|
this.login_name = getContainerPropsValue(container, "content.login_name", "登录");
|
|
402
401
|
},
|
|
402
|
+
|
|
403
403
|
handleToLink(path) {
|
|
404
404
|
this.$xdUniHelper.navigateTo({
|
|
405
405
|
url: path,
|
|
@@ -655,7 +655,7 @@ export default {
|
|
|
655
655
|
box-sizing: border-box;
|
|
656
656
|
|
|
657
657
|
&__body {
|
|
658
|
-
padding: unit(
|
|
658
|
+
padding: unit(30, rpx) unit(26, rpx);
|
|
659
659
|
color: #333;
|
|
660
660
|
|
|
661
661
|
&-dialog {
|
|
@@ -691,6 +691,13 @@ export default {
|
|
|
691
691
|
}
|
|
692
692
|
}
|
|
693
693
|
}
|
|
694
|
+
|
|
695
|
+
&-line {
|
|
696
|
+
height: 1px;
|
|
697
|
+
background: #eee;
|
|
698
|
+
overflow: hidden;
|
|
699
|
+
margin: unit(30, rpx) unit(-35, rpx) 0 unit(-35, rpx);
|
|
700
|
+
}
|
|
694
701
|
|
|
695
702
|
&-cut {
|
|
696
703
|
display: flex;
|
|
@@ -714,7 +721,8 @@ export default {
|
|
|
714
721
|
}
|
|
715
722
|
|
|
716
723
|
&-notice {
|
|
717
|
-
margin: unit(
|
|
724
|
+
margin: unit(30, rpx) unit(-35, rpx) 0 unit(-35, rpx);
|
|
725
|
+
|
|
718
726
|
padding: unit(22, rpx) unit(35, rpx);
|
|
719
727
|
line-height: unit(70, rpx);
|
|
720
728
|
}
|
|
@@ -723,8 +731,8 @@ export default {
|
|
|
723
731
|
display: flex;
|
|
724
732
|
align-items: center;
|
|
725
733
|
font-size: unit(28, rpx);
|
|
726
|
-
margin-bottom: unit(
|
|
727
|
-
margin-top: unit(
|
|
734
|
+
margin-bottom: unit(30, rpx);
|
|
735
|
+
margin-top: unit(30, rpx);
|
|
728
736
|
|
|
729
737
|
& > view {
|
|
730
738
|
// width: unit(214, rpx);
|
|
@@ -739,7 +747,7 @@ export default {
|
|
|
739
747
|
|
|
740
748
|
&-tips {
|
|
741
749
|
font-size: unit(20, rpx);
|
|
742
|
-
margin-bottom: unit(
|
|
750
|
+
margin-bottom: unit(30, rpx);
|
|
743
751
|
}
|
|
744
752
|
|
|
745
753
|
&-disabled {
|
|
@@ -903,7 +911,7 @@ export default {
|
|
|
903
911
|
justify-content: flex-start;
|
|
904
912
|
align-items: center;
|
|
905
913
|
flex-flow: nowrap;
|
|
906
|
-
margin-left: unit(-
|
|
914
|
+
margin-left: unit(-14, rpx);
|
|
907
915
|
padding-top: unit(20, rpx);
|
|
908
916
|
|
|
909
917
|
& > 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": "
|
|
8
|
-
"card_point":
|
|
9
|
-
"
|
|
6
|
+
"card_number": "101001000008422",
|
|
7
|
+
"card_point": 100000,
|
|
8
|
+
"card_type": "27",
|
|
9
|
+
"card_type_name": "聚福宝福",
|
|
10
10
|
"unit": "点",
|
|
11
|
-
"end_time": "
|
|
11
|
+
"end_time": "2025-04-30",
|
|
12
12
|
"is_valid": "Y",
|
|
13
|
-
"
|
|
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": "
|
|
18
|
-
"card_point":
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
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
|
-
"
|
|
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": "
|
|
32
|
+
"card_number": "101001000005192",
|
|
28
33
|
"card_point": 100000000,
|
|
29
|
-
"
|
|
30
|
-
"
|
|
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
|
|
37
|
+
"end_time": "2024-10-31",
|
|
42
38
|
"is_valid": "Y",
|
|
43
|
-
"
|
|
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": "
|
|
48
|
-
"card_point":
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
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
|
-
"
|
|
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": "
|
|
58
|
-
"card_point":
|
|
59
|
-
"
|
|
58
|
+
"card_number": "171003500000385",
|
|
59
|
+
"card_point": 10000,
|
|
60
|
+
"card_type": "39",
|
|
61
|
+
"card_type_name": "一对一次卡(无限制)",
|
|
60
62
|
"unit": "次",
|
|
61
|
-
"end_time": "
|
|
63
|
+
"end_time": "2024-08-31",
|
|
62
64
|
"is_valid": "Y",
|
|
63
|
-
"
|
|
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": "
|
|
68
|
-
"card_point":
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
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
|
-
"
|
|
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": "
|
|
84
|
+
"card_number": "261001000002666",
|
|
78
85
|
"card_point": 0,
|
|
79
|
-
"
|
|
86
|
+
"card_type": "35",
|
|
87
|
+
"card_type_name": "大礼包测试",
|
|
80
88
|
"unit": "次",
|
|
81
|
-
"end_time": "2025-
|
|
82
|
-
"is_valid": "
|
|
83
|
-
"
|
|
89
|
+
"end_time": "2025-02-28",
|
|
90
|
+
"is_valid": "N",
|
|
91
|
+
"main_business_code_name": "",
|
|
84
92
|
"other_card_point": 0,
|
|
85
|
-
"is_exchange": "
|
|
93
|
+
"is_exchange": "N",
|
|
94
|
+
"card_point_type": 1,
|
|
95
|
+
"business_codes": ["gift"]
|
|
86
96
|
}, {
|
|
87
|
-
"card_number": "
|
|
88
|
-
"card_point":
|
|
89
|
-
"
|
|
97
|
+
"card_number": "261001000002518",
|
|
98
|
+
"card_point": 100000,
|
|
99
|
+
"card_type": "31",
|
|
100
|
+
"card_type_name": "加盟商福卡",
|
|
90
101
|
"unit": "点",
|
|
91
|
-
"end_time": "
|
|
92
|
-
"is_valid": "
|
|
93
|
-
"
|
|
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": "
|
|
98
|
-
"card_point":
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
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
|
-
|
|
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",
|