Przeglądaj źródła

优化小区查询功能

wuxw 6 lat temu
rodzic
commit
d22a1f99f2

+ 1 - 1
WebService/src/main/resources/components/communityPackage/audit-enter-community-manage/auditEnterCommunityManage.html

@@ -98,7 +98,7 @@
                             <td>{{community.tel}}</td>
                             <td>{{community.address}}</td>
                             <td>{{community.stateName}}</td>
-                            <td>
+                            <td class="text-right">
                                 <div class="btn-group" v-if="community.auditStatusCd=='1000'">
                                     <button class="btn-white btn btn-xs"
                                             v-on:click="_openEnterAuditCommunityModal(community)">审核

+ 2 - 0
java110-db/src/main/resources/mapper/community/CommunityServiceDaoImplMapper.xml

@@ -315,6 +315,7 @@
         <if test="memberId != null and memberId != '' and needCommunityInfo == true">
             AND ms.`community_id` = msc.`community_id`
             and msc.member_id = #{memberId}
+            and msc.status_cd = '0'
         </if>
         <if test="memberId != null and memberId != '' and needCommunityInfo == false">
             and ms.member_id = #{memberId}
@@ -390,6 +391,7 @@
         <if test="memberId != null and memberId != '' and needCommunityInfo == true">
             AND ms.`community_id` = msc.`community_id`
             and msc.member_id = #{memberId}
+            and msc.status_cd = '0'
         </if>
         <if test="memberId != null and memberId != '' and needCommunityInfo == false">
             and ms.member_id = #{memberId}

+ 2 - 2
java110-utils/src/main/java/com/java110/utils/constant/CommunityMemberTypeConstant.java

@@ -28,10 +28,10 @@ public final class CommunityMemberTypeConstant {
 
 
     //运维团队
-    public static final String OPT = "800900000001";
+    public static final String OPT = "390001200000";
 
 
     //开发团队
-    public static final String DEV = "800900000000";
+    public static final String DEV = "390001200005";
 
 }