2.“简阅”——用户登录功能(2)

2.登录功能前端实现

2.1在HBuilderX中创建uni-app类型的项目,选择默认模板即可然后建目录结构,如图所示:

  • commons目录放置一些全局配置函数
  • components目录放置封装的组件
  • pages目录放置页面文件
  • static目录放置图片资源
  • style目录放置全局样式文件


    image.png

2.2 pages目录的各个子目录里分别放相应的vue文件

image.png

2.3 tab图片

default.png
nav1.png
nav1-a.png
nav2.png
nav2-a.png
nav3.png
nav3-a.png

2.4配置pages.json文件如下:

{
    "pages": [
        //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
        {
            "path": "pages/index/index",
            "style": {
                "navigationBarTitleText": "文章",
                //允许下拉刷新
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/message/message",
            "style": {
                "navigationBarTitleText": "消息"
            }
        },
        {
            "path": "pages/my/my",
            "style": {
                "navigationBarTitleText": "我的"
            }
        },
        {
            "path": "pages/signin/signin",
            "style": {}
        },
        {
            "path": "pages/write/write",
            "style": {}
        },
        {
            "path": "pages/info/info",
            "style": {}
        },
        {
            "path": "pages/setting/setting",
            "style": {}
        }
    ],
    "globalStyle": {
        "navigationBarTextStyle": "black",
        // "navigationBarTitleText" : "简阅",
        "navigationBarBackgroundColor": "#F8F8F8",
        "backgroundColor": "#F8F8F8"
    },
    "tabBar": {
        "color": "#707070",
        "selectedColor": "#DE533A",
        "list": [{
                "pagePath": "pages/index/index",
                "text": "文章",
                "iconPath": "static/nav1.png",
                "selectedIconPath": "static/nav1-a.png"
            },
            {
                "pagePath": "pages/message/message",
                "text": "消息",
                "iconPath": "static/nav2.png",
                "selectedIconPath": "static/nav2-a.png"
            },
            {
                "pagePath": "pages/my/my",
                "text": "我的",
                "iconPath": "static/nav3.png",
                "selectedIconPath": "static/nav3-a.png"
            }
        ]
    }
}

2.5style目录新建style.css全局样式表

* {
    font-size: 14pt;
}

.container {
    width: 95%;
    margin: 0 auto;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.list {
    display: flex;
    flex-direction: column;
}

.list-item {
    width: 100%;
    height: 50px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}
.green-btn {
    background-color: rgb(26, 173, 25);
    color: #fff;
}

2.6App.vue文件中引入全局样式表

<style>
 @import 'style/style.css';
</style>

2.7 my.vue

<template>
    <view class="container">
        <!-- 顶部头像和昵称区域,纵向排列 -->
        <view class="top">
            <view class="avatar-box">
                <image
                    src="../../static/default.png"
                    mode="scaleToFill"
                    class="avatar"
                    v-if="!storageData.login">
                    </image>
                <image
                    :src="storageData.avatar"
                    mode="scaleToFill"
                    class="avatar"
                    v-if="storageData.login"
                ></image>
            </view>
            <view class="info-box">
                <navigator url="../signin/signin" v-if="!storageData.login">点击登录</navigator>
                <text v-if="storageData.login">{{ storageData.nickname }}</text>
                <navigator url="../setting/setting" v-if="storageData.login">
                    <text class="setting-txt">个人设置</text>
                </navigator>
            </view>
        </view>
        
        <!-- 中间文章数量、好友数量、消息数量等统计区域,横向排列 -->
        <view class="center" v-if="storageData.login">
            <view class="info">
                <text class="title">{{articleCount}}</text>
                <text>文章</text>
            </view>
            <view class="info">
                <text class="title">{{followCount}}</text>
                <text>关注</text>
            </view>
            <view class="info">
                <text class="title">{{messageCount}}</text>
                <text>消息</text>
            </view>
            <view class="info">
                <text class="title">{{integral}}</text>
                <text>积分</text>
            </view>
        </view>
        
        <view class="content" v-if="storageData.login">
            <view class="list">
                <view class="list-item" v-for="(article, index) in articles" :key="index">
                    <text>{{article.title}}</text>
                </view>
            </view>
        </view>
    </view>
</template>

<script>
var loginRes, _self;
export default {
    data() {
        return {
            storageData: {},
            articleCount:10,
            followCount:5,
            messageCount:66,
            integral:100,
            articles:[
                {
                    id:1,
                    title:'第一篇文章',
                },
                {
                    id:2,
                    title:'第二篇文章',
                },
                {
                    id:3,
                    title:'第三篇文章',
                },
                {
                    id:4,
                    title:'第四篇文章',
                }
            ]
        };
    },
    onLoad: function() {},
    onShow: function() {
        const loginKey = uni.getStorageSync('login_key');
        console.log("my-vue page show");
        if (loginKey) {
            console.log(loginKey);
            this.storageData = {
                login: loginKey.login,
                nickname: loginKey.nickname,
                avatar: loginKey.avatar
            };
        }else{
            this.storageData ={
                login: false
            }
        }
    },
    methods: {
        
    }
};
</script>

<style scoped>
.top {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100px;
    margin-top: 5px;
}
.avatar-box{
    flex: 1 1 30%;
}
.info-box{
    flex: 1 1 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.setting-txt{
    color: #00B26A;
    margin-left: 15px;
}
.center{
    display: flex;
    justify-content: center;
}
.info{
    flex: 1 1 25%;
    display: flex;
    flex-direction: column;
    text-align: center;
    
    border-right: 1px solid #eee;
}
.title{
    font-size: 14pt;
}
.content{
    margin-top: 20px;
}
</style>

2.8 signin.vue

<template>
    <view class="uni-flex uni-column container">
        <input
            class="uni-input"
            type="number"
            placeholder="输入手机号"
            v-model="userDTO.mobile"
            required="required"
        />
        <input
            class="uni-input"
            password
            type="text"
            placeholder="输入密码"
            v-model="userDTO.password"
            required="required"
        />
        <button class="green-btn" @tap="signIn(userDTO)">登录</button>
    </view>
</template>

<script>
export default {
    data() {
        return {
            userDTO: {
                mobile: '',
                password: ''
            }
        };
    },
    onLoad() {
        uni.setNavigationBarTitle({
            title: '登录'
        });
    },
    methods: {
        signIn: function(userDTO) {
            var _this = this;
            // console.log(userDTO.mobile + ',' + userDTO.password);
            uni.request({
                url: 'http://39.96.182.225:8080/api/user/sign_in',
                // url: 'http://172.20.10.4:8080/api/user/sign_in',
                method: 'POST',
                data: {
                    mobile: userDTO.mobile,
                    password: userDTO.password
                },
                header: {
                    'content-type': 'application/json'
                },
                success: res => {
                    // console.log(res.data.data);
                    if (res.data.code == 0) {
                        //将用户数据记录在本地存储
                        uni.setStorageSync('login_key', {
                            userId: res.data.data.id,
                            nickname: res.data.data.nickname,
                            avatar: res.data.data.avatar,
                            token: res.data.data.token,
                            login: true
                        });
                        uni.showToast({
                            title: '登录成功'
                        });
                        uni.navigateBack();
                    }
                    //登录失败,弹出各种原因
                    else {
                        uni.showModal({
                            title: '提示',
                            content: res.data.msg
                        });
                    }
                }
            });
        }
    }
};
</script>

<style scoped>
input {
    height: 50px;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}
</style>

2.9 setting.vue

<template>
    <view class="container">
        <view class="list">
            <view class="list-item"><text>文章推送</text></view>
            <view class="list-item"><text>新消息推送</text></view>
            <view class="list-item"><text>个人资料修改</text></view>
        </view>
        <button  @tap="logout" class="green-btn">退出当前账号</button>
    </view>
</template>

<script>
export default {
    data() {
        return {};
    },
    onLoad() {
        uni.setNavigationBarTitle({
            title: '设置'
        });
    },
    methods: {
        logout: function() {
            console.log('log out');
            uni.removeStorageSync('login_key');
            uni.showToast({
                title: '已经退出当前账号'
            });
            uni.navigateBack();
        }
    }
};
</script>

<style>
</style>

2.10 运行到微信开发者工具看效果

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容