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.
- package/dist/bizui/src/FieldApplyTypeView/index.vue +1 -0
- package/dist/bizui/src/FieldMaterialSelect/components/SelectProductDialog.vue +9 -4
- package/dist/imeik-bizui.common.js +109 -103
- package/dist/imeik-bizui.common.js.gz +0 -0
- package/dist/imeik-bizui.css +1 -1
- package/dist/imeik-bizui.css.gz +0 -0
- package/dist/imeik-bizui.umd.js +109 -103
- package/dist/imeik-bizui.umd.js.gz +0 -0
- package/dist/imeik-bizui.umd.min.js +4 -4
- package/dist/imeik-bizui.umd.min.js.gz +0 -0
- package/package.json +1 -1
|
@@ -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.
|
|
205
|
-
formConfigSubCategory: this.
|
|
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
|
-
|
|
254
|
+
resetForm() {
|
|
255
|
+
this.getList()
|
|
256
|
+
},
|
|
257
|
+
search() {
|
|
258
|
+
this.getList()
|
|
259
|
+
}
|
|
255
260
|
}
|
|
256
261
|
}
|
|
257
262
|
</script>
|