|
@@ -70,6 +70,9 @@ export default {
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ mounted() {
|
|
|
|
|
+ this.cnzz("签约流程", "最后一步", "访问");
|
|
|
|
|
+ },
|
|
|
methods: {
|
|
methods: {
|
|
|
educationChange(val) {
|
|
educationChange(val) {
|
|
|
this.education = [...val];
|
|
this.education = [...val];
|
|
@@ -85,11 +88,14 @@ export default {
|
|
|
},
|
|
},
|
|
|
async nextStep() {
|
|
async nextStep() {
|
|
|
if (!this.canFinish) {
|
|
if (!this.canFinish) {
|
|
|
|
|
+ this.cnzz("签约流程", "完成签约", "资料未完善");
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
|
|
+ this.cnzz("签约流程", "完成签约", "提交");
|
|
|
let that = this;
|
|
let that = this;
|
|
|
let res = await this.$axios.$post("/api/user/sign", {});
|
|
let res = await this.$axios.$post("/api/user/sign", {});
|
|
|
if (res.status === 1) {
|
|
if (res.status === 1) {
|
|
|
|
|
+ this.cnzz("签约流程", "完成签约", "提交成功");
|
|
|
this.$alert("签约提交成功,等待后台审核", "", {
|
|
this.$alert("签约提交成功,等待后台审核", "", {
|
|
|
type: "success",
|
|
type: "success",
|
|
|
callback: function () {
|
|
callback: function () {
|