MicroCommunityWeb/public/components/property/deleteMachineAuth/deleteMachineAuth.js

46 lines
1.7 KiB
JavaScript
Executable File

(function (vc, vm) {
vc.extends({
data: {
deleteMachineAuthInfo: {}
},
_initMethod: function () {
},
_initEvent: function () {
vc.on('deleteMachineAuth', 'openDeleteMachineAuthModal', function (_params) {
vc.component.deleteMachineAuthInfo = _params;
$('#deleteMachineAuthModel').modal('show');
});
},
methods: {
deleteMachineAuth: function () {
vc.component.deleteMachineAuthInfo.communityId = vc.getCurrentCommunity().communityId;
vc.http.apiPost(
'machineAuth.deleteMachineAuth',
JSON.stringify(vc.component.deleteMachineAuthInfo),
{
emulateJSON: true
},
function (json, res) {
let _json = JSON.parse(json);
if (_json.code == 0) {
//关闭model
$('#deleteMachineAuthModel').modal('hide');
vc.emit('machineAuthManage', 'listMachineAuth', {});
vc.toast("删除成功");
return;
} else {
vc.toast(_json.msg);
}
},
function (errInfo, error) {
console.log('请求失败处理');
vc.message(json);
});
},
closeDeleteMachineAuthModel: function () {
$('#deleteMachineAuthModel').modal('hide');
}
}
});
})(window.vc, window.vc.component);