imeik-bizui 1.3.2 → 1.3.3

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.
@@ -95,7 +95,7 @@ export default {
95
95
  type: 'ImInput',
96
96
  prop: 'erpBillName',
97
97
  label: 'ERP出库类型',
98
- hidden: this.formProps.formBaseNo === 'B05', // 专家费类型的隐藏
98
+ hidden: false, // 专家费类型的隐藏
99
99
  attrs: {
100
100
  disabled: true,
101
101
  isView: this.isView
@@ -141,6 +141,12 @@ export default {
141
141
  deep: true
142
142
  }
143
143
  },
144
+ created() {
145
+ if (this.formProps.formBaseNo === 'B05') {
146
+ const erpIndex = this.formConfig.formItems.findIndex((item) => item.prop === 'erpBillName')
147
+ this.formConfig.formItems[erpIndex].hidden = true
148
+ }
149
+ },
144
150
  mounted() {
145
151
  this.handleBusEvent()
146
152
  this.getApplyList()
@@ -266,7 +266,7 @@ export default {
266
266
  op: 'LIKE',
267
267
  tagCode: 'realName',
268
268
  type: 'LEAF_NODE',
269
- value: val
269
+ value: val || ''
270
270
  }
271
271
  ],
272
272
  tagModel: 'USER',