wuxw
2019-04-18 eb63dc5a1695cf1546480e42a7490095d05fe27c
WebService/src/main/resources/components/enter-community/enterCommunity.html
@@ -5,7 +5,7 @@
                <div class="ibox-title">
                    <h5>已入驻小区</h5>
                    <div class="ibox-tools" style="top:10px;">
                        <button type="button" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#addStaffModel">
                        <button type="button" class="btn btn-primary btn-sm" v-on:click="_openEnterCommunityModal()">
                            <i class="glyphicon glyphicon-plus"></i>
                            入驻小区
                        </button>
@@ -18,6 +18,7 @@
                        <tr>
                            <th>小区ID</th>
                            <th data-hide="phone">名称</th>
                            <th data-hide="phone">联系方式</th>
                            <th data-hide="phone">地址</th>
                            <th data-hide="phone">地标</th>
                            <th data-hide="phone,tablet" >城市编码</th>
@@ -35,6 +36,9 @@
                                {{community.name}}
                            </td>
                            <td>
                                {{community.tel}}
                            </td>
                            <td>
                                {{community.address}}
                            </td>
                            <td>
@@ -47,8 +51,8 @@
                                {{community.statusCd == 0 ? '在用': '审核中'}}
                            </td>
                            <td class="text-right">
                                <div class="btn-group">
                                    <button class="btn-white btn btn-xs" v-on:click="_openExitCommunityModel(community)">退出</button>
                                <div class="btn-group" v-if="community.statusCd == 0">
                                    <button class="btn-white btn btn-xs" v-on:click="_openExitCommunityModel(community)">申请退出</button>
                                </div>
                            </td>
                        </tr>
@@ -66,4 +70,7 @@
            </div>
        </div>
    </div>
    <vc:create name="storeEnterCommunity"></vc:create>
    <vc:create name="storeExitCommunity"></vc:create>
</div>