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:
parent
74364f6c45
commit
e14171f335
@ -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,
|
||||
|
@ -22,6 +22,9 @@ export default {
|
||||
case 'PriceChecking':
|
||||
form = import('@/components/ADempiere/Form/PriceChecking')
|
||||
break
|
||||
default:
|
||||
form = import('@/views/ADempiere/Unsupported')
|
||||
break
|
||||
}
|
||||
|
||||
return () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user