├── .gitattributes ├── .gitignore ├── README.md ├── app.js ├── app.json ├── app.wxss ├── images ├── chart.png ├── cityse.png ├── class.png ├── close.png ├── demo │ ├── contact.png │ ├── dynamic.png │ ├── music.png │ └── qq.png ├── download.png ├── friend.png ├── game.png ├── icon.png ├── icon1.png ├── kan.png ├── like.png ├── open.png ├── public.png ├── qun.png ├── replay.png ├── song.png ├── songmenu.png ├── sport.png ├── start.png ├── tab_contact_normal.png ├── tab_contact_selected.png ├── tab_dynamic_normal.png ├── tab_dynamic_selected.png ├── tab_message_normal.png ├── tab_message_selected.png ├── tip.png ├── tribe.png ├── vicinity.png ├── video.png ├── weather.png ├── wechat.png ├── wechatHL.png └── zone.png ├── pages ├── contact │ ├── contact.js │ ├── contact.json │ ├── contact.wxml │ └── contact.wxss ├── dynamic │ ├── dynamic.js │ ├── dynamic.json │ ├── dynamic.wxml │ ├── dynamic.wxss │ └── music │ │ ├── music.js │ │ ├── music.json │ │ ├── music.wxml │ │ └── music.wxss ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── logs │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss ├── message │ ├── chat │ │ ├── chat.js │ │ ├── chat.json │ │ ├── chat.wxml │ │ └── chat.wxss │ ├── message.js │ ├── message.json │ ├── message.wxml │ ├── message.wxss │ └── search │ │ ├── search.js │ │ ├── search.json │ │ ├── search.wxml │ │ └── search.wxss └── study │ ├── directory.js │ ├── directory.json │ ├── directory.wxml │ └── directory.wxss ├── utils ├── city.js ├── network.js └── util.js └── weixinapp-demo.zip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/app.json -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/app.wxss -------------------------------------------------------------------------------- /images/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/chart.png -------------------------------------------------------------------------------- /images/cityse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/cityse.png -------------------------------------------------------------------------------- /images/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/class.png -------------------------------------------------------------------------------- /images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/close.png -------------------------------------------------------------------------------- /images/demo/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/demo/contact.png -------------------------------------------------------------------------------- /images/demo/dynamic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/demo/dynamic.png -------------------------------------------------------------------------------- /images/demo/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/demo/music.png -------------------------------------------------------------------------------- /images/demo/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/demo/qq.png -------------------------------------------------------------------------------- /images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/download.png -------------------------------------------------------------------------------- /images/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/friend.png -------------------------------------------------------------------------------- /images/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/game.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/icon1.png -------------------------------------------------------------------------------- /images/kan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/kan.png -------------------------------------------------------------------------------- /images/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/like.png -------------------------------------------------------------------------------- /images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/open.png -------------------------------------------------------------------------------- /images/public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/public.png -------------------------------------------------------------------------------- /images/qun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/qun.png -------------------------------------------------------------------------------- /images/replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/replay.png -------------------------------------------------------------------------------- /images/song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/song.png -------------------------------------------------------------------------------- /images/songmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/songmenu.png -------------------------------------------------------------------------------- /images/sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/sport.png -------------------------------------------------------------------------------- /images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/start.png -------------------------------------------------------------------------------- /images/tab_contact_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/tab_contact_normal.png -------------------------------------------------------------------------------- /images/tab_contact_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/tab_contact_selected.png -------------------------------------------------------------------------------- /images/tab_dynamic_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/tab_dynamic_normal.png -------------------------------------------------------------------------------- /images/tab_dynamic_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/tab_dynamic_selected.png -------------------------------------------------------------------------------- /images/tab_message_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/tab_message_normal.png -------------------------------------------------------------------------------- /images/tab_message_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/tab_message_selected.png -------------------------------------------------------------------------------- /images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/tip.png -------------------------------------------------------------------------------- /images/tribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/tribe.png -------------------------------------------------------------------------------- /images/vicinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/vicinity.png -------------------------------------------------------------------------------- /images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/video.png -------------------------------------------------------------------------------- /images/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/weather.png -------------------------------------------------------------------------------- /images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/wechat.png -------------------------------------------------------------------------------- /images/wechatHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/wechatHL.png -------------------------------------------------------------------------------- /images/zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/images/zone.png -------------------------------------------------------------------------------- /pages/contact/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/contact/contact.js -------------------------------------------------------------------------------- /pages/contact/contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "联系人" 3 | } -------------------------------------------------------------------------------- /pages/contact/contact.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/contact/contact.wxml -------------------------------------------------------------------------------- /pages/contact/contact.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/contact/contact.wxss -------------------------------------------------------------------------------- /pages/dynamic/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/dynamic/dynamic.js -------------------------------------------------------------------------------- /pages/dynamic/dynamic.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "动态" 3 | } -------------------------------------------------------------------------------- /pages/dynamic/dynamic.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/dynamic/dynamic.wxml -------------------------------------------------------------------------------- /pages/dynamic/dynamic.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/dynamic/dynamic.wxss -------------------------------------------------------------------------------- /pages/dynamic/music/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/dynamic/music/music.js -------------------------------------------------------------------------------- /pages/dynamic/music/music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/dynamic/music/music.json -------------------------------------------------------------------------------- /pages/dynamic/music/music.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/dynamic/music/music.wxml -------------------------------------------------------------------------------- /pages/dynamic/music/music.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/dynamic/music/music.wxss -------------------------------------------------------------------------------- /pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/index/index.js -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "微信登录" 3 | } 4 | -------------------------------------------------------------------------------- /pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/index/index.wxml -------------------------------------------------------------------------------- /pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/index/index.wxss -------------------------------------------------------------------------------- /pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/logs/logs.js -------------------------------------------------------------------------------- /pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志" 3 | } -------------------------------------------------------------------------------- /pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/logs/logs.wxml -------------------------------------------------------------------------------- /pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/logs/logs.wxss -------------------------------------------------------------------------------- /pages/message/chat/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/message/chat/chat.js -------------------------------------------------------------------------------- /pages/message/chat/chat.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "聊天" 3 | } -------------------------------------------------------------------------------- /pages/message/chat/chat.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/message/chat/chat.wxml -------------------------------------------------------------------------------- /pages/message/chat/chat.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/message/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/message/message.js -------------------------------------------------------------------------------- /pages/message/message.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "消息" 3 | } -------------------------------------------------------------------------------- /pages/message/message.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/message/message.wxml -------------------------------------------------------------------------------- /pages/message/message.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/message/message.wxss -------------------------------------------------------------------------------- /pages/message/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/message/search/search.js -------------------------------------------------------------------------------- /pages/message/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "搜索" 3 | } -------------------------------------------------------------------------------- /pages/message/search/search.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/message/search/search.wxml -------------------------------------------------------------------------------- /pages/message/search/search.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/message/search/search.wxss -------------------------------------------------------------------------------- /pages/study/directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/study/directory.js -------------------------------------------------------------------------------- /pages/study/directory.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "文章源码" 3 | } -------------------------------------------------------------------------------- /pages/study/directory.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/study/directory.wxml -------------------------------------------------------------------------------- /pages/study/directory.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/pages/study/directory.wxss -------------------------------------------------------------------------------- /utils/city.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/utils/city.js -------------------------------------------------------------------------------- /utils/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/utils/network.js -------------------------------------------------------------------------------- /utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/utils/util.js -------------------------------------------------------------------------------- /weixinapp-demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiehui999/SmallAppForQQ/HEAD/weixinapp-demo.zip --------------------------------------------------------------------------------