jufubao-base 1.0.312 → 1.0.313

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-base",
3
- "version": "1.0.312",
3
+ "version": "1.0.313",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -16,5 +16,17 @@ export default {
16
16
  },
17
17
  inline: false,
18
18
  },
19
+ {
20
+ label: '收集手机号地址:',
21
+ ele: 'xd-select-pages-path',
22
+ valueKey: 'collect_phone_url',
23
+ groupKey:'advanced',
24
+ placeholder: '请选择收集手机号地址',
25
+ value: null,
26
+ setting: {
27
+ router: XdBus.getParentApi('getPagesTree'),
28
+ },
29
+ inline: false,
30
+ },
19
31
  ],
20
32
  };
@@ -94,6 +94,49 @@
94
94
  <!-- @onClose="handlePwdClose"-->
95
95
  <!-- ></xd-pw-pay>-->
96
96
  </view>
97
+ <xd-down-drawer
98
+ :show.sync="showDialog"
99
+ height="50vh"
100
+ >
101
+ <template>
102
+ <view class="top_title">请务必先关联,否则影响此卡使用</view>
103
+ <view class="method_item">
104
+ <view class="method_item_top">
105
+ <view class="method_title">方法一</view>
106
+ <view>复制文本,打开支付宝APP</view>
107
+ </view>
108
+ <view class="method_item_bottom">
109
+ <view class="method_item_bottom_left">吱口令:{{share_code}}</view>
110
+ <view class="method_item_bottom_right" @click="copy(share_code)">复制吱口令</view>
111
+ </view>
112
+ </view>
113
+ <view class="method_item">
114
+ <view class="method_item_top">
115
+ <view class="method_title">方法二</view>
116
+ <view>复制链接,在默认浏览器打开</view>
117
+ </view>
118
+ <view class="method_item_bottom">
119
+ <view class="method_item_bottom_left">{{sign_url}}</view>
120
+ <view class="method_item_bottom_right" @click="copy(sign_url)">复制链接</view>
121
+ </view>
122
+ </view>
123
+ <view class="method_item">
124
+ <view class="method_item_top">
125
+ <view class="method_title">方法三</view>
126
+ <view>保存图片,使用支付宝APP扫码</view>
127
+ </view>
128
+ <view class="method_item_bottom code_img">
129
+ <view>打开支付宝APP,点击扫一扫直接扫码或点击相册中保存图片</view>
130
+ <view class="code_box">
131
+ <view class="qr_code">
132
+ <image show-menu-by-longpress mode="aspectFit" :src="sign_url_qrcode"></image>
133
+ </view>
134
+ <view>长按保存二维码</view>
135
+ </view>
136
+ </view>
137
+ </view>
138
+ </template>
139
+ </xd-down-drawer>
97
140
  </view>
98
141
  </template>
99
142
 
@@ -110,6 +153,7 @@ import getBusinessImageUrl from "@/common/getBusinessImageUrl";
110
153
  import { Base64 } from "js-base64";
111
154
  import { getContainerPropsValue } from "@/utils/xd.base";
112
155
  import {mapState} from 'vuex';
156
+ import XdDownDrawer from "@/components/XdDownDrawer/XdDownDrawer"
113
157
 
114
158
  export default {
115
159
  name: "JfbBaseCardDetail",
@@ -118,6 +162,7 @@ export default {
118
162
  XdPwPay,
119
163
  XdEditPwd,
120
164
  XdUnit,
165
+ XdDownDrawer,
121
166
  },
122
167
  mixins: [componentsMixins, extsMixins, JfbBaseCardDetailMixin],
123
168
  computed:{
@@ -171,9 +216,25 @@ export default {
171
216
  isBrandLogo: false,
172
217
 
173
218
  isShowUnbind: false, //是否启动绑定按钮
219
+ collect_phone_url: "",//收集手机号地址
220
+ showDialog:false,
221
+ sign_url:'',
222
+ share_code:'',
223
+ sign_url_qrcode:'',
224
+ toCollectPhoneUrl:'',
174
225
  };
175
226
  },
176
- created() {},
227
+ created() {
228
+ // ifDef小程序拼接问题
229
+ let url = this.$xdUniHelper.parseURL();
230
+ // #ifdef MP-WEIXIN
231
+ this.toCollectPhoneUrl = url.relative
232
+ // #endif
233
+ // #ifdef H5
234
+ this.toCollectPhoneUrl = '@site_domain@'+''+url.relative
235
+ // #endif
236
+ console.log(this.toCollectPhoneUrl,encodeURIComponent(this.toCollectPhoneUrl),'this.toCollectPhoneUrl')
237
+ },
177
238
  methods: {
178
239
  onJfbLoad(options) {
179
240
  if (options["x-params"]) {
@@ -384,6 +445,8 @@ export default {
384
445
  this.timeStr = "01分19秒"
385
446
  }
386
447
  this.backUrl = getContainerPropsValue( this.container, "content.back_url", { value: "" }).value;
448
+ this.collect_phone_url = getContainerPropsValue(this.container, "content.collect_phone_url", { value: "" }).value;
449
+ console.log(this.collect_phone_url,'collect_phone_url')
387
450
  },
388
451
 
389
452
  /**
@@ -413,6 +476,19 @@ export default {
413
476
  }
414
477
 
415
478
  this.isShowUnbind = (res["is_can_unbind"] === 'Y' || res["is_can_unbind"] === undefined);
479
+ //支付宝弹框
480
+ if(res.enterprise_info&&res.enterprise_info.is_need_activate==='Y'){
481
+ this.share_code = res.enterprise_info.share_code;
482
+ this.sign_url = res.enterprise_info.sign_url;
483
+ this.sign_url_qrcode = res.enterprise_info.sign_url_qrcode;
484
+ if(res.enterprise_info.is_need_collect_phone_number==='Y'){
485
+ let url = `${this.collect_phone_url}?callback_url=${encodeURIComponent(this.toCollectPhoneUrl)}`
486
+ this.$xdUniHelper.navigateTo({
487
+ url:url,
488
+ });
489
+ }
490
+ this.showDialog = true;
491
+ }
416
492
  })
417
493
  .catch((err) => {
418
494
  // this.$refs["pwPay"].clearPwd();
@@ -436,6 +512,26 @@ export default {
436
512
  handlePwdClose() {
437
513
  this.$helper.navigateBack();
438
514
  },
515
+ /**
516
+ *@description 复制功能
517
+ * @param text
518
+ */
519
+ copy(text) {
520
+ // #ifdef H5
521
+ this.$copyText(text).then((res) => {
522
+ this.$xdAlert({ content: "复制成功" });
523
+ });
524
+ // #endif
525
+ // #ifndef H5
526
+ uni.setClipboardData({
527
+ data: text,
528
+ showToast: false,
529
+ success: () => {
530
+ //this.$xdAlert({ content: "复制成功" });
531
+ },
532
+ });
533
+ // #endif
534
+ },
439
535
  },
440
536
  };
441
537
  </script>
@@ -595,5 +691,70 @@ export default {
595
691
  }
596
692
  }
597
693
  }
694
+ .method_item{
695
+ padding: unit(32, rpx);
696
+ border-bottom: 1px solid #F8F8F8;
697
+ color: #333333;
698
+ font-size: unit(28,rpx);
699
+ &_top{
700
+ display: flex;
701
+ align-items: center;
702
+ }
703
+ &_bottom{
704
+ display: flex;
705
+ justify-content: space-between;
706
+ align-items: flex-start;
707
+ margin-top: unit(16, rpx);
708
+ height: unit(32,rpx);
709
+ line-height: unit(32,rpx);
710
+ font-size: unit(24,rpx);
711
+ color: #666666;
712
+ &_right{
713
+ min-width: unit(180,rpx);
714
+ text-align: right;
715
+ color: #FF8D1A;
716
+ }
717
+ &_left{
718
+ color: #666666;
719
+ white-space: nowrap;
720
+ overflow: hidden;
721
+ text-overflow: ellipsis;
722
+ }
723
+ }
724
+ .code_img{
725
+ height: auto!important;
726
+ }
727
+
728
+ }
729
+ .method_title{
730
+ color: #fff;
731
+ background-color: #FF8D1A;
732
+ width: unit(120,rpx);
733
+ height: unit(50,rpx);
734
+ line-height: unit(50,rpx);
735
+ border-radius: unit(25,rpx);
736
+ text-align: center;
737
+ margin-right: unit(20,rpx);
738
+ font-size: unit(24,rpx);
739
+ }
740
+ .top_title{
741
+ height: unit(100,rpx);
742
+ text-align: center;
743
+ line-height:unit(100,rpx);
744
+ color:#333333;
745
+ font-size:unit(32,rpx);
746
+ border-bottom: 1px solid #F8F8F8;
747
+ }
748
+ .code_box{
749
+ text-align: center;
750
+ .qr_code{
751
+ width: unit(168,rpx);
752
+ height: unit(168,rpx);
753
+ image{
754
+ width: 100%;
755
+ height: 100%;
756
+ }
757
+ }
758
+ }
598
759
  }
599
760
  </style>
@@ -73,5 +73,17 @@ export default {
73
73
  },
74
74
  inline: false,
75
75
  },
76
+ {
77
+ label: '收集手机号地址:',
78
+ ele: 'xd-select-pages-path',
79
+ valueKey: 'collect_phone_url',
80
+ groupKey:'advanced',
81
+ placeholder: '请选择收集手机号地址',
82
+ value: null,
83
+ setting: {
84
+ router: XdBus.getParentApi('getPagesTree'),
85
+ },
86
+ inline: false,
87
+ },
76
88
  ],
77
89
  };
@@ -108,6 +108,49 @@
108
108
  </view>
109
109
  </view>
110
110
  </view>
111
+ <xd-down-drawer
112
+ :show.sync="showDialog"
113
+ height="50vh"
114
+ >
115
+ <template>
116
+ <view class="top_title">请务必先关联,否则影响此卡使用</view>
117
+ <view class="method_item">
118
+ <view class="method_item_top">
119
+ <view class="method_title">方法一</view>
120
+ <view>复制文本,打开支付宝APP</view>
121
+ </view>
122
+ <view class="method_item_bottom">
123
+ <view class="method_item_bottom_left">吱口令:{{share_code}}</view>
124
+ <view class="method_item_bottom_right" @click="copy(share_code)">复制吱口令</view>
125
+ </view>
126
+ </view>
127
+ <view class="method_item">
128
+ <view class="method_item_top">
129
+ <view class="method_title">方法二</view>
130
+ <view>复制链接,在默认浏览器打开</view>
131
+ </view>
132
+ <view class="method_item_bottom">
133
+ <view class="method_item_bottom_left">{{sign_url}}</view>
134
+ <view class="method_item_bottom_right" @click="copy(sign_url)">复制链接</view>
135
+ </view>
136
+ </view>
137
+ <view class="method_item">
138
+ <view class="method_item_top">
139
+ <view class="method_title">方法三</view>
140
+ <view>保存图片,使用支付宝APP扫码</view>
141
+ </view>
142
+ <view class="method_item_bottom code_img">
143
+ <view>打开支付宝APP,点击扫一扫直接扫码或点击相册中保存图片</view>
144
+ <view class="code_box">
145
+ <view class="qr_code">
146
+ <image show-menu-by-longpress mode="aspectFit" :src="sign_url_qrcode"></image>
147
+ </view>
148
+ <view>长按保存二维码</view>
149
+ </view>
150
+ </view>
151
+ </view>
152
+ </template>
153
+ </xd-down-drawer>
111
154
  </view>
112
155
  </template>
113
156
 
@@ -126,6 +169,7 @@ import XdPwPay from "./XdPwPay";
126
169
  import XdEditPwd from "./XdEditPwd";
127
170
  import XdUnit from "@/components/XdUnit/XdUnit";
128
171
  import XdButton from '@/components/XdButton/XdButton'
172
+ import XdDownDrawer from "@/components/XdDownDrawer/XdDownDrawer"
129
173
  import {parsePath} from "@/utils/linkUrl";
130
174
  export default {
131
175
  name: "JfbBaseCardDetailEntry",
@@ -134,7 +178,8 @@ export default {
134
178
  XdPwPay,
135
179
  XdEditPwd,
136
180
  XdUnit,
137
- XdButton
181
+ XdButton,
182
+ XdDownDrawer,
138
183
  },
139
184
  mixins: [
140
185
  componentsMixins,extsMixins,JfbBaseCardDetailEntryMixin,colorCardMixins,
@@ -176,7 +221,13 @@ export default {
176
221
  isBrandLogo: false,
177
222
  isShowUnbind: false, //是否启动绑定按钮
178
223
  headerBg: {},
179
- give_url: ""
224
+ give_url: "",
225
+ collect_phone_url: "",//收集手机号地址
226
+ showDialog:false,
227
+ sign_url:'',
228
+ share_code:'',
229
+ sign_url_qrcode:'',
230
+ toCollectPhoneUrl:'',
180
231
  };
181
232
  },
182
233
  watch: {
@@ -193,6 +244,15 @@ export default {
193
244
  },
194
245
  },
195
246
  created() {
247
+ // ifDef小程序拼接问题
248
+ let url = this.$xdUniHelper.parseURL();
249
+ // #ifdef MP-WEIXIN
250
+ this.toCollectPhoneUrl = url.relative
251
+ // #endif
252
+ // #ifdef H5
253
+ this.toCollectPhoneUrl = '@site_domain@'+''+url.relative
254
+ // #endif
255
+ console.log(this.toCollectPhoneUrl,encodeURIComponent(this.toCollectPhoneUrl),'this.toCollectPhoneUrl')
196
256
  this.init(this.container)
197
257
  },
198
258
  methods: {
@@ -228,6 +288,8 @@ export default {
228
288
  this.backUrl = getContainerPropsValue(container, "content.back_url", { value: "" }).value;
229
289
  this.shift_url = getContainerPropsValue(container, "content.shift_url", { value: "" }).value;
230
290
  this.give_url = getContainerPropsValue(container, "content.give_url", { value: "" }).value;
291
+ this.collect_phone_url = getContainerPropsValue(container, "content.collect_phone_url", { value: "" }).value;
292
+ console.log(this.collect_phone_url,'collect_phone_url')
231
293
  //'wechat_mini_program|default'
232
294
  this.entryGroupId = getContainerPropsValue(container,"content.entryGroupId","default");
233
295
  },
@@ -279,6 +341,19 @@ export default {
279
341
  this.show = false;
280
342
  console.log(this.getCardThemes(res.card_type_name),'this.getCardThemes(res.card_type_name)');
281
343
  this.headerBg = this.getCardThemes(res.card_type_name);
344
+ //支付宝弹框
345
+ if(res.enterprise_info&&res.enterprise_info.is_need_activate==='Y'){
346
+ this.share_code = res.enterprise_info.share_code;
347
+ this.sign_url = res.enterprise_info.sign_url;
348
+ this.sign_url_qrcode = res.enterprise_info.sign_url_qrcode;
349
+ if(res.enterprise_info.is_need_collect_phone_number==='Y'){
350
+ let url = `${this.collect_phone_url}?callback_url=${encodeURIComponent(this.toCollectPhoneUrl)}`
351
+ this.$xdUniHelper.navigateTo({
352
+ url:url,
353
+ });
354
+ }
355
+ this.showDialog = true;
356
+ }
282
357
  })
283
358
  .catch((err) => {
284
359
  // this.$refs["pwPay"].clearPwd();
@@ -558,6 +633,26 @@ export default {
558
633
  clearTimeout(this.refrushTimeer);
559
634
  }
560
635
  },
636
+ /**
637
+ *@description 复制功能
638
+ * @param text
639
+ */
640
+ copy(text) {
641
+ // #ifdef H5
642
+ this.$copyText(text).then((res) => {
643
+ this.$xdAlert({ content: "复制成功" });
644
+ });
645
+ // #endif
646
+ // #ifndef H5
647
+ uni.setClipboardData({
648
+ data: text,
649
+ showToast: false,
650
+ success: () => {
651
+ //this.$xdAlert({ content: "复制成功" });
652
+ },
653
+ });
654
+ // #endif
655
+ },
561
656
  },
562
657
  };
563
658
  </script>
@@ -1008,5 +1103,71 @@ export default {
1008
1103
 
1009
1104
  }
1010
1105
  }
1106
+ .method_item{
1107
+ padding: unit(32, rpx);
1108
+ border-bottom: 1px solid #F8F8F8;
1109
+ color: #333333;
1110
+ font-size: unit(28,rpx);
1111
+ &_top{
1112
+ display: flex;
1113
+ align-items: center;
1114
+ }
1115
+ &_bottom{
1116
+ display: flex;
1117
+ justify-content: space-between;
1118
+ align-items: flex-start;
1119
+ margin-top: unit(16, rpx);
1120
+ height: unit(32,rpx);
1121
+ line-height: unit(32,rpx);
1122
+ font-size: unit(24,rpx);
1123
+ color: #666666;
1124
+ &_right{
1125
+ min-width: unit(180,rpx);
1126
+ text-align: right;
1127
+ color: #FF8D1A;
1128
+ }
1129
+ &_left{
1130
+ color: #666666;
1131
+ white-space: nowrap;
1132
+ overflow: hidden;
1133
+ text-overflow: ellipsis;
1134
+ }
1135
+ }
1136
+ .code_img{
1137
+ height: auto!important;
1138
+ }
1139
+
1140
+ }
1141
+ .method_title{
1142
+ color: #fff;
1143
+ background-color: #FF8D1A;
1144
+ width: unit(120,rpx);
1145
+ height: unit(50,rpx);
1146
+ line-height: unit(50,rpx);
1147
+ border-radius: unit(25,rpx);
1148
+ text-align: center;
1149
+ margin-right: unit(20,rpx);
1150
+ font-size: unit(24,rpx);
1151
+ }
1152
+ .top_title{
1153
+ height: unit(100,rpx);
1154
+ text-align: center;
1155
+ line-height:unit(100,rpx);
1156
+ color:#333333;
1157
+ font-size:unit(32,rpx);
1158
+ border-bottom: 1px solid #F8F8F8;
1159
+ }
1160
+ .code_box{
1161
+ text-align: center;
1162
+ .qr_code{
1163
+ width: unit(168,rpx);
1164
+ height: unit(168,rpx);
1165
+ image{
1166
+ width: 100%;
1167
+ height: 100%;
1168
+ }
1169
+ }
1170
+ }
1171
+
1011
1172
  }
1012
1173
  </style>
@@ -5,11 +5,23 @@ export default {
5
5
  advanced: [],
6
6
  content: [
7
7
  {
8
- label: '卡绑定成功回跳地址:',
8
+ label: '票券绑定成功回跳票券列表地址:',
9
9
  ele: 'xd-select-pages-path',
10
10
  valueKey: 'back_url',
11
11
  groupKey:'advanced',
12
- placeholder: '请选择卡绑定成功回跳地址',
12
+ placeholder: '请选择票券绑定成功回跳票券列表地址',
13
+ value: null,
14
+ setting: {
15
+ router: XdBus.getParentApi('getPagesTree'),
16
+ },
17
+ inline: false,
18
+ },
19
+ {
20
+ label: '票券绑定成功回跳票券详情地址:',
21
+ ele: 'xd-select-pages-path',
22
+ valueKey: 'back_detail_url',
23
+ groupKey:'advanced',
24
+ placeholder: '请选择票券绑定成功回跳票券详情地址',
13
25
  value: null,
14
26
  setting: {
15
27
  router: XdBus.getParentApi('getPagesTree'),
@@ -162,7 +162,7 @@ export default {
162
162
  backUrl: "",
163
163
  is_show_balance: "N", //是否显示余额
164
164
  my_card_url: "", //我的票券跳转地址
165
-
165
+ back_detail_url:"",//详情页地址
166
166
  inCallbackUrlOrg:'',//是否带有回调地址
167
167
 
168
168
  card_password_focus: false,
@@ -247,8 +247,17 @@ export default {
247
247
  this.handleBindConfirm();
248
248
  return;
249
249
  }
250
-
250
+ let card_number
251
+ if(this.card_number){
252
+ card_number = this.card_number;
253
+ }
254
+ if(this.qrcode&&this.info.card_number){
255
+ card_number = this.info.card_number;
256
+ }
251
257
  let path = this.getUrlCallback(this.my_card_url || this.backUrl);
258
+ if(res.jump_page==='detail'){
259
+ path = this.getUrlCallback(this.back_detail_url)+`?card_number=${card_number}`;
260
+ }
252
261
  //有优惠券处理
253
262
  if(this.hasCon){
254
263
  this.toShowCouponDialog();
@@ -286,6 +295,7 @@ export default {
286
295
  success: (res) => {
287
296
  if (res.confirm) {
288
297
  let path = this.getUrlCallback(this.my_card_url || this.backUrl);
298
+
289
299
  this.$xdUniHelper.redirectTo({ url: path});
290
300
  }else{
291
301
  }
@@ -294,6 +304,7 @@ export default {
294
304
  },
295
305
  init(container) {
296
306
  this.backUrl = getContainerPropsValue(container, "content.back_url", { value: "/pages/card/card" }).value;
307
+ this.back_detail_url = getContainerPropsValue(container, "content.back_detail_url", { value: "" }).value;
297
308
  this.card_num_placeholder = getContainerPropsValue(container, "content.card_num_placeholder", "请输入券号(电子券除外)");
298
309
  this.card_pwd_placeholder = getContainerPropsValue(container, "content.card_pwd_placeholder", "请输入密码");
299
310
  this.is_show_balance = getContainerPropsValue(container, 'content.is_show_balance', "N");
@@ -69,11 +69,23 @@ export default {
69
69
  ]
70
70
  },
71
71
  {
72
- label: '票券绑定成功回跳地址:',
72
+ label: '票券绑定成功回跳票券列表地址:',
73
73
  ele: 'xd-select-pages-path',
74
74
  valueKey: 'back_url',
75
75
  groupKey:'advanced',
76
- placeholder: '请选择票券绑定成功回跳地址',
76
+ placeholder: '请选择票券绑定成功回跳票券列表地址',
77
+ value: null,
78
+ setting: {
79
+ router: XdBus.getParentApi('getPagesTree'),
80
+ },
81
+ inline: false,
82
+ },
83
+ {
84
+ label: '票券绑定成功回跳票券详情地址:',
85
+ ele: 'xd-select-pages-path',
86
+ valueKey: 'back_detail_url',
87
+ groupKey:'advanced',
88
+ placeholder: '请选择票券绑定成功回跳票券详情地址',
77
89
  value: null,
78
90
  setting: {
79
91
  router: XdBus.getParentApi('getPagesTree'),
@@ -166,6 +166,7 @@ export default {
166
166
 
167
167
  //页面跳转地址
168
168
  backUrl: "",
169
+ back_detail_url: "",//票券详情跳转地址
169
170
  headerBg: {},
170
171
  my_card_url: "", //我的票券跳转地址
171
172
  inCallbackUrlOrg:'',//是否带有回调地址
@@ -266,12 +267,21 @@ export default {
266
267
  this.handleBindConfirm();
267
268
  return;
268
269
  }
269
-
270
+ let card_number
271
+ if(this.card_number){
272
+ card_number = this.card_number;
273
+ }
274
+ if(this.qrcode&&this.info.card_number){
275
+ card_number = this.info.card_number;
276
+ }
277
+ let path = this.getUrlCallback(this.my_card_url || this.backUrl);
278
+ if(res.jump_page==='detail'){
279
+ path = this.getUrlCallback(this.back_detail_url)+`?card_number=${card_number}`;
280
+ }
270
281
  if(this.hasCon){
271
282
  this.toShowCouponDialog();
272
283
  this.$bus.$on("onCloseConDialog",(container_id) => {
273
284
  if(container_id === this.hasCon){
274
- let path = this.getUrlCallback(this.backUrl)
275
285
  this.$xdUniHelper.redirectTo({
276
286
  url: path,
277
287
  });
@@ -281,7 +291,6 @@ export default {
281
291
  this.$xdAlert({
282
292
  content: "票券绑定成功",
283
293
  close: () => {
284
- let path = this.getUrlCallback(this.backUrl)
285
294
  this.$xdUniHelper.redirectTo({
286
295
  url: path,
287
296
  });
@@ -311,6 +320,7 @@ export default {
311
320
  },
312
321
  init(container) {
313
322
  this.backUrl = getContainerPropsValue(container, "content.back_url", { value: "/pages/card/card" }).value;
323
+ this.back_detail_url = getContainerPropsValue(container, "content.back_detail_url", { value: "" }).value;
314
324
  this.card_num_placeholder = getContainerPropsValue(container, "content.card_num_placeholder", "请输入券号(电子券除外)");
315
325
  this.card_pwd_placeholder = getContainerPropsValue(container, "content.card_pwd_placeholder", "请输入密码");
316
326
  this.my_card_url = getContainerPropsValue(container, 'content.my_card_url', { value: "" }).value;
@@ -327,7 +337,6 @@ export default {
327
337
  this.qrcode = decodeURIComponent(this.qrcode);
328
338
  }
329
339
  //#endif
330
-
331
340
  if(options.inCallback) {
332
341
  this.inCallbackUrlOrg = options.inCallback;
333
342
  }
@@ -5,11 +5,23 @@ export default {
5
5
  advanced: [],
6
6
  content: [
7
7
  {
8
- label: '卡绑定成功回跳地址:',
8
+ label: '票券绑定成功回跳票券列表地址:',
9
9
  ele: 'xd-select-pages-path',
10
10
  valueKey: 'back_url',
11
11
  groupKey:'advanced',
12
- placeholder: '请选择卡绑定成功回跳地址',
12
+ placeholder: '请选择票券绑定成功回跳票券列表地址',
13
+ value: null,
14
+ setting: {
15
+ router: XdBus.getParentApi('getPagesTree'),
16
+ },
17
+ inline: false,
18
+ },
19
+ {
20
+ label: '票券绑定成功回跳票券详情地址:',
21
+ ele: 'xd-select-pages-path',
22
+ valueKey: 'back_detail_url',
23
+ groupKey:'advanced',
24
+ placeholder: '请选择票券绑定成功回跳票券详情地址',
13
25
  value: null,
14
26
  setting: {
15
27
  router: XdBus.getParentApi('getPagesTree'),
@@ -106,10 +106,11 @@ export default {
106
106
  pa: "", //二维码
107
107
  //页面跳转地址
108
108
  backUrl: "",
109
-
109
+ back_detail_url: "",//票券绑定成功回跳票券详情地址
110
110
  inCallbackUrlOrg:'',//是否带有回调地址
111
111
  is_show_balance: "N", //是否显示余额
112
112
  hasCon: "", //是否有优惠券
113
+ card_number: "", //票券号码
113
114
  };
114
115
  },
115
116
  watch: {
@@ -164,6 +165,9 @@ export default {
164
165
  //#ifdef H5
165
166
  let base = this.jfbAuthorize.getBasePath(this);
166
167
  let url = `${location.origin}${base}${this.backUrl}`;
168
+ if(res.jump_page==='detail'){
169
+ url = `${location.origin}${base}${this.back_detail_url}`+`?card_number=${this.card_number}`;
170
+ }
167
171
  url = this.getUrlCallback(url)
168
172
  this.$xdLog.setARMSInfo({url}, 'static_qr_card_bind');
169
173
 
@@ -173,7 +177,10 @@ export default {
173
177
  // #endif
174
178
 
175
179
  //#ifndef H5
176
- let wPath = this.getUrlCallback(this.backUrl)
180
+ let wPath = this.getUrlCallback(this.backUrl);
181
+ if(res.jump_page==='detail'){
182
+ wPath = this.getUrlCallback(this.back_detail_url)+`?card_number=${this.card_number}`;
183
+ }
177
184
  this.$xdUniHelper.redirectTo({
178
185
  url:wPath,
179
186
  });
@@ -187,6 +194,9 @@ export default {
187
194
  //#ifdef H5
188
195
  let base = this.jfbAuthorize.getBasePath(this);
189
196
  let url = `${location.origin}${base}${this.backUrl}`;
197
+ if(res.jump_page==='detail'){
198
+ url = `${location.origin}${base}${this.back_detail_url}`+`?card_number=${this.card_number}`;
199
+ }
190
200
  url = this.getUrlCallback(url)
191
201
  this.$xdLog.setARMSInfo({url}, 'static_qr_card_bind');
192
202
 
@@ -197,6 +207,9 @@ export default {
197
207
 
198
208
  //#ifndef H5
199
209
  let wPath = this.getUrlCallback(this.backUrl)
210
+ if(res.jump_page==='detail'){
211
+ wPath = this.getUrlCallback(this.back_detail_url)+`?card_number=${this.card_number}`
212
+ }
200
213
  this.$xdUniHelper.redirectTo({
201
214
  url:wPath,
202
215
  });
@@ -212,6 +225,7 @@ export default {
212
225
  },
213
226
  init() {
214
227
  this.backUrl = getContainerPropsValue( this.container, "content.back_url", { value: "" }).value;
228
+ this.back_detail_url = getContainerPropsValue( this.container, "content.back_detail_url", { value: "" }).value;
215
229
  this.is_show_balance = getContainerPropsValue(this.container, 'content.is_show_balance', "N");
216
230
  },
217
231
  onJfbLoad(options) {
@@ -239,6 +253,7 @@ export default {
239
253
  })
240
254
  .then((res) => {
241
255
  console.log('getSweepByQrCardDetail',res)
256
+ this.card_number = res.card_number;
242
257
  res.is_exchange_name = res.is_exchange === "Y" ? "可转换" : "不可转换";
243
258
  let temp = {};
244
259
  Object.keys(res).map((key) => {