第二篇 Scrum冲刺博客

一、会议图片

二、项目进展

成员 完成情况 今日任务
冯荣新 搜索框,首页轮播图,分类导航 商品列表,商品详情轮播图
陈泽佳 背景展示,选择并显示图片 历史足迹,静态页面
徐伟浩 登录权限获取 商品信息录入
谢佳余 未完成 商品信息录入
邓帆涛 协助前端获取数据 意见反馈

 

三、部分代码

<!--pages/goods_list/index.wxml-->
<searchInput></searchInput>
<!--监听自定义事件-->
<tabs tabs="{{tabs}}" bindtabsItemChange="handleTabsItemChange">
    <block wx:if="{{tabs[0].isActive}}">
        <view class="first_tab">
            <navigator class="goods_item" wx:for="{{goodsList}}" wx:key="goods_id" url="/pages/goods_detail/index?goods_id={{item.goods_id}}">
                <!--左侧图片容器-->
                <view class="img_wrap">
                    <image mode="widthFix" src="{{item.goods_small_logo?item.goods_small_logo:defaultImage}}"></image>
                </view>
                <!--右侧信息容器-->
                <view class="info_wrap">
                    <text class="goods_name">{{item.goods_name}}</text>
                    <text class="goods_price">{{item.goods_price}}</text>
                </view>
            </navigator>
        </view>
    </block>
    <block wx:if="{{tabs[1].isActive}}">2</block>
    <block wx:if="{{tabs[2].isActive}}">3</block>
</tabs>
/* pages/goods_list/index.scss */
.first_tab{
    .goods_item{
        display: flex;
        border-bottom: 1px solid #ccc;
        padding: 10rpx 5rpx;
        .img_wrap{
            flex: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            image{
                width: 70%;
            }
        }
        .info_wrap{
            flex: 3;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            padding-top: 15rpx;
            .goods_name{
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp:2;
                -webkit-box-orient: vertical;
            }
            .goods_price{
                color: var(--themeColor);
                font-size: 32rpx;
            }
        }
    }
}/* pages/goods_list/index.scss */
.first_tab{
    .goods_item{
        display: flex;
        border-bottom: 1px solid #ccc;
        padding: 10rpx 5rpx;
        .img_wrap{
            flex: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            image{
                width: 70%;
            }
        }
        .info_wrap{
            flex: 3;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            padding-top: 15rpx;
            .goods_name{
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp:2;
                -webkit-box-orient: vertical;
            }
            .goods_price{
                color: var(--themeColor);
                font-size: 32rpx;
            }
        }
    }
}

四、截图

五、每日总结

成员 内容总结
冯荣新 第一天内容较为简单,花费时间较短
陈泽佳 更加熟练的运用前端知识
徐伟浩 学习了很多相关知识
谢佳余 对数据库的知识更加熟练
邓帆涛 对springboot的掌握更加深刻了

 

posted @ 2020-05-29 00:30  冯荣新  阅读(109)  评论(0编辑  收藏  举报