1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-13 15:15:53 +08:00
This commit is contained in:
Elsio Sanchez 2021-04-21 12:21:19 -04:00 committed by GitHub
parent 6b27db091d
commit 1b174312a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -203,6 +203,13 @@ export default {
isSendCallout, isSendCallout,
isChangedOldValue isChangedOldValue
} }
if (this.fieldAttributes.panelType === 'form') {
this.$store.commit('updateValueOfField', {
containerUuid: this.fieldAttributes.containerUuid,
columnName: this.fieldAttributes.columnName,
value: newValue
})
}
this.$store.dispatch('notifyFieldChange', { this.$store.dispatch('notifyFieldChange', {
...sendParameters ...sendParameters
}) })

View File

@ -62,7 +62,6 @@
<el-popover <el-popover
v-if="!isMobile" v-if="!isMobile"
placement="top" placement="top"
width="400"
trigger="click" trigger="click"
style="padding: 0px;" style="padding: 0px;"
:hide="visibleForDesktop" :hide="visibleForDesktop"
@ -222,7 +221,6 @@ export default {
if (this.isSelectCreated) { if (this.isSelectCreated) {
return () => import('@/components/ADempiere/Field/FieldSelectMultiple') return () => import('@/components/ADempiere/Field/FieldSelectMultiple')
} }
let field let field
switch (this.field.componentPath) { switch (this.field.componentPath) {
case 'FieldAutocomplete': case 'FieldAutocomplete':

View File

@ -27,6 +27,7 @@ export default [
handleContentSelection: true, handleContentSelection: true,
handleActionPerformed: true, handleActionPerformed: true,
size: 24, size: 24,
isNumericField: true,
isActiveLogics: true, isActiveLogics: true,
isMandatory: true isMandatory: true
} }