1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 20:39:48 +08:00

fix: Not set value without fieldList. (#484)

This commit is contained in:
Edwin Betancourt 2020-05-06 11:08:51 -04:00 committed by GitHub
parent 74364f6c45
commit e14171f335
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -140,6 +140,12 @@ export const fieldMixin = {
value: newValue
})
}
// if is custom field, set custom handle change value
if (this.metadata.isCustomField) {
return
}
if (this.metadata.inTable) {
this.$store.dispatch('notifyCellTableChange', {
...sendParameters,

View File

@ -22,6 +22,9 @@ export default {
case 'PriceChecking':
form = import('@/components/ADempiere/Form/PriceChecking')
break
default:
form = import('@/views/ADempiere/Unsupported')
break
}
return () => {