eoss-mobiles 0.3.13 → 0.3.14

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.
@@ -71,7 +71,7 @@
71
71
  :class="`iconfont icon-gou select-icon ${isDisabled(item) ? 'disabled' : '' }`"
72
72
  v-show="
73
73
  (enterprise ||
74
- (department &&
74
+ (selectType == departmentValueKey &&
75
75
  item[departmentLabelKey] == departmentValueKey)) &&
76
76
  !showTree
77
77
  "
@@ -82,7 +82,7 @@
82
82
  :class="`iconfont icon-quan select-icon ${isDisabled(item) ? 'disabled' : '' }`"
83
83
  v-show="
84
84
  (enterprise ||
85
- (department &&
85
+ (selectType == departmentValueKey &&
86
86
  item[departmentLabelKey] == departmentValueKey)) &&
87
87
  !showTree
88
88
  "
@@ -184,7 +184,7 @@
184
184
  item.attr &&
185
185
  (!item.nocheck ||
186
186
  enterprise ||
187
- (department &&
187
+ (selectType == departmentValueKey &&
188
188
  item[departmentLabelKey] == departmentValueKey)) &&
189
189
  !showTree &&
190
190
  inputSearch &&
@@ -197,7 +197,7 @@
197
197
  v-if="
198
198
  (!item.nocheck ||
199
199
  enterprise ||
200
- (department &&
200
+ (selectType == departmentValueKey &&
201
201
  item[departmentLabelKey] == departmentValueKey)) &&
202
202
  !showTree
203
203
  "
package/src/index.js CHANGED
@@ -105,7 +105,7 @@ if (typeof window !== 'undefined' && window.Vue) {
105
105
  }
106
106
 
107
107
  export default {
108
- version: '0.3.13',
108
+ version: '0.3.14',
109
109
  install,
110
110
  Button,
111
111
  ButtonGroup,