1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 12:01:57 +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,
isChangedOldValue
}
if (this.fieldAttributes.panelType === 'form') {
this.$store.commit('updateValueOfField', {
containerUuid: this.fieldAttributes.containerUuid,
columnName: this.fieldAttributes.columnName,
value: newValue
})
}
this.$store.dispatch('notifyFieldChange', {
...sendParameters
})

View File

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

View File

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