mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
29 lines
710 B
JavaScript
29 lines
710 B
JavaScript
(function (vc) {
|
|
|
|
vc.extends({
|
|
propTypes: {
|
|
callBackListener: vc.propTypes.string, //父组件名称
|
|
callBackFunction: vc.propTypes.string //父组件监听方法
|
|
},
|
|
data: {
|
|
viewMarketSendContentInfo: {
|
|
sendContent: '',
|
|
|
|
}
|
|
},
|
|
_initMethod: function () {
|
|
|
|
},
|
|
_initEvent: function () {
|
|
vc.on('viewMarketSendContent', 'openModal', function (_param) {
|
|
$('#viewMarketSendContentModel').modal('show');
|
|
$that.viewMarketSendContentInfo = _param;
|
|
});
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
});
|
|
|
|
})(window.vc);
|