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

168 lines
6.6 KiB
JavaScript

/**
入驻小区
**/
(function (vc) {
var DEFAULT_PAGE = 1;
var DEFAULT_ROWS = 10;
vc.extends({
data: {
liftMachineManageInfo: {
liftMachines: [],
total: 0,
records: 1,
moreCondition: false,
machineId: '',
conditions: {
machineId: '',
machineName: '',
machineCode: '',
brand: '',
locationName: '',
factoryId: '',
communityId: '',
state: '',
curLayer: '',
}
},
liftMachineFactoryList: [],
liftStates: [],
},
_initMethod: function () {
$that._listLiftMachines(DEFAULT_PAGE, DEFAULT_ROWS);
$that._listLiftMachineFactorys();
vc.getDict('lift_machine', 'state', function (_data) {
$that.liftStates = _data;
})
},
_initEvent: function () {
vc.on('liftMachineManage', 'listLiftMachine', function (_param) {
$that._listLiftMachines(DEFAULT_PAGE, DEFAULT_ROWS);
});
vc.on('pagination', 'page_event', function (_currentPage) {
$that._listLiftMachines(_currentPage, DEFAULT_ROWS);
});
},
methods: {
_listLiftMachines: function (_page, _rows) {
$that.liftMachineManageInfo.conditions.page = _page;
$that.liftMachineManageInfo.conditions.row = _rows;
$that.liftMachineManageInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
let param = {
params: $that.liftMachineManageInfo.conditions
};
//发送get请求
vc.http.apiGet('/liftMachine.listLiftMachine',
param,
function (json, res) {
let _json = JSON.parse(json);
$that.liftMachineManageInfo.total = _json.total;
$that.liftMachineManageInfo.records = _json.records;
$that.liftMachineManageInfo.liftMachines = _json.data;
vc.emit('pagination', 'init', {
total: $that.liftMachineManageInfo.records,
currentPage: _page
});
}, function (errInfo, error) {
console.log('请求失败处理');
}
);
},
_listLiftMachineFactorys: function () {
var param = {
params: {
page: -1,
row: 100
}
};
//发送get请求
vc.http.apiGet('/liftMachineFactory.listLiftMachineFactory',
param,
function (json, res) {
var _liftMachineFactoryManageInfo = JSON.parse(json);
$that.liftMachineFactoryList = _liftMachineFactoryManageInfo.data;
}, function (errInfo, error) {
console.log('请求失败处理');
}
);
},
_switchLiftState: function (_liftMachine) {
let curUserInfo = JSON.parse(window.localStorage.getItem('/nav/getUserInfo'));
_liftMachine.userId = curUserInfo.userId;
_liftMachine.userName = curUserInfo.name;
if (_liftMachine.state === '1001') {
_liftMachine.logAction = 'stopping';
} if (_liftMachine.state === '2002') {
_liftMachine.logAction = 'running';
} else {
_liftMachine.logAction = 'unknown';
}
vc.http.apiPost(
'/liftMachine.switchLiftState',
JSON.stringify(_liftMachine), {
emulateJSON: true
},
function(json, res) {
let _json = JSON.parse(json);
vc.toast(_json.msg);
},
function(errInfo, error) {
console.log('请求失败处理');
vc.toast(json);
});
},
_openReservationLiftMachineModel: function (_liftMachine) {
vc.emit('reservationLiftMachine', 'openReservationLiftMachineModal', _liftMachine);
},
_openAddLiftMachineModal: function () {
vc.emit('addLiftMachine', 'openAddLiftMachineModal', {});
},
_openEditLiftMachineModel: function (_liftMachine) {
vc.emit('editLiftMachine', 'openEditLiftMachineModal', _liftMachine);
},
_openDeleteLiftMachineModel: function (_liftMachine) {
vc.emit('deleteLiftMachine', 'openDeleteLiftMachineModal', _liftMachine);
},
_queryLiftMachineMethod: function () {
$that._listLiftMachines(DEFAULT_PAGE, DEFAULT_ROWS);
},
_resetLiftMachineMethod: function () {
$that.liftMachineManageInfo.conditions = {
machineId: '',
machineName: '',
machineCode: '',
brand: '',
locationName: '',
factoryId: '',
communityId: '',
state: '',
curLayer: '',
};
$that._listLiftMachines(DEFAULT_PAGE, DEFAULT_ROWS);
},
_moreCondition: function () {
if ($that.liftMachineManageInfo.moreCondition) {
$that.liftMachineManageInfo.moreCondition = false;
} else {
$that.liftMachineManageInfo.moreCondition = true;
}
},
_toLiftDetail: function (_liftMachine) {
vc.jumpToPage('/#/pages/lift/liftMachineDetail?machineId=' + _liftMachine.machineId);
},
_viewLiftVideo:function(_liftMachine){
vc.emit('playMonitorVideo', 'openPlayMonitorVideoModal', {
machineId:_liftMachine.monitorId,
machineName:_liftMachine.monitorName,
communityId:_liftMachine.communityId
});
}
}
});
})(window.vc);