[企业认证前-2去创建企业]

This commit is contained in:
2021-10-20 09:59:13 +08:00
parent e32aeb507c
commit 8ea7a49dcb
5 changed files with 195 additions and 121 deletions

View File

@@ -12,6 +12,11 @@
<view class="sub-title">{{appliesState.message}}</view>
<button type="default" @click="onRightBtn">认证并开通</button>
</block>
<block v-if="appliesState.code === -2">
<image class="icon" src="@/static/icons/approve-icon.png" mode="widthFix"></image>
<view class="sub-title">{{appliesState.message}}</view>
<button type="default" @click="onRightBtn1">企业未注册</button>
</block>
<block v-else-if="appliesState.code === 2">
<image class="icon" src="@/static/icons/approve-icon.png" mode="widthFix"></image>
<view class="title">认证失败</view>
@@ -166,6 +171,10 @@
}
})
})
},
// 跳转到创建企业选择企业类型的页面
onRightBtn1(){
this.$Router.push({name: 'Registered'})
}
}
}