@@ -13,6 +13,12 @@
"navigationBarTitleText": "%title.contract"
}
},
+ {
+ "path": "pages/index/intro",
+ "style": {
+ "navigationBarTitleText": "%title.intro"
+ }
+ },
{
"path": "pages/login/index",
"style": {
@@ -0,0 +1,33 @@
+<template>
+ <view class="intro-box">
+ <view>
+ <image src="@/static/img/index/bg1.png" mode="widthFix"></image>
+ </view>
+</template>
+
+<script>
+export default {
+ name: "intro",
+ components: {},
+ props: {},
+ data() {
+ return {}
+ watch: {},
+ mounted() {
+ methods: {}
+}
+</script>
+<style scoped lang="scss">
+.intro-box{
+ width: 100%;
+ image{
+ width: 100vw;
+</style>