vue2-client 1.2.69 → 1.2.70

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.
@@ -121,7 +121,7 @@
121
121
  <a-select
122
122
  v-if="!attr.lazyLoad || attr.lazyLoad === 'false'"
123
123
  v-model="form[attr.model]"
124
- :disabled="disabled || !selectsArray[attr.group] || !selectsArray[attr.group][attr.groupIndex] || (selectsArray[attr.group][attr.groupIndex] && selectsArray[attr.group][attr.groupIndex].length === 0)"
124
+ :disabled=" attr.groupIndex>1 && (disabled || !selectsArray[attr.group] || !selectsArray[attr.group][attr.groupIndex] || (selectsArray[attr.group][attr.groupIndex] && selectsArray[attr.group][attr.groupIndex].length === 0))"
125
125
  @change="selectsItemCheck(attr.group, attr.groupIndex, form[attr.model])"
126
126
  show-search
127
127
  :getPopupContainer=" triggerNode => { return triggerNode.parentNode } "