mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-10 20:39:48 +08:00
search support in the customer list (#621)
Co-authored-by: Elsio Sanchez <elsiosanche@gmail.com>
This commit is contained in:
parent
b1bd5c8e11
commit
f2614f70fc
@ -238,7 +238,8 @@ export default {
|
||||
},
|
||||
sendValuesToServer() {
|
||||
const fieldsNotReady = this.$store.getters.getFieldsListEmptyMandatory({
|
||||
containerUuid: this.containerUuid
|
||||
containerUuid: this.containerUuid,
|
||||
isValidate: true
|
||||
})
|
||||
if (!this.isEmptyValue(fieldsNotReady)) {
|
||||
showNotification({
|
||||
|
@ -73,7 +73,8 @@ export default {
|
||||
computed: {
|
||||
emptyMandatoryFields() {
|
||||
const field = this.$store.getters.getFieldsListEmptyMandatory({
|
||||
containerUuid: this.containerUuid
|
||||
containerUuid: this.containerUuid,
|
||||
isValidate: true
|
||||
})
|
||||
return field
|
||||
}
|
||||
|
@ -177,7 +177,7 @@ export default {
|
||||
containerUuid: mutation.payload.containerUuid,
|
||||
format: 'object'
|
||||
})
|
||||
this.searchBPartnerList({ contactName: values.Name2 })
|
||||
this.searchBPartnerList(values)
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -350,7 +350,8 @@ export default {
|
||||
const containerUuid = this.containerUuid
|
||||
const fieldsEmpty = this.$store.getters.getFieldsListEmptyMandatory({
|
||||
containerUuid,
|
||||
fieldsList: this.fieldsList
|
||||
fieldsList: this.fieldsList,
|
||||
isValidate: true
|
||||
})
|
||||
const amount = this.$store.getters.getValueOfField({
|
||||
containerUuid,
|
||||
|
Loading…
x
Reference in New Issue
Block a user