mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 08:16:47 +08:00
26 lines
646 B
JavaScript
26 lines
646 B
JavaScript
(function(vc) {
|
|
|
|
vc.extends({
|
|
data: {
|
|
searchCommunityDataInfo: {
|
|
title: '',
|
|
data: {}
|
|
},
|
|
flagOrgName: false
|
|
},
|
|
_initMethod: function() {
|
|
|
|
},
|
|
_initEvent: function() {
|
|
vc.on('searchCommunityData', 'openViewDataModal', function(_param) {
|
|
$that.searchCommunityDataInfo.title = _param.title;
|
|
$that.searchCommunityDataInfo.data = _param.data;
|
|
$('#searchCommunityDataModel').modal('show');
|
|
});
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
});
|
|
|
|
})(window.vc); |