mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-13 23:20:12 +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() {
|
sendValuesToServer() {
|
||||||
const fieldsNotReady = this.$store.getters.getFieldsListEmptyMandatory({
|
const fieldsNotReady = this.$store.getters.getFieldsListEmptyMandatory({
|
||||||
containerUuid: this.containerUuid
|
containerUuid: this.containerUuid,
|
||||||
|
isValidate: true
|
||||||
})
|
})
|
||||||
if (!this.isEmptyValue(fieldsNotReady)) {
|
if (!this.isEmptyValue(fieldsNotReady)) {
|
||||||
showNotification({
|
showNotification({
|
||||||
|
@ -73,7 +73,8 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
emptyMandatoryFields() {
|
emptyMandatoryFields() {
|
||||||
const field = this.$store.getters.getFieldsListEmptyMandatory({
|
const field = this.$store.getters.getFieldsListEmptyMandatory({
|
||||||
containerUuid: this.containerUuid
|
containerUuid: this.containerUuid,
|
||||||
|
isValidate: true
|
||||||
})
|
})
|
||||||
return field
|
return field
|
||||||
}
|
}
|
||||||
|
@ -177,7 +177,7 @@ export default {
|
|||||||
containerUuid: mutation.payload.containerUuid,
|
containerUuid: mutation.payload.containerUuid,
|
||||||
format: 'object'
|
format: 'object'
|
||||||
})
|
})
|
||||||
this.searchBPartnerList({ contactName: values.Name2 })
|
this.searchBPartnerList(values)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -350,7 +350,8 @@ export default {
|
|||||||
const containerUuid = this.containerUuid
|
const containerUuid = this.containerUuid
|
||||||
const fieldsEmpty = this.$store.getters.getFieldsListEmptyMandatory({
|
const fieldsEmpty = this.$store.getters.getFieldsListEmptyMandatory({
|
||||||
containerUuid,
|
containerUuid,
|
||||||
fieldsList: this.fieldsList
|
fieldsList: this.fieldsList,
|
||||||
|
isValidate: true
|
||||||
})
|
})
|
||||||
const amount = this.$store.getters.getValueOfField({
|
const amount = this.$store.getters.getValueOfField({
|
||||||
containerUuid,
|
containerUuid,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user