Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/components/event/eventDetail/eventDetail.js
2025-12-09 20:22:03 +08:00

20 lines
524 B
JavaScript

(function (vc, vm) {
vc.extends({
data: {
eventPoolStaff: {}
},
_initMethod: function () {
},
_initEvent: function () {
vc.on('eventDetail', 'openEventDetailModal', function (_eventPoolStaff) {
$that.eventPoolStaff = _eventPoolStaff;
$that.queryEvent(_eventPoolStaff.eventId);
$('#eventDetailModel').modal('show');
})
},
methods: {
}
});
})(window.vc, window.$that);