|
@ -73,7 +73,7 @@ |
|
|
</el-form> |
|
|
</el-form> |
|
|
<div slot="footer" class="dialog-footer"> |
|
|
<div slot="footer" class="dialog-footer"> |
|
|
<el-button @click.native="editFormVisible = false">取消</el-button> |
|
|
<el-button @click.native="editFormVisible = false">取消</el-button> |
|
|
<el-button type="primary" @click.native="editSubmit" :loading="editLoading">{{btnEditText}}</el-button> |
|
|
|
|
|
|
|
|
<el-button type="primary" @click.native="editSubmit" :loading="editLoading">提交</el-button> |
|
|
</div> |
|
|
</div> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</section> |
|
|
</section> |
|
@ -106,7 +106,6 @@ |
|
|
addr: '' |
|
|
addr: '' |
|
|
}, |
|
|
}, |
|
|
editLoading: false, |
|
|
editLoading: false, |
|
|
btnEditText: '提 交', |
|
|
|
|
|
editFormRules: { |
|
|
editFormRules: { |
|
|
name: [ |
|
|
name: [ |
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
|
{ required: true, message: '请输入姓名', trigger: 'blur' } |
|
@ -185,7 +184,6 @@ |
|
|
_this.$confirm('确认提交吗?', '提示', {}).then(() => { |
|
|
_this.$confirm('确认提交吗?', '提示', {}).then(() => { |
|
|
_this.editLoading = true; |
|
|
_this.editLoading = true; |
|
|
NProgress.start(); |
|
|
NProgress.start(); |
|
|
_this.btnEditText = '提交中'; |
|
|
|
|
|
|
|
|
|
|
|
if (_this.editForm.id == 0) { |
|
|
if (_this.editForm.id == 0) { |
|
|
//新增 |
|
|
//新增 |
|
@ -199,7 +197,6 @@ |
|
|
addUser(para).then((res) => { |
|
|
addUser(para).then((res) => { |
|
|
_this.editLoading = false; |
|
|
_this.editLoading = false; |
|
|
NProgress.done(); |
|
|
NProgress.done(); |
|
|
_this.btnEditText = '提 交'; |
|
|
|
|
|
_this.$notify({ |
|
|
_this.$notify({ |
|
|
title: '成功', |
|
|
title: '成功', |
|
|
message: '提交成功', |
|
|
message: '提交成功', |
|
@ -221,7 +218,6 @@ |
|
|
editUser(para).then((res) => { |
|
|
editUser(para).then((res) => { |
|
|
_this.editLoading = false; |
|
|
_this.editLoading = false; |
|
|
NProgress.done(); |
|
|
NProgress.done(); |
|
|
_this.btnEditText = '提 交'; |
|
|
|
|
|
_this.$notify({ |
|
|
_this.$notify({ |
|
|
title: '成功', |
|
|
title: '成功', |
|
|
message: '提交成功', |
|
|
message: '提交成功', |
|
@ -258,7 +254,9 @@ |
|
|
this.getUsers(); |
|
|
this.getUsers(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style scoped> |
|
|
<style scoped> |
|
|
|
|
|
|
|
|
</style> |
|
|
</style> |