|
@@ -46,7 +46,7 @@
|
|
|
<FormYunDuan v-if="isFormYunDuanShow" v-on:formChange="formChange" v-on:formSubmit="formSubmit"></FormYunDuan>
|
|
<FormYunDuan v-if="isFormYunDuanShow" v-on:formChange="formChange" v-on:formSubmit="formSubmit"></FormYunDuan>
|
|
|
<StepEnd v-if="isStepEndShow"></StepEnd>
|
|
<StepEnd v-if="isStepEndShow"></StepEnd>
|
|
|
|
|
|
|
|
- <FormRecomment v-if="isShowFormRecommend" :projectid="projectid"></FormRecomment>
|
|
|
|
|
|
|
+ <FormRecomment ref="FormRecomment" :projectid="projectid"></FormRecomment>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
@@ -93,7 +93,6 @@ export default {
|
|
|
// wait process finish
|
|
// wait process finish
|
|
|
activeStatus: "wait",
|
|
activeStatus: "wait",
|
|
|
|
|
|
|
|
- isShowFormRecommend: false,
|
|
|
|
|
projectid: ""
|
|
projectid: ""
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
@@ -233,8 +232,10 @@ export default {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if (val.type == 1 && val.step == 3 && val.projectid) {
|
|
if (val.type == 1 && val.step == 3 && val.projectid) {
|
|
|
- this.isShowFormRecommend = true
|
|
|
|
|
this.projectid = val.projectid
|
|
this.projectid = val.projectid
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ this.$refs['FormRecomment'].show()
|
|
|
|
|
+ })
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
this.activeStatus = "wait";
|
|
this.activeStatus = "wait";
|
|
@@ -252,10 +253,11 @@ export default {
|
|
|
} else {
|
|
} else {
|
|
|
this.type = 0;
|
|
this.type = 0;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
if (query.type == 1 && query.step == 3 && query.projectid) {
|
|
if (query.type == 1 && query.step == 3 && query.projectid) {
|
|
|
- this.isShowFormRecommend = true
|
|
|
|
|
this.projectid = query.projectid
|
|
this.projectid = query.projectid
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ this.$refs['FormRecomment'].show()
|
|
|
|
|
+ })
|
|
|
}
|
|
}
|
|
|
this.baseUrl = this.$store.state.domainConfig.siteUrl;
|
|
this.baseUrl = this.$store.state.domainConfig.siteUrl;
|
|
|
this.isWeixinApp = navigator.userAgent.indexOf("miniProgram") > -1;
|
|
this.isWeixinApp = navigator.userAgent.indexOf("miniProgram") > -1;
|