diff --git a/app.js b/app.js new file mode 100644 index 0000000..78739b1 --- /dev/null +++ b/app.js @@ -0,0 +1,32 @@ +// app.js +App({ + + /** + * 当小程序初始化完成时,会触发 onLaunch(全局只触发一次) + */ + onLaunch: function () { + + }, + + /** + * 当小程序启动,或从后台进入前台显示,会触发 onShow + */ + onShow: function (options) { + + }, + + /** + * 当小程序从前台进入后台,会触发 onHide + */ + onHide: function () { + + }, + + /** + * 当小程序发生脚本错误,或者 api 调用失败时,会触发 onError 并带上错误信息 + */ + onError: function (msg) { + + } +}) + diff --git a/app.json b/app.json new file mode 100644 index 0000000..b672b83 --- /dev/null +++ b/app.json @@ -0,0 +1,12 @@ +{ + "pages":[ + "pages/index/index" + ], + "window":{ + "navigationBarBackgroundColor": "#fff", + "navigationBarTitleText": "Weixin", + "navigationBarTextStyle":"black" + }, + "style": "v2", + "sitemapLocation": "sitemap.json" +} diff --git a/app.wxss b/app.wxss new file mode 100644 index 0000000..60194c3 --- /dev/null +++ b/app.wxss @@ -0,0 +1,2 @@ +/**app.wxss**/ + diff --git a/avatar.png b/avatar.png new file mode 100644 index 0000000..aa0b2a6 Binary files /dev/null and b/avatar.png differ diff --git a/bohaopan.png b/bohaopan.png new file mode 100644 index 0000000..09fffb8 Binary files /dev/null and b/bohaopan.png differ diff --git a/bohaopan_blue.png b/bohaopan_blue.png new file mode 100644 index 0000000..ade3786 Binary files /dev/null and b/bohaopan_blue.png differ diff --git a/call.png b/call.png new file mode 100644 index 0000000..f2826dc Binary files /dev/null and b/call.png differ diff --git a/delete.png b/delete.png new file mode 100644 index 0000000..283f456 Binary files /dev/null and b/delete.png differ diff --git a/index.js b/index.js new file mode 100644 index 0000000..0906cde --- /dev/null +++ b/index.js @@ -0,0 +1,66 @@ +// index.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + + } +}) diff --git a/index.json b/index.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/index.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/index.wxml b/index.wxml new file mode 100644 index 0000000..025d8ed --- /dev/null +++ b/index.wxml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/index.wxss b/index.wxss new file mode 100644 index 0000000..0d36f6f --- /dev/null +++ b/index.wxss @@ -0,0 +1 @@ +/**index.wxss**/ diff --git a/project.config.json b/project.config.json new file mode 100644 index 0000000..33c233c --- /dev/null +++ b/project.config.json @@ -0,0 +1,68 @@ +{ + "description": "项目配置文件", + "packOptions": { + "ignore": [] + }, + "setting": { + "checkSiteMap":false, + "urlCheck": true, + "scopeDataCheck": false, + "coverView": true, + "es6": false, + "postcss": true, + "compileHotReLoad": false, + "lazyloadPlaceholderEnable": false, + "preloadBackgroundData": false, + "minified": true, + "autoAudits": false, + "newFeature": false, + "uglifyFileName": false, + "uploadWithSourceMap": true, + "useIsolateContext": false, + "nodeModules": false, + "enhance": true, + "useMultiFrameRuntime": true, + "useApiHook": true, + "useApiHostProcess": true, + "showShadowRootInWxmlPanel": true, + "packNpmManually": false, + "packNpmRelationList": [], + "minifyWXSS": true, + "disableUseStrict": false, + "ignoreUploadUnusedFiles": true, + "minifyWXML": true + }, + "compileType": "miniprogram", + "libVersion": "2.22.0", + "appid": "wx19079110a0f01e8a", + "projectname": "templateDemo", + "debugOptions": { + "hidedInDevtools": [] + }, + "scripts": {}, + "staticServerOptions": { + "baseURL": "", + "servePath": "" + }, + "isGameTourist": false, + "condition": { + "search": { + "list": [] + }, + "conversation": { + "list": [] + }, + "game": { + "list": [] + }, + "plugin": { + "list": [] + }, + "gamePlugin": { + "list": [] + }, + "miniprogram": { + "list": [] + } + } +} \ No newline at end of file diff --git a/sitemap.json b/sitemap.json new file mode 100644 index 0000000..ca02add --- /dev/null +++ b/sitemap.json @@ -0,0 +1,7 @@ +{ + "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", + "rules": [{ + "action": "allow", + "page": "*" + }] +} \ No newline at end of file diff --git a/tongxunlu.png b/tongxunlu.png new file mode 100644 index 0000000..05a29d9 Binary files /dev/null and b/tongxunlu.png differ diff --git a/tongxunlu_blue.png b/tongxunlu_blue.png new file mode 100644 index 0000000..aaea3cd Binary files /dev/null and b/tongxunlu_blue.png differ