jufubao-base 1.0.205 → 1.0.206-beta2
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
|
@@ -198,11 +198,11 @@ export default {
|
|
|
198
198
|
},
|
|
199
199
|
methods: {
|
|
200
200
|
handleLabel(el){
|
|
201
|
-
this.card_password_focus = false;
|
|
202
|
-
this.card_number_focus = false;
|
|
203
|
-
setTimeout(()=>{
|
|
204
|
-
|
|
205
|
-
},50)
|
|
201
|
+
// this.card_password_focus = false;
|
|
202
|
+
// this.card_number_focus = false;
|
|
203
|
+
// setTimeout(()=>{
|
|
204
|
+
// this[`${el}_focus`] = true;
|
|
205
|
+
// },50)
|
|
206
206
|
},
|
|
207
207
|
handleIcon(){
|
|
208
208
|
this.isPassword = !this.isPassword
|
|
@@ -280,7 +280,8 @@ export default {
|
|
|
280
280
|
btn_txt: "",
|
|
281
281
|
btn_style: {},
|
|
282
282
|
btnTextSize: '',
|
|
283
|
-
is_blank_page: 'Y'
|
|
283
|
+
is_blank_page: 'Y',
|
|
284
|
+
foreign_id: null
|
|
284
285
|
};
|
|
285
286
|
},
|
|
286
287
|
computed: {
|
|
@@ -533,6 +534,7 @@ export default {
|
|
|
533
534
|
namespace: this.pageBusinessCode,
|
|
534
535
|
activity_id: this.activity_id,
|
|
535
536
|
prize_id: item.prize_id,
|
|
537
|
+
foreign_id: this.foreign_id
|
|
536
538
|
},
|
|
537
539
|
})
|
|
538
540
|
.then((res) => {
|
|
@@ -566,6 +568,7 @@ export default {
|
|
|
566
568
|
distribution_method: this.method,
|
|
567
569
|
namespace: this.pageBusinessCode,
|
|
568
570
|
activity_id: this.activity_id,
|
|
571
|
+
foreign_id: this.foreign_id
|
|
569
572
|
},
|
|
570
573
|
})
|
|
571
574
|
.then((res) => {
|
|
@@ -660,6 +663,7 @@ export default {
|
|
|
660
663
|
console.log(this.pageBusinessCode, "pageNamespace");
|
|
661
664
|
this.options = options;
|
|
662
665
|
this.activity_id = options.activity_id;
|
|
666
|
+
this.foreign_id = options.foreign_id;
|
|
663
667
|
this.method = options.distribution_method
|
|
664
668
|
? options.distribution_method
|
|
665
669
|
: "entry";
|