Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/pages/accessControl/accessControlManage/accessControlManage.js
2025-12-09 20:22:03 +08:00

204 lines
8.1 KiB
JavaScript

/**
入驻小区
**/
(function (vc) {
var DEFAULT_PAGE = 1;
var DEFAULT_ROWS = 10;
vc.extends({
data: {
accessControlManageInfo: {
accessControls: [],
callingPlatforms: [],
total: 0,
records: 1,
moreCondition: false,
machineId: '',
conditions: {
machineCode: '',
machineName: '',
locationName: '',
}
}
},
_initMethod: function () {
$that._listAccessControls(DEFAULT_PAGE, DEFAULT_ROWS);
$that._listCallingPlatforms();
},
_initEvent: function () {
vc.on('accessControlManage', 'listAccessControl', function (_param) {
$that._listAccessControls(DEFAULT_PAGE, DEFAULT_ROWS);
});
vc.on('pagination', 'page_event', function (_currentPage) {
$that._listAccessControls(_currentPage, DEFAULT_ROWS);
});
},
methods: {
_listAccessControls: function (_page, _rows) {
$that.accessControlManageInfo.conditions.page = _page;
$that.accessControlManageInfo.conditions.row = _rows;
$that.accessControlManageInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
let param = {
params: $that.accessControlManageInfo.conditions
};
//发送get请求
vc.http.apiGet('/accessControl.listAccessControl',
param,
function (json, res) {
let _json = JSON.parse(json);
$that.accessControlManageInfo.total = _json.total;
$that.accessControlManageInfo.records = _json.records;
$that.accessControlManageInfo.accessControls = _json.data;
vc.emit('pagination', 'init', {
total: $that.accessControlManageInfo.records,
currentPage: _page,
dataCount:_json.total
});
},
function (errInfo, error) {
console.log('请求失败处理');
}
);
},
_listCallingPlatforms: function () {
var param = {
params: {page:1,row:50,communityId:vc.getCurrentCommunity().communityId}
};
//发送get请求
vc.http.apiGet('callingPlatform.listCallingPlatform',
param,
function (json, res) {
var _callingPlatformManageInfo = JSON.parse(json);
vc.component.accessControlManageInfo.callingPlatforms = _callingPlatformManageInfo.data;
}, function (errInfo, error) {
console.log('请求失败处理');
}
);
},
_openAddAccessControlModal: function () {
vc.emit('addAccessControl', 'openAddAccessControlModal', {});
},
_openEditAccessControlModel: function (_accessControl) {
vc.emit('editAccessControl', 'openEditAccessControlModal', _accessControl);
},
_openDeleteAccessControlModel: function (_accessControl) {
vc.emit('deleteAccessControl', 'openDeleteAccessControlModal', _accessControl);
},
_queryAccessControlMethod: function () {
$that._listAccessControls(DEFAULT_PAGE, DEFAULT_ROWS);
},
_reSendPersonData:function(_accessControl){
vc.emit('reSendAccessControlFace', 'openDeleteAccessControlModal', _accessControl);
},
_moreCondition: function () {
if ($that.accessControlManageInfo.moreCondition) {
$that.accessControlManageInfo.moreCondition = false;
} else {
$that.accessControlManageInfo.moreCondition = true;
}
},
_openDoor: function (_accessControl) {
vc.http.apiPost(
'/accessControl.openAccessControlDoor',
JSON.stringify(_accessControl), {
emulateJSON: true
},
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
let _json = JSON.parse(json);
vc.toast(_json.msg);
if (_json.code == 0) {
vc.emit('accessControlManage', 'listAccessControl', {});
}
},
function (errInfo, error) {
console.log('请求失败处理');
vc.toast(errInfo);
});
},
_restartDoor: function (_accessControl) {
vc.http.apiPost(
'/accessControl.restartAccessControlDoor',
JSON.stringify(_accessControl), {
emulateJSON: true
},
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
let _json = JSON.parse(json);
vc.toast(_json.msg);
if (_json.code == 0) {
vc.emit('accessControlManage', 'listAccessControl', {});
}
},
function (errInfo, error) {
console.log('请求失败处理');
vc.toast(errInfo);
});
},
_ladder_stop: function (_accessControl) {
vc.http.apiPost(
'/accessControl.StopAccessControlDoor',
JSON.stringify(_accessControl), {
emulateJSON: true
},
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
let _json = JSON.parse(json);
vc.toast(_json.msg);
if (_json.code == 0) {
vc.emit('accessControlManage', 'listAccessControl', {});
}
},
function (errInfo, error) {
console.log('请求失败处理');
vc.toast(errInfo);
});
},
_ladder_start: function (_accessControl) {
vc.http.apiPost(
'/accessControl.StartAccessControlDoor',
JSON.stringify(_accessControl), {
emulateJSON: true
},
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
let _json = JSON.parse(json);
vc.toast(_json.msg);
if (_json.code == 0) {
vc.emit('accessControlManage', 'listAccessControl', {});
}
},
function (errInfo, error) {
console.log('请求失败处理');
vc.toast(errInfo);
});
},
_toAccessControlDetail: function (_accessControl) {
vc.jumpToPage('/#/pages/accessControl/accessControlDetail?machineId=' + _accessControl.machineId);
},
_viewAccessControlVideo:function(_accessControl){
vc.emit('playMonitorVideo', 'openPlayMonitorVideoModal', {
machineId:_accessControl.monitorId,
machineName:_accessControl.monitorName,
communityId:_accessControl.communityId
});
}
}
});
})(window.vc);