71 lines
2.6 KiB
JavaScript
71 lines
2.6 KiB
JavaScript
/**
|
|
入驻小区
|
|
**/
|
|
(function (vc) {
|
|
var DEFAULT_PAGE = 1;
|
|
var DEFAULT_ROWS = 10;
|
|
vc.extends({
|
|
data: {
|
|
ownerDetailCarInfo: {
|
|
cars: [],
|
|
ownerId: '',
|
|
ownerName:'',
|
|
carNum: '',
|
|
}
|
|
},
|
|
_initMethod: function () {
|
|
},
|
|
_initEvent: function () {
|
|
vc.on('ownerDetailCar', 'switch', function (_data) {
|
|
$that.ownerDetailCarInfo.ownerId = _data.ownerId;
|
|
$that.ownerDetailCarInfo.ownerName = _data.ownerName;
|
|
|
|
$that._loadOwnerDetailCarData(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
});
|
|
vc.on('ownerDetailCar', 'paginationPlus', 'page_event',
|
|
function (_currentPage) {
|
|
vc.component._loadOwnerDetailCarData(_currentPage, DEFAULT_ROWS);
|
|
});
|
|
vc.on('ownerDetailCar', 'notify', function (_data) {
|
|
$that._loadOwnerDetailCarData(DEFAULT_PAGE,DEFAULT_ROWS);
|
|
})
|
|
},
|
|
methods: {
|
|
_loadOwnerDetailCarData: function (_page, _row) {
|
|
let param = {
|
|
params: {
|
|
communityId: vc.getCurrentCommunity().communityId,
|
|
ownerId: $that.ownerDetailCarInfo.ownerId,
|
|
carNum: $that.ownerDetailCarInfo.carNum,
|
|
page: _page,
|
|
row: _row
|
|
}
|
|
};
|
|
|
|
//发送get请求
|
|
vc.http.apiGet('/owner.queryOwnerCars',
|
|
param,
|
|
function (json) {
|
|
var _roomInfo = JSON.parse(json);
|
|
vc.component.ownerDetailCarInfo.cars = _roomInfo.data;
|
|
vc.emit('ownerDetailCar', 'paginationPlus', 'init', {
|
|
total: _roomInfo.records,
|
|
dataCount: _roomInfo.total,
|
|
currentPage: _page
|
|
});
|
|
},
|
|
function () {
|
|
console.log('请求失败处理');
|
|
}
|
|
);
|
|
},
|
|
//查询
|
|
_qureyOwnerDetailCar: function () {
|
|
$that._loadOwnerDetailCarData(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
},
|
|
_addOwnerCar: function () { //出租
|
|
vc.jumpToPage('/#/pages/property/hireParkingSpace?ownerId=' + $that.ownerDetailCarInfo.ownerId+"&ownerName="+$that.ownerDetailCarInfo.ownerName);
|
|
},
|
|
}
|
|
});
|
|
})(window.vc); |