jufubao-base 1.0.311-beta2 → 1.0.311-beta3
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
|
@@ -445,7 +445,7 @@ export default {
|
|
|
445
445
|
this.timeStr = "01分19秒"
|
|
446
446
|
}
|
|
447
447
|
this.backUrl = getContainerPropsValue( this.container, "content.back_url", { value: "" }).value;
|
|
448
|
-
this.collect_phone_url = getContainerPropsValue(container, "content.collect_phone_url", { value: "" }).value;
|
|
448
|
+
this.collect_phone_url = getContainerPropsValue(this.container, "content.collect_phone_url", { value: "" }).value;
|
|
449
449
|
console.log(this.collect_phone_url,'collect_phone_url')
|
|
450
450
|
},
|
|
451
451
|
|
|
@@ -271,7 +271,7 @@ export default {
|
|
|
271
271
|
this.toShowCouponDialog();
|
|
272
272
|
this.$bus.$on("onCloseConDialog",(container_id) => {
|
|
273
273
|
if(container_id === this.hasCon){
|
|
274
|
-
let path = this.getUrlCallback(this.backUrl)
|
|
274
|
+
let path = this.getUrlCallback(this.backUrl)+`?card_number=${this.card_number}`
|
|
275
275
|
this.$xdUniHelper.redirectTo({
|
|
276
276
|
url: path,
|
|
277
277
|
});
|
|
@@ -281,7 +281,7 @@ export default {
|
|
|
281
281
|
this.$xdAlert({
|
|
282
282
|
content: "票券绑定成功",
|
|
283
283
|
close: () => {
|
|
284
|
-
let path = this.getUrlCallback(this.backUrl)
|
|
284
|
+
let path = this.getUrlCallback(this.backUrl)+`?card_number=${this.card_number}`
|
|
285
285
|
this.$xdUniHelper.redirectTo({
|
|
286
286
|
url: path,
|
|
287
287
|
});
|
|
@@ -300,7 +300,7 @@ export default {
|
|
|
300
300
|
showClose: false,
|
|
301
301
|
success: (res) => {
|
|
302
302
|
if (res.confirm) {
|
|
303
|
-
let path = this.getUrlCallback(this.my_card_url || this.backUrl)
|
|
303
|
+
let path = this.getUrlCallback(this.my_card_url || this.backUrl)+`?card_number=${this.card_number}`
|
|
304
304
|
this.$xdUniHelper.redirectTo({
|
|
305
305
|
url: path,
|
|
306
306
|
});
|