├── LICENSE ├── README.md ├── WxNotificationCenter └── WxNotificationCenter.js ├── app.js ├── app.json ├── app.wxss ├── image ├── icon_API.png └── icon_API_HL.png ├── pages ├── index │ ├── index.js │ ├── index.wxml │ └── index.wxss ├── logs │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss ├── nav │ ├── item1 │ │ ├── item1.js │ │ ├── item1.json │ │ └── item1.wxml │ └── item2 │ │ ├── item2.js │ │ ├── item2.json │ │ └── item2.wxml └── test │ ├── test.js │ ├── test.json │ └── test.wxml ├── screenshoot └── wxnotice.gif └── utils └── util.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/README.md -------------------------------------------------------------------------------- /WxNotificationCenter/WxNotificationCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/WxNotificationCenter/WxNotificationCenter.js -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/app.json -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/app.wxss -------------------------------------------------------------------------------- /image/icon_API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/image/icon_API.png -------------------------------------------------------------------------------- /image/icon_API_HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/image/icon_API_HL.png -------------------------------------------------------------------------------- /pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/index/index.js -------------------------------------------------------------------------------- /pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/index/index.wxml -------------------------------------------------------------------------------- /pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/index/index.wxss -------------------------------------------------------------------------------- /pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/logs/logs.js -------------------------------------------------------------------------------- /pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志" 3 | } -------------------------------------------------------------------------------- /pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/logs/logs.wxml -------------------------------------------------------------------------------- /pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/logs/logs.wxss -------------------------------------------------------------------------------- /pages/nav/item1/item1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/nav/item1/item1.js -------------------------------------------------------------------------------- /pages/nav/item1/item1.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我是item1" 3 | } -------------------------------------------------------------------------------- /pages/nav/item1/item1.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/nav/item1/item1.wxml -------------------------------------------------------------------------------- /pages/nav/item2/item2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/nav/item2/item2.js -------------------------------------------------------------------------------- /pages/nav/item2/item2.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我是item2" 3 | } -------------------------------------------------------------------------------- /pages/nav/item2/item2.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/nav/item2/item2.wxml -------------------------------------------------------------------------------- /pages/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/test/test.js -------------------------------------------------------------------------------- /pages/test/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我是tabbar页面" 3 | } -------------------------------------------------------------------------------- /pages/test/test.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/pages/test/test.wxml -------------------------------------------------------------------------------- /screenshoot/wxnotice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/screenshoot/wxnotice.gif -------------------------------------------------------------------------------- /utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icindy/WxNotificationCenter/HEAD/utils/util.js --------------------------------------------------------------------------------