张延森 hace 4 años
padre
commit
56c641d338

+ 1
- 1
pom.xml Ver fichero

@@ -10,7 +10,7 @@
10 10
 	</parent>
11 11
 	<groupId>com.huiju</groupId>
12 12
 	<artifactId>xiangsong</artifactId>
13
-	<version>1.0.36</version>
13
+	<version>1.0.38</version>
14 14
 	<name>xiangsong</name>
15 15
 	<description>香颂</description>
16 16
 

+ 3
- 3
src/main/java/com/huiju/estateagents/controller/MiniAppController.java Ver fichero

@@ -423,12 +423,12 @@ public class MiniAppController extends BaseController {
423 423
         if (verifyList.contains("1")){
424 424
             // 已认证
425 425
             verifyStatus = "certified";
426
-        }else if (verifyList.contains("2")){
427
-            // 认证未通过
428
-            verifyStatus = "certification_failed";
429 426
         }else if (verifyList.contains("0")){
430 427
             // 认证中
431 428
             verifyStatus = "certification_in_progress";
429
+        }else if (verifyList.contains("2")){
430
+            // 认证未通过
431
+            verifyStatus = "certification_failed";
432 432
         }
433 433
         return verifyStatus;
434 434
     }

+ 0
- 3
src/main/java/com/huiju/estateagents/property/service/impl/TaUserVerifyServiceImpl.java Ver fichero

@@ -74,9 +74,6 @@ public class TaUserVerifyServiceImpl extends ServiceImpl<TaUserVerifyMapper, TaU
74 74
     @Autowired
75 75
     private MessageMapper tpmessageMapper;
76 76
 
77
-    @Autowired
78
-    private TaSysRoleMapper taSysRoleMapper;
79
-
80 77
     @Autowired
81 78
     private ApplicationContext applicationContext;
82 79