mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-13 07:04:21 +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
|
value: newValue
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if is custom field, set custom handle change value
|
||||||
|
if (this.metadata.isCustomField) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if (this.metadata.inTable) {
|
if (this.metadata.inTable) {
|
||||||
this.$store.dispatch('notifyCellTableChange', {
|
this.$store.dispatch('notifyCellTableChange', {
|
||||||
...sendParameters,
|
...sendParameters,
|
||||||
|
@ -22,6 +22,9 @@ export default {
|
|||||||
case 'PriceChecking':
|
case 'PriceChecking':
|
||||||
form = import('@/components/ADempiere/Form/PriceChecking')
|
form = import('@/components/ADempiere/Form/PriceChecking')
|
||||||
break
|
break
|
||||||
|
default:
|
||||||
|
form = import('@/views/ADempiere/Unsupported')
|
||||||
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user