eoss-ui 0.6.27 → 0.6.28

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/lib/login.js CHANGED
@@ -4026,7 +4026,7 @@ var nightImg = 'data:image/jpeg;base64,/9j/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA
4026
4026
  // ESM COMPAT FLAG
4027
4027
  __webpack_require__.r(__webpack_exports__);
4028
4028
 
4029
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=8b2dac04&
4029
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=2556860e&
4030
4030
  var render = function () {
4031
4031
  var _vm = this
4032
4032
  var _h = _vm.$createElement
@@ -5178,7 +5178,7 @@ var staticRenderFns = [
5178
5178
  render._withStripped = true
5179
5179
 
5180
5180
 
5181
- // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=8b2dac04&
5181
+ // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=2556860e&
5182
5182
 
5183
5183
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
5184
5184
  var regenerator_ = __webpack_require__(13);
@@ -6568,7 +6568,7 @@ var ceshi = util["a" /* default */].getParams('ceshi');
6568
6568
  return { 'background-image': 'url(' + img + ')' };
6569
6569
  },
6570
6570
  showForget: function showForget() {
6571
- return this.forget === true && (this.loginModel.indexOf('11') > -1 || this.loginModel.indexOf('6') > -1);
6571
+ return this.forget && typeof this.forget === 'string' ? true : this.forget === true && (this.loginModel.indexOf('11') > -1 || this.loginModel.indexOf('6') > -1);
6572
6572
  }
6573
6573
  },
6574
6574
  watch: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-ui",
3
- "version": "0.6.27",
3
+ "version": "0.6.28",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -831,11 +831,11 @@ export default {
831
831
  return { 'background-image': `url(${img})` };
832
832
  },
833
833
  showForget() {
834
- return (
835
- this.forget === true &&
836
- (this.loginModel.indexOf('11') > -1 ||
837
- this.loginModel.indexOf('6') > -1)
838
- );
834
+ return this.forget && typeof this.forget === 'string'
835
+ ? true
836
+ : this.forget === true &&
837
+ (this.loginModel.indexOf('11') > -1 ||
838
+ this.loginModel.indexOf('6') > -1);
839
839
  }
840
840
  },
841
841
  watch: {
package/src/index.js CHANGED
@@ -121,7 +121,7 @@ if (typeof window !== 'undefined' && window.Vue) {
121
121
  }
122
122
 
123
123
  export default {
124
- version: '0.6.27',
124
+ version: '0.6.28',
125
125
  install,
126
126
  Button,
127
127
  ButtonGroup,