/* 公告 */

(function (doc, win) {
    // 初始化
    Launcher({
        vue: {
            // 变量定义
            data() {
                return {
                    
                };
            },

            methods: {
                // 关闭窗口
                onPopupClose: function() {
                    win.$WinClose({
                        event: 'close',
                        datas: {
                            key: 'JP'
                        }
                    });
                }
            },

            // 启动入口
            mounted() {
                console.log("@启动入口")
            },
        }
    }).then(() => {

    });
})(document, window);





