jufubao-base 1.0.429 → 1.0.435

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.
@@ -8,11 +8,11 @@
8
8
  */
9
9
  const getPackagePath = (threePackagePath, packname = 'gxd-commands-bussiness')=>{
10
10
  if(packname === 'gxd-commands-bussiness') {
11
- return `/Users/shiyonggao/Desktop/code/BASE/UNIAPP/xd-commands-bussiness/${threePackagePath}`;
11
+ return `/Users/shiyonggao/home/root/Base-Jufubao/xd-commands-bussiness/${threePackagePath}`;
12
12
  }
13
13
 
14
14
  if (packname === 'gxd-uni-library-editx') {
15
- return `/Users/shiyonggao/Desktop/code/BASE/UNIAPP/xd-uni-library-editx/${threePackagePath}`;
15
+ return `/Users/shiyonggao/home/root/Base-Jufubao/xd-uni-library-editx/${threePackagePath}`;
16
16
  }
17
17
 
18
18
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-base",
3
- "version": "1.0.429",
3
+ "version": "1.0.435",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -1,112 +1,149 @@
1
1
  'use strict';
2
+ import advanced from "./cusAttr/advanced";
3
+ import content from "./cusAttr/content";
4
+ import style from './cusAttr/style'
2
5
 
3
6
  export default {
4
7
  style: [],
5
8
  advanced: [],
6
- content: [
7
- {
8
- label: '选择综合入口类型:',
9
- ele: 'xd-site-select-list',
10
- valueKey: 'entryGroupId',
11
- value: 'default',
12
- placeholder: '请选择综合入口类型',
13
- multiple: false,
14
- groupKey:'content',
15
- className: 'input50',
16
- rules: [
17
- {required: true, message: '请选择综合入口类型', trigger: ['blur', 'change']}
18
- ],
19
- handleCustom({action, data}) {
20
- XdBus.getParentApi('getEntryGroupOption')({key: Date.now()})
21
- .then(res => {
22
- data.cb(res.list)
23
- })
24
- .catch(error => {
25
- console.error(error);
26
- });
27
- },
28
- },
29
- {
30
- label: "是否展示主业务线",
31
- ele: "xd-radio",
32
- valueKey: "isShowBuss",
33
- groupKey:'content',
34
- value: 'N',
35
- list: [
36
- {label: "展示", value: "Y"},
37
- {label: "隐藏", value: "N"},
38
- ]
39
- },
40
- {
41
- label: "详情样式",
42
- ele: "xd-radio",
43
- valueKey: "styleType",
44
- groupKey: "content",
45
- value: '1',
46
- list: [
47
- {label: "样式一", value: '1'},
48
- {label: "样式二", value: '2'},
49
- ]
50
- },
51
- {
52
- label: '票券解绑成功回跳地址:',
53
- ele: 'xd-select-pages-path',
54
- valueKey: 'back_url',
55
- groupKey:'advanced',
56
- placeholder: '请选择票券解绑成功回跳地址',
57
- value: null,
58
- setting: {
59
- router: XdBus.getParentApi('getPagesTree'),
60
- },
61
- inline: false,
62
- },
63
- {
64
- label: '票券转换地址:',
65
- ele: 'xd-select-pages-path',
66
- valueKey: 'shift_url',
67
- groupKey:'advanced',
68
- placeholder: '请选择票券转换地址',
69
- value: null,
70
- setting: {
71
- router: XdBus.getParentApi('getPagesTree'),
72
- },
73
- inline: false,
74
- },
75
- {
76
- label: '票券转赠地址:',
77
- ele: 'xd-select-pages-path',
78
- valueKey: 'give_url',
79
- groupKey:'advanced',
80
- placeholder: '请选择票券转赠地址',
81
- value: null,
82
- setting: {
83
- router: XdBus.getParentApi('getPagesTree'),
84
- },
85
- inline: false,
86
- },
87
- {
88
- label: '收集手机号地址:',
89
- ele: 'xd-select-pages-path',
90
- valueKey: 'collect_phone_url',
91
- groupKey:'advanced',
92
- placeholder: '请选择收集手机号地址',
93
- value: null,
94
- setting: {
95
- router: XdBus.getParentApi('getPagesTree'),
96
- },
97
- inline: false,
98
- },
99
- {
100
- label: '绑定票券地址:',
101
- ele: 'xd-select-pages-path',
102
- valueKey: 'bindCardUrl',
103
- groupKey:'advanced',
104
- placeholder: '请选择绑定票券地址',
105
- value: null,
106
- setting: {
107
- router: XdBus.getParentApi('getPagesTree'),
108
- },
109
- inline: false,
110
- },
111
- ],
9
+ content: (data, gValue, gColor, oldData={}) => {
10
+ return [
11
+ ...content(data, gValue, gColor, oldData),
12
+ ...style(data, gValue, gColor, oldData),
13
+ ...advanced(data)
14
+ ].filter(i=>i)
15
+ }
16
+ // content: [
17
+ // {
18
+ // label: '选择综合入口类型:',
19
+ // ele: 'xd-site-select-list',
20
+ // valueKey: 'entryGroupId',
21
+ // value: 'default',
22
+ // placeholder: '请选择综合入口类型',
23
+ // multiple: false,
24
+ // groupKey:'content',
25
+ // className: 'input50',
26
+ // rules: [
27
+ // {required: true, message: '请选择综合入口类型', trigger: ['blur', 'change']}
28
+ // ],
29
+ // handleCustom({action, data}) {
30
+ // XdBus.getParentApi('getEntryGroupOption')({key: Date.now()})
31
+ // .then(res => {
32
+ // data.cb(res.list)
33
+ // })
34
+ // .catch(error => {
35
+ // console.error(error);
36
+ // });
37
+ // },
38
+ // },
39
+ // {
40
+ // label: "是否展示主业务线",
41
+ // ele: "xd-radio",
42
+ // valueKey: "isShowBuss",
43
+ // groupKey:'content',
44
+ // value: 'N',
45
+ // list: [
46
+ // {label: "展示", value: "Y"},
47
+ // {label: "隐藏", value: "N"},
48
+ // ]
49
+ // },
50
+ // {
51
+ // label: "详情样式",
52
+ // ele: "xd-radio",
53
+ // valueKey: "styleType",
54
+ // groupKey: "content",
55
+ // value: '1',
56
+ // list: [
57
+ // {label: "样式一", value: '1'},
58
+ // {label: "样式二", value: '2'},
59
+ // ]
60
+ // },
61
+ // {
62
+ // label: '票券充值',
63
+ // ele: 'xd-cus-switch',
64
+ // valueKey: 'showRecharge',
65
+ // value: data.showRecharge || 'N',
66
+ // className: 'input100',
67
+ // groupKey:'content',
68
+ // labelInline:true,
69
+ // cusStyle:{marginBottom: '10px'},
70
+ // setting: {
71
+ // tips:['显示','隐藏'],
72
+ // isBackType: 'string'
73
+ // },
74
+ // },
75
+ // {ele: 'group_start'},
76
+ // {
77
+ // label: "",
78
+ // ele: "el-input",
79
+ // valueKey: "rechargeText",
80
+ // value: data.rechargeText || '',
81
+ // placeholder: "自定义名称,默认去充值",
82
+ // hidden: data.showRecharge === 'N',
83
+ // className: 'input80',
84
+ // groupKey:'content',
85
+ // inline: false,
86
+ // },
87
+ // {ele: 'group_end'},
88
+ // {
89
+ // label: '票券解绑成功回跳地址:',
90
+ // ele: 'xd-select-pages-path',
91
+ // valueKey: 'back_url',
92
+ // groupKey:'advanced',
93
+ // placeholder: '请选择票券解绑成功回跳地址',
94
+ // value: null,
95
+ // setting: {
96
+ // router: XdBus.getParentApi('getPagesTree'),
97
+ // },
98
+ // inline: false,
99
+ // },
100
+ // {
101
+ // label: '票券转换地址:',
102
+ // ele: 'xd-select-pages-path',
103
+ // valueKey: 'shift_url',
104
+ // groupKey:'advanced',
105
+ // placeholder: '请选择票券转换地址',
106
+ // value: null,
107
+ // setting: {
108
+ // router: XdBus.getParentApi('getPagesTree'),
109
+ // },
110
+ // inline: false,
111
+ // },
112
+ // {
113
+ // label: '票券转赠地址:',
114
+ // ele: 'xd-select-pages-path',
115
+ // valueKey: 'give_url',
116
+ // groupKey:'advanced',
117
+ // placeholder: '请选择票券转赠地址',
118
+ // value: null,
119
+ // setting: {
120
+ // router: XdBus.getParentApi('getPagesTree'),
121
+ // },
122
+ // inline: false,
123
+ // },
124
+ // {
125
+ // label: '收集手机号地址:',
126
+ // ele: 'xd-select-pages-path',
127
+ // valueKey: 'collect_phone_url',
128
+ // groupKey:'advanced',
129
+ // placeholder: '请选择收集手机号地址',
130
+ // value: null,
131
+ // setting: {
132
+ // router: XdBus.getParentApi('getPagesTree'),
133
+ // },
134
+ // inline: false,
135
+ // },
136
+ // {
137
+ // label: '绑定票券地址:',
138
+ // ele: 'xd-select-pages-path',
139
+ // valueKey: 'bindCardUrl',
140
+ // groupKey:'advanced',
141
+ // placeholder: '请选择绑定票券地址',
142
+ // value: null,
143
+ // setting: {
144
+ // router: XdBus.getParentApi('getPagesTree'),
145
+ // },
146
+ // inline: false,
147
+ // },
148
+ // ],
112
149
  };
@@ -13,8 +13,8 @@
13
13
  <view class="jfb-base-card-detail-entry__edit-icon" @click="delEdit">删除</view>
14
14
  </view>
15
15
  <!-- #endif -->
16
- <view class="jfb-base-card-detail-entry__body" v-if="info!==null">
17
- <view class="qrcode_card">
16
+ <view class="jfb-base-card-detail-entry__body" v-if="info!==null" :style="[bodyStyleComp]">
17
+ <view class="qrcode_card" :style="{backgroundColor: topBg}">
18
18
  <view class="jfb-base-card-detail-entry__body-qrcode">
19
19
  <view class="jfb-base-card-detail-entry__body-qrcode-title">
20
20
  <xd-font-icon
@@ -71,12 +71,18 @@
71
71
  </view>
72
72
  </view>
73
73
  <view class="card_sec">有效期:{{ info.end_time }}</view>
74
- <view class="card_sec">
75
- <text>{{isShowBuss==='Y'?info.main_business_code_name:''}}剩余:{{ info.card_point }}{{ info.unit }}</text>
76
- <text
77
- v-if="info.other_card_point && info.card_point_type === 2"
78
- style="font-size: 24rpx;margin-left: 20rpx;"
79
- >(购买其他物品可抵:{{info.other_card_point}} {{ info.unit }})</text>
74
+ <view class="card_sec flex">
75
+ <view style="flex: 1;padding-right: 8rpx;">
76
+ <text>{{isShowBuss==='Y'?info.main_business_code_name:''}}</text>
77
+ <view>剩余:{{ info.card_point }}{{ info.unit }}</view>
78
+ </view>
79
+ <text v-if="showRecharge==='Y' && info.is_can_recharge==='Y'" class="card_recharge" @click="handleRecharge">{{rechargeText}}</text>
80
+ </view>
81
+ <view class="card_sec"
82
+ v-if="info.other_card_point && info.card_point_type === 2"
83
+ style="font-size: 24rpx;"
84
+ >
85
+ <view class="dikou">购买其他物品可抵:{{info.other_card_point}} {{ info.unit }}</view>
80
86
  </view>
81
87
  </view>
82
88
  </view>
@@ -105,7 +111,7 @@
105
111
  <view v-if="0">
106
112
  <xd-button size="small" type="primary" width="100%">消费记录</xd-button>
107
113
  </view>
108
- <view v-if="info.is_can_transfer==='Y'">
114
+ <view v-if="info.is_can_transfer==='Y' && showTransfer==='Y'">
109
115
  <xd-button
110
116
  width="100%"
111
117
  @click="handleGive()"
@@ -120,7 +126,7 @@
120
126
  type="primary"
121
127
  >券转换</xd-button>
122
128
  </view>
123
- <view v-if="isShowUnbind">
129
+ <view v-if="isShowUnbind && showUnbind==='Y'">
124
130
  <xd-button
125
131
  width="100%"
126
132
  @click="handleUnBindCard()"
@@ -239,7 +245,7 @@
239
245
  import XdFontIcon from "@/components/XdFontIcon/XdFontIcon";
240
246
  import { jfbRootExec } from "@/utils/xd.event";
241
247
  import JfbBaseCardDetailEntryMixin from "./JfbBaseCardDetailEntryMixin";
242
- import { getContainerPropsValue } from "@/utils/xd.base";
248
+ import { getContainerPropsValue, gCPVal } from "@/utils/xd.base";
243
249
  import componentsMixins from "@/mixins/componentsMixins";
244
250
  import extsMixins from "@/mixins/extsMixins";
245
251
  import colorCardMixins from "@/mixins/colorCardMixins";
@@ -296,6 +302,11 @@ export default {
296
302
  backUrl: "",
297
303
  shift_url: "",
298
304
  showTicketDialog: false,
305
+ showRecharge: "",
306
+ rechargeText: '去充值', //充值文案
307
+ recharge_url: "", //充值地址
308
+ showTransfer: 'Y', //是否展示票券转送
309
+ showUnbind: 'Y', //是否展示解除绑定
299
310
 
300
311
  //品牌logo
301
312
  //#ifdef H5
@@ -316,6 +327,8 @@ export default {
316
327
  sign_url_qrcode:'',
317
328
  toCollectPhoneUrl:'',
318
329
  styleType: '1',
330
+ topBg: '', //头部背景色
331
+ padding: {}, //外边距
319
332
  show_type: 'normal', //normal:已绑定卡券 coupon: 优惠券
320
333
  ticketList: [], //票券列表
321
334
  selectedTicket: null, //当前选中的票券对象
@@ -331,7 +344,11 @@ export default {
331
344
  },
332
345
  computed: {
333
346
  ...mapState(["brandInfo",'jfbAuthorize']),
334
-
347
+ bodyStyleComp(){
348
+ return {
349
+ padding: this.getMarginAndPadding(this.padding, 24),
350
+ }
351
+ },
335
352
  prod_bottom() {
336
353
  return this.fixedStyle({height: 0, zIndex: 111});
337
354
  },
@@ -384,6 +401,11 @@ export default {
384
401
  */
385
402
  init(container) {
386
403
  this.isShowBuss = getContainerPropsValue(container, 'content.isShowBuss', 'N')
404
+ this.showRecharge = gCPVal(container, 'showRecharge', 'N');
405
+ this.rechargeText = gCPVal(container, 'rechargeText', '去充值');
406
+ this.recharge_url = getContainerPropsValue(container, "content.recharge_url", { value: "" }).value;
407
+ this.showTransfer = gCPVal(container, 'showTransfer', 'Y');
408
+ this.showUnbind = gCPVal(container, 'showUnbind', 'Y');
387
409
  this.backUrl = getContainerPropsValue(container, "content.back_url", { value: "" }).value;
388
410
  this.shift_url = getContainerPropsValue(container, "content.shift_url", { value: "" }).value;
389
411
  this.give_url = getContainerPropsValue(container, "content.give_url", { value: "" }).value;
@@ -393,6 +415,8 @@ export default {
393
415
  //'wechat_mini_program|default'
394
416
  this.entryGroupId = getContainerPropsValue(container,"content.entryGroupId","default");
395
417
  this.styleType = getContainerPropsValue(container,"content.styleType","1");
418
+ this.topBg = gCPVal(container, 'topBg', '#FF2121', {sKey: 'topBgStatus', fields: ['topBg']});
419
+ this.padding = gCPVal(container, 'padding', [24], {sKey: 'paddingStatus', fields: ['padding'], isPMR: true});
396
420
  },
397
421
  toShowTicketDialog(){
398
422
  this.showTicketDialog = true;
@@ -509,6 +533,11 @@ export default {
509
533
  .catch();
510
534
  }, time);
511
535
  },
536
+ handleRecharge() {
537
+ this.$xdUniHelper.navigateTo({
538
+ url: `${this.recharge_url}?card_number=${this.info["card_number"]}`,
539
+ });
540
+ },
512
541
  handleGive() {
513
542
  this.$xdUniHelper.navigateTo({
514
543
  url: `${this.give_url}?card_number=${this.info["card_number"]}`,
@@ -856,6 +885,7 @@ export default {
856
885
  .jfb-base-card-detail-entry {
857
886
  &__body {
858
887
  color: #333;
888
+ padding: unit(24, rpx);
859
889
 
860
890
  .qrcode_card{
861
891
  background-color: #FF2121;
@@ -900,6 +930,26 @@ export default {
900
930
  &:last-child{
901
931
  margin-bottom: 0rpx;
902
932
  }
933
+ &.flex{
934
+ display: flex;
935
+ align-items: center;
936
+ justify-content: space-between;
937
+ }
938
+ .dikou{
939
+ background: rgba(255,255,255,0.2);
940
+ padding: 8rpx 16rpx;
941
+ border-radius: 16rpx;
942
+ display: inline-block;
943
+ }
944
+ .card_recharge{
945
+ color:#FF5733;
946
+ font-weight: 600;
947
+ font-size: 24rpx;
948
+ padding: 8rpx 16rpx;
949
+ border-radius: 8rpx;
950
+ background: #FFFFFF;
951
+ margin-right: 32rpx;
952
+ }
903
953
  }
904
954
  .card_other{
905
955
  background-color: rgba(255,255,255, 0.2);
@@ -919,7 +969,7 @@ export default {
919
969
  left: 50%;
920
970
  transform: translate(-50rpx, -50rpx);
921
971
  }
922
- padding: unit(26, rpx);
972
+
923
973
  .card-list {
924
974
  overflow: hidden;
925
975
  border-radius: unit(16, rpx);
@@ -1,6 +1,150 @@
1
- 'use strict';
1
+ "use strict";
2
2
 
3
3
  module.exports = {
4
4
  getCardYueEntry: {},
5
- getBaseByIdCardDetailEntry: {"card_number":"101001000008091","card_point":99875,"card_type_name":"多余额福卡","end_time":"2025-04-30","card_status":"Y","card_status_name":"开启","is_can_transfer":"Y","card_qrcode":"\/\/sandbox-apis.jufubao.cn\/common\/v1\/image\/qrcode?code_content=h.161.y7uomss6bqulqla","barcode":"\/\/sandbox-apis.jufubao.cn\/common\/v1\/image\/barcode?code_content=h.161.y7uomss6bqulqla","card_qrcode_expire":600,"unit":"点","main_business_code_name":"电影(勿改)、网络视听(勿改)、体检(勿改)","other_card_point":79900,"is_exchange":"N","exchange_card_type_name":"福券","exchange_card_point":98876,"card_point_type":2,"is_show_qrcode_logo":"Y","is_can_unbind":"Y","site_entry_settings":[{"id":57,"business_code":"movie","entry_name":"在线选座","image_url":"\/uploads\/20230927\/74fcb8bf1bf617249eee5f1416533766.png","redirect_data":"{\"path\":\"https:\\\/\\\/website-01.jufubao.cn\\\/base\\\/system\\\/zhrk\\\/zkrk\"}","redirect_type":"URL"},{"id":10,"business_code":"gift","entry_name":"礼包","image_url":"\/uploads\/20230927\/f1c8a447209eb04d77c2095a13cdadf4.png","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\":\"\"}","redirect_type":"INN"},{"id":7,"business_code":"movie","entry_name":"在线选座","image_url":"\/uploads\/20230927\/61b3302ec80009964e0a4b7b2336e5cf.png","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\":\"\"}","redirect_type":"INN"},{"id":9,"business_code":"cake","entry_name":"蛋糕","image_url":"\/uploads\/20230927\/e582dc796bdb703a10860bcbbbb378f3.png","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\":\"\"}","redirect_type":"INN"},{"id":18,"business_code":"book","entry_name":"图书","image_url":"\/uploads\/20230927\/9edcdc737c48cdbf9364e321e8199a93.png","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\":\"\"}","redirect_type":"INN"},{"id":8,"business_code":"market","entry_name":"百货","image_url":"\/uploads\/20230927\/920c4bd80f0a995e245aedbfaf1181d5.png","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\":\"\"}","redirect_type":"INN"},{"id":17,"business_code":"video","entry_name":"网络视听","image_url":"\/uploads\/20230927\/1ca9647b7ddd9937054792412d3c2367.png","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\":\"\"}","redirect_type":"INN"},{"id":35,"business_code":"v-RcA8Mv-Gpd96_Y_mjIf","entry_name":"全福券","image_url":"\/uploads\/20230927\/53191864826b864b8b6fd4f1eb397a93.png","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\":\"\"}","redirect_type":"INN"},{"id":40,"business_code":"93028be3","entry_name":"专区","image_url":"\/uploads\/20230927\/84d23a8c7af7a63842eb696c00068b3d.png","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\"}","redirect_type":"INN"},{"id":34,"business_code":"food","entry_name":"餐饮","image_url":"\/uploads\/20230927\/97728bf3ef2a6361c0a1771549d2d435.png","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\":\"\"}","redirect_type":"INN"},{"id":54,"business_code":"health","entry_name":"体检","image_url":"\/uploads\/20230927\/e06b058a2104025ffecee960b3b9321d.png","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\":\"\"}","redirect_type":"INN"},{"id":30,"business_code":"travel","entry_name":"旅游","image_url":"\/uploads\/20230927\/09ceefe2d1776a399b567c7acdf2c9db.png","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\":\"\"}","redirect_type":"INN"},{"id":16,"business_code":"play","entry_name":"演出","image_url":"\/uploads\/20230927\/07e1d76f1850fbadc9a12d7ff2d7689c.png","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\":\"\"}","redirect_type":"INN"}],"business_codes":["movie","market","cake","book"],"request_id":"58eec3f9f6e96cf0"}
6
- }
5
+ getBaseByIdCardDetailEntry: {
6
+ card_number: "101001000008091",
7
+ card_point: 99875,
8
+ card_type_name: "多余额福卡",
9
+ end_time: "2025-04-30",
10
+ card_status: "Y",
11
+ card_status_name: "开启",
12
+ is_can_transfer: "Y",
13
+ is_can_recharge: "Y",
14
+ card_qrcode:
15
+ "//sandbox-apis.jufubao.cn/common/v1/image/qrcode?code_content=h.161.y7uomss6bqulqla",
16
+ barcode:
17
+ "//sandbox-apis.jufubao.cn/common/v1/image/barcode?code_content=h.161.y7uomss6bqulqla",
18
+ card_qrcode_expire: 600,
19
+ unit: "点",
20
+ main_business_code_name: "电影(勿改)、网络视听(勿改)、体检(勿改)",
21
+ other_card_point: 79900,
22
+ is_exchange: "N",
23
+ exchange_card_type_name: "福券",
24
+ exchange_card_point: 98876,
25
+ card_point_type: 2,
26
+ is_show_qrcode_logo: "Y",
27
+ is_can_unbind: "Y",
28
+ site_entry_settings: [
29
+ {
30
+ id: 57,
31
+ business_code: "movie",
32
+ entry_name: "在线选座",
33
+ image_url: "/uploads/20230927/74fcb8bf1bf617249eee5f1416533766.png",
34
+ redirect_data:
35
+ '{"path":"https:\\/\\/website-01.jufubao.cn\\/base\\/system\\/zhrk\\/zkrk"}',
36
+ redirect_type: "URL"
37
+ },
38
+ {
39
+ id: 10,
40
+ business_code: "gift",
41
+ entry_name: "礼包",
42
+ image_url: "/uploads/20230927/f1c8a447209eb04d77c2095a13cdadf4.png",
43
+ redirect_data:
44
+ '{"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":""}',
45
+ redirect_type: "INN"
46
+ },
47
+ {
48
+ id: 7,
49
+ business_code: "movie",
50
+ entry_name: "在线选座",
51
+ image_url: "/uploads/20230927/61b3302ec80009964e0a4b7b2336e5cf.png",
52
+ redirect_data:
53
+ '{"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":""}',
54
+ redirect_type: "INN"
55
+ },
56
+ {
57
+ id: 9,
58
+ business_code: "cake",
59
+ entry_name: "蛋糕",
60
+ image_url: "/uploads/20230927/e582dc796bdb703a10860bcbbbb378f3.png",
61
+ redirect_data:
62
+ '{"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":""}',
63
+ redirect_type: "INN"
64
+ },
65
+ {
66
+ id: 18,
67
+ business_code: "book",
68
+ entry_name: "图书",
69
+ image_url: "/uploads/20230927/9edcdc737c48cdbf9364e321e8199a93.png",
70
+ redirect_data:
71
+ '{"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":""}',
72
+ redirect_type: "INN"
73
+ },
74
+ {
75
+ id: 8,
76
+ business_code: "market",
77
+ entry_name: "百货",
78
+ image_url: "/uploads/20230927/920c4bd80f0a995e245aedbfaf1181d5.png",
79
+ redirect_data:
80
+ '{"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":""}',
81
+ redirect_type: "INN"
82
+ },
83
+ {
84
+ id: 17,
85
+ business_code: "video",
86
+ entry_name: "网络视听",
87
+ image_url: "/uploads/20230927/1ca9647b7ddd9937054792412d3c2367.png",
88
+ redirect_data:
89
+ '{"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":""}',
90
+ redirect_type: "INN"
91
+ },
92
+ {
93
+ id: 35,
94
+ business_code: "v-RcA8Mv-Gpd96_Y_mjIf",
95
+ entry_name: "全福券",
96
+ image_url: "/uploads/20230927/53191864826b864b8b6fd4f1eb397a93.png",
97
+ redirect_data:
98
+ '{"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":""}',
99
+ redirect_type: "INN"
100
+ },
101
+ {
102
+ id: 40,
103
+ business_code: "93028be3",
104
+ entry_name: "专区",
105
+ image_url: "/uploads/20230927/84d23a8c7af7a63842eb696c00068b3d.png",
106
+ redirect_data:
107
+ '{"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"}',
108
+ redirect_type: "INN"
109
+ },
110
+ {
111
+ id: 34,
112
+ business_code: "food",
113
+ entry_name: "餐饮",
114
+ image_url: "/uploads/20230927/97728bf3ef2a6361c0a1771549d2d435.png",
115
+ redirect_data:
116
+ '{"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":""}',
117
+ redirect_type: "INN"
118
+ },
119
+ {
120
+ id: 54,
121
+ business_code: "health",
122
+ entry_name: "体检",
123
+ image_url: "/uploads/20230927/e06b058a2104025ffecee960b3b9321d.png",
124
+ redirect_data:
125
+ '{"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":""}',
126
+ redirect_type: "INN"
127
+ },
128
+ {
129
+ id: 30,
130
+ business_code: "travel",
131
+ entry_name: "旅游",
132
+ image_url: "/uploads/20230927/09ceefe2d1776a399b567c7acdf2c9db.png",
133
+ redirect_data:
134
+ '{"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":""}',
135
+ redirect_type: "INN"
136
+ },
137
+ {
138
+ id: 16,
139
+ business_code: "play",
140
+ entry_name: "演出",
141
+ image_url: "/uploads/20230927/07e1d76f1850fbadc9a12d7ff2d7689c.png",
142
+ redirect_data:
143
+ '{"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":""}',
144
+ redirect_type: "INN"
145
+ }
146
+ ],
147
+ business_codes: ["movie", "market", "cake", "book"],
148
+ request_id: "58eec3f9f6e96cf0"
149
+ }
150
+ };