|
|
@@ -46,7 +46,7 @@
|
|
|
<FormYunDuan v-if="isFormYunDuanShow" v-on:formChange="formChange" v-on:formSubmit="formSubmit"></FormYunDuan>
|
|
|
<StepEnd v-if="isStepEndShow"></StepEnd>
|
|
|
|
|
|
- <FormRecomment v-if="isShowFormRecomment" :projectid="projectid"></FormRecomment>
|
|
|
+ <FormRecomment v-if="isShowFormRecommend" :projectid="projectid"></FormRecomment>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -93,7 +93,7 @@ export default {
|
|
|
// wait process finish
|
|
|
activeStatus: "wait",
|
|
|
|
|
|
- isShowFormRecomment: false,
|
|
|
+ isShowFormRecommend: false,
|
|
|
projectid: ""
|
|
|
};
|
|
|
},
|
|
|
@@ -231,6 +231,12 @@ export default {
|
|
|
} else {
|
|
|
this.type = 0;
|
|
|
}
|
|
|
+
|
|
|
+ if (val.type == 1 && val.step == 3 && val.projectid) {
|
|
|
+ this.isShowFormRecommend = true
|
|
|
+ this.projectid = val.projectid
|
|
|
+ }
|
|
|
+
|
|
|
this.activeStatus = "wait";
|
|
|
}
|
|
|
},
|
|
|
@@ -248,7 +254,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
if (query.type == 1 && query.step == 3 && query.projectid) {
|
|
|
- this.isShowFormRecomment = true
|
|
|
+ this.isShowFormRecommend = true
|
|
|
this.projectid = query.projectid
|
|
|
}
|
|
|
this.baseUrl = this.$store.state.domainConfig.siteUrl;
|