jufubao-base 1.0.61-beta1012 → 1.0.61-beta1013

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.61-beta1012",
3
+ "version": "1.0.61-beta1013",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -531,7 +531,7 @@ export default {
531
531
  .catch(() => this.$xdHideLoading());
532
532
  },
533
533
 
534
- onShow(options) {
534
+ onJfbShow(options) {
535
535
  this.onJfbLoad(options);
536
536
  },
537
537
 
@@ -85,12 +85,12 @@
85
85
  let { inCallback } = options;
86
86
  if (inCallback) inCallback = Base64.decode(inCallback);
87
87
  this.inCallback = inCallback || this.settings.index;
88
-
88
+
89
89
  let params = {is_all: 'Y'};
90
90
  if (options['jfb_business_code']) {
91
91
  params['card_business_code'] = options['jfb_business_code'];
92
92
  }
93
-
93
+
94
94
  jfbRootExec("getListCardBind", {
95
95
  vm: this,
96
96
  data: params,
@@ -179,26 +179,9 @@
179
179
  );
180
180
  }
181
181
  },
182
- onJfbScroll(options) {
183
- console.log('event.onJfbScroll', options)
184
- },
185
- onJfbReachBottom(options) {
186
- console.log('event.onJfbReachBottom', options)
187
- },
182
+
188
183
  onJfbShow(options) {
189
- console.log('event.onJfbShow', options)
190
- },
191
- onJfbHide(options) {
192
- console.log('event.onJfbHide', options)
193
- },
194
- onJfbBack(options) {
195
- console.log('event.onJfbBack', options)
196
- },
197
- onJfbUpdate(...data) {
198
- console.log('event.onJfbUpdate', data)
199
- },
200
- onJfbCustomEvent(options) {
201
- console.log('event.onJfbReachBottom', options)
184
+ this.onJfbLoad(options);
202
185
  },
203
186
  }
204
187
  }