We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 176b300 commit bc4b969Copy full SHA for bc4b969
src/views/accountInfo/person.vue
@@ -768,6 +768,11 @@ export default {
768
this.$refs['formExperience'].resetFields();
769
this.modalShow = false;
770
this.$Message.success('工作经历添加成功');
771
+ $ax.getAjaxData('Center/workList', {}, res => {//获取工作经历
772
+ if(res.code == 0){
773
+ this.workExperienceData = res.data;
774
+ }
775
+ });
776
}
777
});
778
},
@@ -784,6 +789,11 @@ export default {
784
789
785
790
786
791
this.$Message.success('教育经历添加成功');
792
+ $ax.getAjaxData('Center/educationList', {}, res => {//获取教育经历
793
794
+ this.educationData = res.data;
795
796
787
797
788
798
799
0 commit comments