吴学文
2019-04-18 4348c321dfe200e4cdc430b1dc5b1caef4991261
入驻小区 和退订开发测试完成
2 文件已重命名
2个文件已修改
23 ■■■■ 已修改文件
WebService/src/main/resources/components/enter-community/enterCommunity.html 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebService/src/main/resources/components/enter-community/enterCommunity.js 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebService/src/main/resources/components/store-exit-community/storeExitCommunity.html 补丁 | 查看 | 原始文档 | blame | 历史
WebService/src/main/resources/components/store-exit-community/storeExitCommunity.js 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebService/src/main/resources/components/enter-community/enterCommunity.html
@@ -48,7 +48,7 @@
                                {{community.cityCode}}
                            </td>
                            <td>
                                {{community.statusCd == 0 ? '在用': '审核中'}}
                                {{_showCommunityStatus(community.statusCd)}}
                            </td>
                            <td class="text-right">
                                <div class="btn-group" v-if="community.statusCd == 0">
WebService/src/main/resources/components/enter-community/enterCommunity.js
@@ -40,6 +40,15 @@
            },
            _openExitCommunityModel:function(_community){
                vc.emit('storeExitCommunity','openStoreExitCommunityModal',_community);
            },
            _showCommunityStatus(_statusCd){
                if(_statusCd == '1000'){
                    return "入驻审核";
                }else if(_statusCd == '1001'){
                    return "退出审核";
                }
                return "在用";
            }
        }
    });
WebService/src/main/resources/components/store-exit-community/storeExitCommunity.html
WebService/src/main/resources/components/store-exit-community/storeExitCommunity.js
File was renamed from WebService/src/main/resources/components/store_exit_community/storeExitCommunity.js
@@ -2,7 +2,8 @@
    vc.extends({
        data:{
            storeExitCommunityInfo:{
                communityInfo:{}
                communityInfo:{},
                errorInfo:''
            }
        },
        _initEvent:function(){
@@ -28,18 +29,19 @@
                        //vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
                        if(res.status == 200){
                            //关闭model
                            $('#deleteStaffModel').modal('hide');
                            vc.component.$emit('deleteStaff_reload_event',{});
                            $('#storeExitCommunityModal').modal('hide');
                            vc.emit('enterCommunity','listMyCommunity',{});
                            return ;
                        }
                        vc.component.deleteStaffInfo.errorInfo = json;
                        vc.component.storeExitCommunityInfo.errorInfo = json;
                     },
                     function(errInfo,error){
                        console.log('请求失败处理');
                        vc.component.deleteStaffInfo.errorInfo = errInfo;
                        vc.component.storeExitCommunityInfo.errorInfo = errInfo;
                     });
            }
        }
    });
})(window.vc);