first commit

This commit is contained in:
进进啊
2022-04-11 00:59:34 +08:00
commit 2682e87afd
26 changed files with 950 additions and 0 deletions

45
pages.json Normal file
View File

@@ -0,0 +1,45 @@
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/home/index",
"style": {
"navigationBarTitleText": "单词学习APP"
}
}
,{
"path" : "pages/recitation/index",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar":{
"color": "#9da6b6",
"selectedColor": "#293042",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"height":"60px",
"list":[{
"pagePath":"pages/home/index",
"iconPath":"static/icon/home-unselect.png",
"selectedIconPath":"static/icon/home-selected.png",
"text":"答题"
},{
"pagePath":"pages/recitation/index",
"iconPath":"static/icon/recitation-unselect.png",
"selectedIconPath":"static/icon/recitation-selected.png",
"text":"背诵"
}]
}
}