mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-27 16:33:57 +08:00
56 lines
2.0 KiB
JavaScript
56 lines
2.0 KiB
JavaScript
(function(vc, vm) {
|
|
vc.extends({
|
|
data: {
|
|
inputSearchRoomInfo: {
|
|
rooms: [],
|
|
callComponent: ''
|
|
}
|
|
},
|
|
_initMethod: function() {},
|
|
_initEvent: function() {
|
|
vc.on('inputSearchRoomInfo', 'searchRoom', function(_param) {
|
|
if (!_param.roomName) {
|
|
return;
|
|
}
|
|
$that._loadRoomInfo(_param.roomName);
|
|
$that.inputSearchRoomInfo.callComponent = _param.callComponent;
|
|
});
|
|
vc.on('inputSearchRoomInfo', 'close', function (_param) {
|
|
$that.inputSearchRoomInfo.rooms = [];
|
|
});
|
|
},
|
|
methods: {
|
|
_loadRoomInfo: function(_roomName) {
|
|
let param = {
|
|
params: {
|
|
page: 1,
|
|
row: 10,
|
|
flag: 1,
|
|
roomNum: _roomName,
|
|
communityId: vc.getCurrentCommunity().communityId
|
|
}
|
|
}
|
|
vc.http.apiGet('/room.queryRooms',
|
|
param,
|
|
function(json, res) {
|
|
let listRoomData = JSON.parse(json);
|
|
$that.inputSearchRoomInfo.rooms = listRoomData.rooms;
|
|
if(listRoomData.rooms.length <= 0){
|
|
vc.toast('未查询到房屋');
|
|
}
|
|
},
|
|
function(errInfo, error) {
|
|
console.log('请求失败处理');
|
|
}
|
|
);
|
|
},
|
|
_inputSearchRoomChooseRoom: function(_room) {
|
|
vc.emit($that.inputSearchRoomInfo.callComponent, "notifyRoom", _room);
|
|
$that.inputSearchRoomInfo.rooms = [];
|
|
},
|
|
_doInputSearchRoomClose: function() {
|
|
$that.inputSearchRoomInfo.rooms = [];
|
|
}
|
|
}
|
|
});
|
|
})(window.vc, window.vc.component); |