wuxw
2020-02-19 d22a1f99f25e98b53d782e340f432563c2599423
优化小区查询功能
3个文件已修改
8 ■■■■■ 已修改文件
WebService/src/main/resources/components/communityPackage/audit-enter-community-manage/auditEnterCommunityManage.html 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
java110-db/src/main/resources/mapper/community/CommunityServiceDaoImplMapper.xml 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
java110-utils/src/main/java/com/java110/utils/constant/CommunityMemberTypeConstant.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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)">审核
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}
java110-utils/src/main/java/com/java110/utils/constant/CommunityMemberTypeConstant.java
@@ -28,10 +28,10 @@
    //运维团队
    public static final String OPT = "800900000001";
    public static final String OPT = "390001200000";
    //开发团队
    public static final String DEV = "800900000000";
    public static final String DEV = "390001200005";
}