Files
2025-12-09 20:22:03 +08:00

63 lines
2.3 KiB
JavaScript

(function (vc) {
vc.extends({
data: {
searchOwnerInfo: {
owners: [],
_currentOwnerName: '',
roomName: '',
callBack:{}
}
},
_initMethod: function () {
},
_initEvent: function () {
vc.on('searchOwner', 'openSearchOwnerModel', function (_param) {
$('#searchOwnerModel').modal('show');
$that.searchOwnerInfo.callBack = _param.callBack;
$that._refreshSearchOwnerData();
$that._loadAllOwnerInfo(1, 10);
});
vc.on('searchOwner', 'paginationPlus', 'page_event', function (_currentPage) {
$that._loadAllOwnerInfo(_currentPage, 10);
});
},
methods: {
_loadAllOwnerInfo: function (_page, _row) {
let param = {
params: {
page: _page,
row: _row,
communityId: vc.getCurrentCommunity().communityId,
name: $that.searchOwnerInfo._currentOwnerName,
roomName: $that.searchOwnerInfo.roomName,
}
};
//发送get请求
vc.http.apiGet('/owner.queryOwners',
param,
function (json) {
let _ownerInfo = JSON.parse(json);
$that.searchOwnerInfo.owners = _ownerInfo.data;
vc.emit('searchOwner', 'paginationPlus', 'init', {
total: _ownerInfo.records,
currentPage: _page
});
},
function () {
console.log('请求失败处理');
}
);
},
chooseOwner: function (_owner) {
$that.searchOwnerInfo.callBack(_owner);
$('#searchOwnerModel').modal('hide');
},
searchOwners: function () {
$that._loadAllOwnerInfo(1, 10, $that.searchOwnerInfo._currentOwnerName);
},
_refreshSearchOwnerData: function () {
$that.searchOwnerInfo._currentOwnerName = "";
}
}
});
})(window.vc);