| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- (function(vc){
- vc.extends({
- data:{
- storeEnterCommunityInfo:{
- communityInfo:[],
- errorInfo:''
- }
- },
- _initMethod:function(){
- },
- _initEvent:function(){
- vc.on('storeEnterCommunity','openStoreEnterCommunity',function(_params){
- $('#storeEnterCommunityModel').modal('show');
- vc.component.listNoEnterCommunity();
- });
- },
- methods:{
- _saveEnterCommunity:function(){
- var param = {};
- vc.component.storeEnterCommunityInfo.errorInfo = "";
- vc.http.post(
- 'storeEnterCommunity',
- 'enterCommunity',
- JSON.stringify(param),
- {
- emulateJSON:true
- },
- function(json,res){
- //vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
- if(res.status == 200){
- //关闭model
- $('#storeEnterCommunityModel').modal('hide');
- vc.emit('enterCommunity','listMyCommunity',{});
- return ;
- }
- vc.component.storeEnterCommunityInfo.errorInfo = json;
- },
- function(errInfo,error){
- console.log('请求失败处理');
- vc.component.storeEnterCommunityInfo.errorInfo = errInfo;
- });
- },
- listNoEnterCommunity:function(){
- vc.loading('open');
- var param = {
- params:{
- msg:'123'
- }
- }
- //发送get请求
- vc.http.get('storeEnterCommunity',
- 'listNoEnterCommunity',
- param,
- function(json,res){
- vc.component.storeEnterCommunityInfo.communityInfo=JSON.parse(json);
- vc.loading('close');
- },function(errInfo,error){
- console.log('请求失败处理');
- vc.loading('close');
- }
- );
- },
- _saveEnterCommunity:function(_communityInfo){
- var _param = {
- communityId:_communityInfo.communityId
- };
- //发送get请求
- vc.http.post('storeEnterCommunity',
- '_saveEnterCommunity',
- JSON.stringify(vc.component.registerInfo),
- {
- emulateJSON:true
- },
- function(json,res){
- if(res.status == 200){
- vc.jumpToPage("/flow/login");
- return ;
- }
- vc.component.storeEnterCommunityInfo.errorInfo = json;
- },function(errInfo,error){
- console.log('请求失败处理');
- vc.component.storeEnterCommunityInfo.errorInfo = json;
- }
- );
- }
- }
- });
- })(window.vc);
|