n20-common-lib 2.22.36 → 2.22.38

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": "n20-common-lib",
3
- "version": "2.22.36",
3
+ "version": "2.22.38",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -1,5 +1,6 @@
1
1
  .dynamic-table-pro {
2
- v-deep .el-form-item {
2
+ .el-form-item,
3
+ .el-form-item--small.el-form-item {
3
4
  margin-bottom: 0;
4
5
  }
5
6
  }
@@ -441,7 +441,6 @@ export default {
441
441
  placeholder: item.props && item.props.placeholder ? item.props.placeholder : $lc('请选择'),
442
442
  clearable: (item.props && this.item.props.clearable) ?? true,
443
443
  multiple: item.multiple || item.props?.multiple,
444
- filterable: item.props?.filterable ?? true,
445
444
  ...item.props
446
445
  }
447
446
  elementDom = h(
@@ -219,15 +219,6 @@ export default {
219
219
  this.$message.warning(`请填写${item.cfgName}`)
220
220
  return false
221
221
  }
222
- if (
223
- item.cfgHasRemark === '1' &&
224
- !['11', '12'].includes(item.cfgType) &&
225
- !item.cfgRemark &&
226
- item.cfgRemark !== 0
227
- ) {
228
- this.$message.warning(`请填写${item.cfgName}备注`)
229
- return false
230
- }
231
222
  }
232
223
  return true
233
224
  }