imeik-bizui 0.4.0 → 0.4.2

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.
@@ -165,6 +165,7 @@ export default {
165
165
  }
166
166
  this.changeShowItems()
167
167
  this.setTypeDataOnChange()
168
+ this.setPropsData()
168
169
  },
169
170
  changeShowItems() {
170
171
  const items = getTypeItems(this.formConfig.props.applyType, this.isView)
@@ -201,8 +201,8 @@ export default {
201
201
  const data = {
202
202
  accountUid: this.formProps.applicationApplyCustomer?.accountUid,
203
203
  applyType: this.formProps.applyTypeInfo?.applyType,
204
- belongCompany: this.formConfig.belongCompany,
205
- formConfigSubCategory: this.formConfig.formConfigSubCategory,
204
+ belongCompany: this.formProps.belongCompany,
205
+ formConfigSubCategory: this.formProps.formConfigSubCategory,
206
206
  rcoiCode: this.rcoiInfo.rcoiCode,
207
207
  rcoiNumber: this.rcoiInfo.rcoiNumber
208
208
  }
@@ -218,6 +218,7 @@ export default {
218
218
  */
219
219
  show() {
220
220
  this.dialogVisible = true
221
+ this.getList()
221
222
  },
222
223
  /**
223
224
  * 关闭弹窗
@@ -250,8 +251,12 @@ export default {
250
251
  selectionChange(selection) {
251
252
  this.selectItems = selection
252
253
  },
253
- resetForm() {},
254
- search() {}
254
+ resetForm() {
255
+ this.getList()
256
+ },
257
+ search() {
258
+ this.getList()
259
+ }
255
260
  }
256
261
  }
257
262
  </script>