党员认证

This commit is contained in:
shijingjing
2022-11-10 18:05:13 +08:00
parent 3392f5d160
commit 5053ee1654
3 changed files with 17 additions and 15 deletions

View File

@@ -1,7 +1,8 @@
<template>
<div class="partyAuthSuccess">
<template v-if="isSuccess">
<image src="https://cdn.cunwuyun.cn/img/authSuccess.png"/>
<!-- <image src="https://cdn.cunwuyun.cn/img/authSuccess.png"/> -->
<image src="./img/success.png"/>
<h2 v-text="`认证成功!`"/>
<div class="btn" @click="gotoInfo" v-text="`前往查看`"/>
</template>
@@ -44,11 +45,11 @@ export default {
computed: {
...mapState(['user']),
isSuccess() {
return this.user.status == 2
},
isFail() {
return this.user.status == "0"
return this.user.partyStatusForWX == 0
},
// isFail() {
// return this.user.partyStatusForWX == 0
// },
authFail() {
return this.user.status == -1
},