wuxw
2019-10-20 925af35a2d738db792c0ed87e916b989bf30197d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
(function(vc){
    var DEFAULT_PAGE = 1;
    var DEFAULT_ROWS = 10;
    vc.extends({
        data:{
            listOwnerInfo:{
                owners:[],
                total:0,
                records:1,
                _currentOwnerId:'',
                _eventName:'',
                conditions:{
                    ownerTypeCd:'1001',
                    ownerId:'',
                    name:'',
                    link:''
                }
            }
        },
        _initMethod:function(){
            //加载 业主信息
            var _ownerId = vc.getParam('ownerId')
 
            if(vc.notNull(_ownerId)){
                vc.component.listOwnerInfo.conditions.ownerId = _ownerId;
            }
            vc.component._listOwnerData(DEFAULT_PAGE,DEFAULT_ROWS);
        },
        _initEvent:function(){
            vc.on('listOwner','listOwnerData',function(){
                vc.component._listOwnerData(DEFAULT_PAGE,DEFAULT_ROWS);
            });
            vc.on('pagination','page_event',function(_currentPage){
                vc.component._listOwnerData(_currentPage,DEFAULT_ROWS);
            });
 
            vc.on('listOwner','chooseRoom',function(_room){
                if(vc.component.listOwnerInfo._eventName == 'PayPropertyFee'){
                      vc.jumpToPage("/flow/propertyFeeFlow?ownerId="+vc.component.listOwnerInfo._currentOwnerId+"&roomId="+_room.roomId);
                }else{
                      vc.jumpToPage("/flow/ownerRepairFlow?ownerId="+vc.component.listOwnerInfo._currentOwnerId+"&roomId="+_room.roomId);
                }
            });
 
            vc.on('listOwner','chooseParkingSpace',function(_parkingSpace){
                 vc.jumpToPage("/flow/parkingSpaceFeeFlow?ownerId="+vc.component.listOwnerInfo._currentOwnerId+"&psId="+_parkingSpace.psId);
            });
        },
        methods:{
            _listOwnerData:function(_page,_row){
 
                vc.component.listOwnerInfo.conditions.page= _page;
                vc.component.listOwnerInfo.conditions.row= _row;
                vc.component.listOwnerInfo.conditions.communityId= vc.getCurrentCommunity().communityId;
                var param = {
                    params:vc.component.listOwnerInfo.conditions
                }
 
               //发送get请求
               vc.http.get('listOwner',
                            'list',
                             param,
                             function(json,res){
                                var listOwnerData =JSON.parse(json);
 
                                vc.component.listOwnerInfo.total = listOwnerData.total;
                                vc.component.listOwnerInfo.records = listOwnerData.records;
                                vc.component.listOwnerInfo.owners = listOwnerData.owners;
 
                                vc.emit('pagination','init',{
                                    total:vc.component.listOwnerInfo.records,
                                    currentPage:_page
                                });
                             },function(errInfo,error){
                                console.log('请求失败处理');
                             }
                           );
 
            },
            _openAddOwnerModal:function(){ //打开添加框
                vc.emit('addOwner','openAddOwnerModal',-1);
                //vc.jumpToPage("/flow/addOwnerBindingFlow");
            },
            _openDelOwnerModel:function(_owner){ // 打开删除对话框
                vc.emit('deleteOwner','openOwnerModel',_owner);
            },
            _openEditOwnerModel:function(_owner){
                vc.emit('editOwner','openEditOwnerModal',_owner);
            },
            _queryOwnerMethod:function(){
                vc.component._listOwnerData(DEFAULT_PAGE,DEFAULT_ROWS);
            },
            _openAddOwnerRoom:function(_owner){
                vc.jumpToPage("/flow/addOwnerRoomBindingFlow?ownerId="+_owner.ownerId);
            },
            _openHireParkingSpace:function(_owner){
                vc.jumpToPage("/flow/hireParkingSpaceFlow?ownerId="+_owner.ownerId);
            },
            _openSellParkingSpace:function(_owner){
                vc.jumpToPage("/flow/sellParkingSpaceFlow?ownerId="+_owner.ownerId);
            },
            _openOwnerDetailModel:function(_owner){
                vc.jumpToPage("/flow/ownerDetailFlow?ownerId="+_owner.ownerId);
            },
            _openDeleteOwnerRoom:function(_owner){
                vc.jumpToPage("/flow/deleteOwnerRoomFlow?ownerId="+_owner.ownerId);
            },
            _openOwnerRepair:function(_owner){
                //查看 业主是否有多套房屋,如果有多套房屋,则提示对话框选择,只有一套房屋则直接跳转至交费页面缴费
                vc.component.listOwnerInfo._eventName="OwnerRepair";
                vc.component.listOwnerInfo._currentOwnerId = _owner.ownerId; // 暂存如果有多个房屋是回调回来时 ownerId 会丢掉
                var param = {
                    params:{
                        communityId:vc.getCurrentCommunity().communityId,
                        ownerId:_owner.ownerId
                    }
                }
               vc.http.get('listOwner',
                            'getRooms',
                             param,
                             function(json,res){
                                var listRoomData =JSON.parse(json);
                                var rooms = listRoomData.rooms;
                                if(rooms.length == 1){
                                      vc.jumpToPage("/flow/ownerRepairFlow?ownerId="+_owner.ownerId+"&roomId="+rooms[0].roomId);
                                }else if(rooms.length == 0){
                                    vc.message("当前业主未查询到房屋信息");
                                }else{
 
                                    vc.emit('searchRoom','showOwnerRooms',rooms);
                                }
                             },function(errInfo,error){
                                console.log('请求失败处理');
                             }
                           );
            },
            _openPayPropertyFee:function(_owner){
                //查看 业主是否有多套房屋,如果有多套房屋,则提示对话框选择,只有一套房屋则直接跳转至交费页面缴费
                vc.component.listOwnerInfo._eventName="PayPropertyFee";
                vc.component.listOwnerInfo._currentOwnerId = _owner.ownerId; // 暂存如果有多个房屋是回调回来时 ownerId 会丢掉
                var param = {
                    params:{
                        communityId:vc.getCurrentCommunity().communityId,
                        ownerId:_owner.ownerId
                    }
                }
               vc.http.get('listOwner',
                            'getRooms',
                             param,
                             function(json,res){
                                var listRoomData =JSON.parse(json);
                                var rooms = listRoomData.rooms;
                                if(rooms.length == 1){
                                      vc.jumpToPage("/flow/propertyFeeFlow?ownerId="+_owner.ownerId+"&roomId="+rooms[0].roomId);
                                }else if(rooms.length == 0){
                                    vc.message("当前业主未查询到房屋信息");
                                }else{
 
                                    vc.emit('searchRoom','showOwnerRooms',rooms);
                                }
                             },function(errInfo,error){
                                console.log('请求失败处理');
                             }
                           );
            },
            _openPayParkingSpaceFee:function(_owner){
                //查看 业主是否有多套停车位,如果有多套停车位,则提示对话框选择,只有一套停车位则直接跳转至交费页面缴费
 
                vc.component.listOwnerInfo._currentOwnerId = _owner.ownerId; // 暂存如果有多个停车位是回调回来时 ownerId 会丢掉
                var param = {
                    params:{
                        communityId:vc.getCurrentCommunity().communityId,
                        ownerId:_owner.ownerId
                    }
                }
               vc.http.get('listOwner',
                            'getParkingSpace',
                             param,
                             function(json,res){
                                var listParkingSpaceData =JSON.parse(json);
                                var parkingSpaces = listParkingSpaceData.parkingSpaces;
                                if(parkingSpaces.length == 1){
                                      vc.jumpToPage("/flow/parkingSpaceFeeFlow?ownerId="+_owner.ownerId+"&psId="+parkingSpaces[0].psId);
                                }else if(parkingSpaces.length == 0){
                                    vc.message("当前业主未查询到车位信息");
                                }else{
 
                                    vc.emit('searchParkingSpace','showOwnerParkingSpaces',parkingSpaces);
                                }
                             },function(errInfo,error){
                                console.log('请求失败处理');
                             }
                           );
            }
        }
    })
})(window.vc);