Browse Source

添加启动页

devlop
杨阁辉 4 years ago
parent
commit
eeaec35f13
3 changed files with 37 additions and 1 deletions
  1. 4
      manifest.json
  2. 12
      pages.json
  3. 22
      pages/start-page/index.vue

4
manifest.json

@ -114,6 +114,10 @@
"spotlight@3x" : "unpackage/res/icons/120x120.png"
}
}
},
"splashscreen" : {
"androidStyle" : "default",
"iosStyle" : "common"
}
},
"uniStatistics" : {

12
pages.json

@ -309,7 +309,17 @@
"enablePullDownRefresh": false
}
}
],
,{
"path" : "pages/start-page/index",
"style" :
{
"navigationBarTitleText": "启动页",
"navigationStyle": "custom",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",

22
pages/start-page/index.vue

@ -0,0 +1,22 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>
Loading…
Cancel
Save