Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Commit

Permalink
fix(certification): (#552) 企业认证被驳回后重新认证进入了个人认证的页面的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mutoe committed Oct 16, 2018
1 parent beae04c commit b775110
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/page/Profile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,8 @@ export default {
this.$bus.$emit("actionSheet", actions, "取消");
} else if (this.verified.status === 2) {
// 被驳回则补充填写表单
this.$router.push({ path: "/profile/certificate" });
const type = this.verified.certification_name || "user";
this.certificate(type);
} else {
this.$router.push({ path: "/profile/certification" });
}
Expand Down

0 comments on commit b775110

Please sign in to comment.