#本文章仅用于记录本人学习过程,当作笔记来用,如有侵权请及时告知,谢谢!
还剩下一些文件
看得比较清楚,直接就贴代码了这里
util.js
const formatTime = date => {
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
const hour = date.getHours()
const minute = date.getMinutes()
const second = date.getSeconds()
return [year, month, day].map(formatNumber).join('-') + ' ' + [hour, minute, second].map(formatNumber).join(':')
}
const formatNumber = n => {
n = n.toString()
return n[1] ? n : '0' + n
}
module.exports = {
formatTime: formatTime
}
app.js
const formatTime = date => {
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate()
const hour = date.getHours()
const minute = date.getMinutes()
const second = date.getSeconds()
return [year, month, day].map(formatNumber).join('-') + ' ' + [hour, minute, second].map(formatNumber).join(':')
}
const formatNumber = n => {
n = n.toString()
return n[1] ? n : '0' + n
}
module.exports = {
formatTime: formatTime
}
app.json
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/me/me"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#EA5149",
"navigationBarTitleText": "猫宁一",
"navigationBarTextStyle": "black"
},
"tabBar":{
"list":[
{
"pagePath":"pages/index/index",
"text":"首页",
"iconPath":"image/binggan.png",
"selectedIconPath": "image/binggan-active.png"
},
{
"pagePath": "pages/logs/logs",
"text": "日志",
"iconPath": "image/danhuang.png",
"selectedIconPath": "image/danhuang-active.png"
},
{
"pagePath": "pages/me/me",
"text": "我的",
"iconPath": "image/huasheng.png",
"selectedIconPath": "image/huasheng-active.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}
app.wxss
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/me/me"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#EA5149",
"navigationBarTitleText": "猫宁一",
"navigationBarTextStyle": "black"
},
"tabBar":{
"list":[
{
"pagePath":"pages/index/index",
"text":"首页",
"iconPath":"image/binggan.png",
"selectedIconPath": "image/binggan-active.png"
},
{
"pagePath": "pages/logs/logs",
"text": "日志",
"iconPath": "image/danhuang.png",
"selectedIconPath": "image/danhuang-active.png"
},
{
"pagePath": "pages/me/me",
"text": "我的",
"iconPath": "image/huasheng.png",
"selectedIconPath": "image/huasheng-active.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}
project.config.json
{
"description": "项目配置文件",
"cloudfunctionRoot": "cloud/",
"packOptions": {
"ignore": []
},
"setting": {
"urlCheck": true,
"es6": true,
"enhance": false,
"postcss": true,
"preloadBackgroundData": false,
"minified": true,
"newFeature": false,
"coverView": true,
"nodeModules": false,
"autoAudits": false,
"showShadowRootInWxmlPanel": true,
"scopeDataCheck": false,
"uglifyFileName": false,
"checkInvalidKey": true,
"checkSiteMap": true,
"uploadWithSourceMap": true,
"compileHotReLoad": false,
"babelSetting": {
"ignore": [],
"disablePlugins": [],
"outputPath": ""
},
"useIsolateContext": true,
"useCompilerModule": true,
"userConfirmedUseCompilerModuleSwitch": false
},
"compileType": "miniprogram",
"libVersion": "2.11.3",
"appid": "wx512e80e92cf28ca0",
"projectname": "test",
"debugOptions": {
"hidedInDevtools": []
},
"scripts": {},
"isGameTourist": false,
"simulatorType": "wechat",
"simulatorPluginLibVersion": {},
"condition": {
"search": {
"current": -1,
"list": []
},
"conversation": {
"current": -1,
"list": []
},
"game": {
"current": -1,
"list": []
},
"plugin": {
"current": -1,
"list": []
},
"gamePlugin": {
"current": -1,
"list": []
},
"miniprogram": {
"current": -1,
"list": []
}
}
}
sitemap.json
{
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
"rules": [{
"action": "allow",
"page": "*"
}]
}