|
|
@@ -13,18 +13,6 @@
|
|
|
<div v-else @click="handleVerifyCompany" class="step-conditions active">去认证</div>
|
|
|
<div class="step-text">01: 完成企业认证</div>
|
|
|
</div>
|
|
|
- <div class="steps-item" :class="conditions[1] && conditions[1].is_completed ? 'steps-item-completed' : ''">
|
|
|
- <div class="step-point"></div>
|
|
|
- <div v-if="conditions[1] && conditions[1].is_completed" class="step-conditions">已创建</div>
|
|
|
- <div v-else @click="handleAddService(userinfo.uid)" class="step-conditions active">去添加</div>
|
|
|
- <div class="step-text">02: 添加整包项目开发服务方案</div>
|
|
|
- </div>
|
|
|
- <div class="steps-item" :class="conditions[2] && conditions[2].is_completed ? 'steps-item-completed' : ''">
|
|
|
- <div class="step-point"></div>
|
|
|
- <div v-if="conditions[2] && conditions[2].is_completed" class="step-conditions">已添加</div>
|
|
|
- <a v-else :href="`${baseUrl}/company/${userinfo.uid}?cell=3`" class="step-conditions active">去添加</a>
|
|
|
- <div class="step-text">03: 添加/招募团队成员({{ conditions[2].completed_num }}/ {{ conditions[2].target }})</div>
|
|
|
- </div>
|
|
|
</section>
|
|
|
<!-- F2认证条件 -->
|
|
|
<section v-if="id === '20'" class="f2-verify-wrapper">
|
|
|
@@ -188,7 +176,7 @@
|
|
|
</section>
|
|
|
</section>
|
|
|
<section class="cer-price-info">
|
|
|
- <span class="price">
|
|
|
+ <span v-if="detail.real_price>0" class="price">
|
|
|
¥{{detail.real_price}}
|
|
|
<sub class="sub">/次</sub>
|
|
|
</span>
|
|
|
@@ -354,6 +342,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async mounted() {
|
|
|
+ if( this.$route.params.id==16){
|
|
|
+ this.$axios.$post("/uapi/jone/checkMemberInfo").then(res => {})
|
|
|
+ }
|
|
|
if (!this.detail.description) {
|
|
|
let res = await this.$axios.$post(
|
|
|
`/api/cert/getDetail`,
|
|
|
@@ -365,7 +356,7 @@ export default {
|
|
|
}
|
|
|
// 获取已保存的图片
|
|
|
if (this.detail.cert_audit_status == 1 ||
|
|
|
- this.detail.cert_audit_status == 2) {
|
|
|
+ this.detail.cert_audit_status == 2) {
|
|
|
this._getSavedCertImages()
|
|
|
}
|
|
|
},
|
|
|
@@ -427,7 +418,11 @@ export default {
|
|
|
this.cnzz("开发工作","资质认证详情页面","提交btn")
|
|
|
if (this.hasLogined) {
|
|
|
// 前端拦截提示
|
|
|
- if (this.id === '20') {
|
|
|
+ if (this.id === '16') {
|
|
|
+ window.open("https://wwww.baidu.com");
|
|
|
+ return ;
|
|
|
+ }
|
|
|
+ else if (this.id === '20') {
|
|
|
// 做 F2 认证时:1. F3 认证审核中;2. F3 认证已通过;
|
|
|
if (this.freeworkInfo[1].status == 1) {
|
|
|
this.$message.info('您的F3认证正在审核中,暂不能申请F2认证')
|