修改
This commit is contained in:
parent
360afb46c7
commit
a4d545bc98
@ -252,6 +252,7 @@ export default {
|
|||||||
var obj = {
|
var obj = {
|
||||||
certificateName: null,
|
certificateName: null,
|
||||||
certificateUrl: null,
|
certificateUrl: null,
|
||||||
|
sort: null,
|
||||||
idd: this.idd
|
idd: this.idd
|
||||||
};
|
};
|
||||||
if (this.form.nurseStationPersonCertificateList.length == 5) {
|
if (this.form.nurseStationPersonCertificateList.length == 5) {
|
||||||
@ -412,6 +413,7 @@ export default {
|
|||||||
nurseStationPersonCertificateList: [{
|
nurseStationPersonCertificateList: [{
|
||||||
certificateName: null,
|
certificateName: null,
|
||||||
certificateUrl: null,
|
certificateUrl: null,
|
||||||
|
sort: null,
|
||||||
idd: this.idd
|
idd: this.idd
|
||||||
}]
|
}]
|
||||||
};
|
};
|
||||||
@ -508,6 +510,7 @@ export default {
|
|||||||
var obj = {
|
var obj = {
|
||||||
certificateName: null,
|
certificateName: null,
|
||||||
certificateUrl: null,
|
certificateUrl: null,
|
||||||
|
sort: null,
|
||||||
idd: this.idd
|
idd: this.idd
|
||||||
};
|
};
|
||||||
if (this.form.nurseStationPersonCertificateList.length == 0) {
|
if (this.form.nurseStationPersonCertificateList.length == 0) {
|
||||||
@ -527,6 +530,13 @@ export default {
|
|||||||
submitForm() {
|
submitForm() {
|
||||||
this.$refs["form"].validate((valid) => {
|
this.$refs["form"].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
|
if (this.form.nurseStationPersonCertificateList.length > 0) {
|
||||||
|
this.form.nurseStationPersonCertificateList.forEach(e => {
|
||||||
|
if (!e.certificateName && !e.certificateUrl && !e.sort) {
|
||||||
|
this.form.nurseStationPersonCertificateList = this.form.nurseStationPersonCertificateList.filter(el => el != e)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
if (this.form.id != null) {
|
if (this.form.id != null) {
|
||||||
updatePerson(this.form).then((response) => {
|
updatePerson(this.form).then((response) => {
|
||||||
this.$modal.msgSuccess("修改成功");
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user