|
@@ -67,7 +67,7 @@ export default function YeZhuShenHe () {
|
67
|
67
|
|
68
|
68
|
{/* 审核中 */}
|
69
|
69
|
{
|
70
|
|
- Detail.verifyStatus - 0 === 0 &&
|
|
70
|
+ Detail.verifyStatus === 'certification_in_progress' &&
|
71
|
71
|
<view className='CheckStatus Checking'>
|
72
|
72
|
<view className='Status'>
|
73
|
73
|
<text className='iconfont iconshenhezhong'></text>
|
|
@@ -90,7 +90,7 @@ export default function YeZhuShenHe () {
|
90
|
90
|
|
91
|
91
|
{/* 审核通过 */}
|
92
|
92
|
{
|
93
|
|
- Detail.verifyStatus - 0 === 1 &&
|
|
93
|
+ Detail.verifyStatus === 'certified' &&
|
94
|
94
|
<view className='CheckStatus Pass'>
|
95
|
95
|
<view className='Status'>
|
96
|
96
|
<text className='iconfont iconyitongguo'></text>
|
|
@@ -112,7 +112,7 @@ export default function YeZhuShenHe () {
|
112
|
112
|
|
113
|
113
|
{/* 审核未通过 */}
|
114
|
114
|
{
|
115
|
|
- Detail.verifyStatus - 0 === 2 &&
|
|
115
|
+ Detail.verifyStatus === 'certification_failed' &&
|
116
|
116
|
<view className='CheckStatus NoPass'>
|
117
|
117
|
<view className='Status'>
|
118
|
118
|
<text className='iconfont iconweitongguo'></text>
|