jufubao-base 1.0.151 → 1.0.153

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.151",
3
+ "version": "1.0.153",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -612,20 +612,21 @@ export default {
612
612
  /**
613
613
  * @description 工行e生活处理
614
614
  */
615
- icbcLogin(){
615
+ icbcLogin(loginParams){
616
+
616
617
  //无三方用户登录信息
617
- if(!this.loginParams) {
618
+ if(!loginParams) {
618
619
  this.status = false;
619
620
  console.warn(`无三方用户登录信息`);
620
621
  throw new Error('无三方用户登录信息');
621
622
  }
622
623
 
623
- console.warn(`LoginParams.use: ${this.loginParams}`)
624
+ console.warn(`LoginParams.use: ${loginParams}`)
624
625
  this.$xdShowLoading({});
625
626
  jfbRootExec("userBaseLoginIcb", {
626
627
  vm: this,
627
628
  data:{
628
- encrypted_params: this.loginParams,
629
+ encrypted_params: loginParams,
629
630
  provider_id: this.quickLogin.provider_id
630
631
  },
631
632
  })
@@ -649,7 +650,7 @@ export default {
649
650
  //工行处理
650
651
  if(this.quickLogin && this.quickLogin.login_platform_code === 'icbc'){
651
652
  window['ICBC_SDK']['merLogin']((res)=>{
652
- console.log('ICBC_SDK',res);
653
+ console.warn(`get.ICBC_SDK:${res}`);
653
654
  this.icbcLogin(res)
654
655
  })
655
656
  return;