美文网首页
2019-03-20

2019-03-20

作者: 诅咒猎豹 | 来源:发表于2019-03-20 15:17 被阅读0次

9 多端开发之uni-app起步

96

1.在HBuilderX中新建uni-app


image.png

2.项目初始目录结构


image.png
3.调整项目目录结构如下图
image.png

4.配置pages.json文件

    "pages": [
        {
            "path": "pages/index/index",
            "style": {
                "navigationBarTitleText": "主页"
            }
        },
        {
            "path": "pages/ucenter/ucenter",
            "style": {
                "navigationBarTitleText": "我的"
            }
        },
        {
            "path": "pages/ucenter/setting",
            "style": {
                "navigationBarTitleText": "个人设置"
            }
        }
    ],
    "tabBar": {
        "color": "#000000",
        "selectedColor": "#2F85FC",
        "backgroundColor": "#FFFFFF",
        "borderStyle": "black",
        "list": [
            {
                "pagePath": "pages/index/index",
                "iconPath": "static/home.png",
                "selectedIconPath": "static/home-active.png",
                "text": "主页"
            },
            {
                "pagePath": "pages/ucenter/ucenter",
                "iconPath": "static/center.png",
                "selectedIconPath": "static/center-active.png",
                "text": "我的"
            }
        ]
    },
    "globalStyle": {
        "navigationBarTextStyle": "white",
        "navigationBarBackgroundColor": "#2F85FC",
        "backgroundColor": "#FFFFFF"
    }
}

5.简单写一下index.vue和ucenter.vue内容
index.vue

    <view class="container ">
        <text class="title">主页,{{ title }}</text>
    </view>
</template>

<script>
export default {
    data() {
        return {
            title: 'Hello'
        };
    },
    onLoad() {},
    methods: {}
};
</script>

<style>
.container {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
.title {
    font-size: 36upx;
    color: #8f8f94;
}
</style>

ucenter.vue

    <view class="container">
        <text>{{ name }}的个人中心</text>
        <navigator url="../ucenter/setting" hover-class="navigator-hover">
            <button type="default">设置</button>
        </navigator>
    </view>
</template>

<script>
export default {
    data() {
        return {
            name: '陶然然'
        };
    },
    onLoad() {},
    methods: {}
};
</script>

<style>
.container {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}
</style>

6.启动雷神模拟器,选择真机运行


image.png

控制台信息:


image.png

编译项目
模拟器运行效果

image.png image.png

点击“设置”可以跳转到个人设置新页面,也可以返回到“我的”页面

image.png

7.真机插入USB也可以运行

8.uni-app官网:https://uniapp.dcloud.io/
9.阿里巴巴矢量图标库:https://www.iconfont.cn/

相关文章

网友评论

      本文标题:2019-03-20

      本文链接:https://www.haomeiwen.com/subject/keazmqtx.html