第五篇 Scrum冲刺博客
一、会议图片
二、项目进展
成员 | 完成情况 | 今日任务 |
冯荣新 | 未完成 | 购物车列表,购物车工具栏 |
陈泽佳 | 未完成 | 静态结构 |
徐伟浩 | 商品信息录入 | 协助前端获取数据 |
谢佳余 | 未完成 | 搜索算法设计 |
邓帆涛 | 未完成 | 意见反馈 |
三、部分代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | <!--pages/cart/index.wxml--> < view > < view class="get_address_row" wx:if="{{!address.userName}}"> < view class="address_btn"> < button bindtap="handleChooseAddress" type="primary" plain>获取收货地址</ button > </ view > </ view > <!--地址详细信息--> < view wx:else class="address_info"> < text class="username">收货人: {{address.userName}}</ text > < text class="telephone">{{address.telNumber}}</ text > < view class="address">{{address.detailedAddress}}</ view > </ view > <!--购物车内容--> < view class="cart_content" wx:if="{{cart.length}}"> < view class="title">购物车</ view > < view class="main"> < view class="item" wx:for="{{cart}}"> <!--复选框--> < view class="chk_wrap"> < checkbox-group bindchange="handleItemChange" data-id="{{item.goods_id}}"> < checkbox checked="{{item.checked}}"></ checkbox > </ checkbox-group > </ view > <!--商品图片--> < navigator class="img_wrap"> < image mode="widthFix" src="{{item.goods_small_logo}}"></ image > </ navigator > <!--商品信息--> < view class="info_wrap"> < text class="name">{{item.goods_name}}</ text > < view class="row"> < text class="price">¥{{item.goods_price}}</ text > < digitalInput bindNumChange="numChange" binddeleteGoods="deleteGoods" initnum="{{item.goods_count}}" data-id="{{item.goods_id}}"></ digitalInput > </ view > </ view > </ view > </ view > </ view > <!--购物车没有内容--> < view wx:else> < image src="/styles/image/timg.gif" mode="widthFix"></ image > </ view > <!--底部工具栏--> < view class="footer_tool"> <!--全选--> < view class="all_chk_wrap"> < checkbox-group bindchange="handleCheckAll"> < checkbox color="#000" checked="{{allChecked}}" disabled="{{!cart.length}}">全选</ checkbox > </ checkbox-group > </ view > <!--总价格--> < view class="total_price_wrap"> < text class="text">合计: < text class="total_price"> ¥ {{totalPrice}}</ text ></ text > < text class="hint">包含运费</ text > </ view > <!--结算--> < view class="order_pay_wrap" bindtap="handlePay">结算({{totalNum}})</ view > </ view > </ view > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | .get_address_row{ padding : 20 rpx; .address_btnp{ button{ width : 60% ; } } } .address_info{ clear : both ; overflow : hidden ; padding : 20 rpx; .telephone{ float : right ; } .address{ padding-top : 10 rpx; } } /*购物车列表*/ .cart_content{ .title{ padding : 20 rpx; font-size : 36 rpx; color : var(--themeColor); border-top : 1px solid currentColor; border-bottom : 1px solid currentColor; font-weight : 600 ; } .main{ .item{ display : flex; align-items: center ; height : 200 rpx; border-bottom : 1px solid #666666 ; padding-bottom : 10 rpx; margin-top : 20 rpx; .chk_wrap{ flex: 1 ; checkbox-group{ text-align : center ; } } .img_wrap{ flex: 3 ; height : 99% ; overflow : hidden ; image{ width : 85% ; } } .info_wrap{ flex: 5 ; padding-right : 10 rpx; display : flex; flex- direction : column; .name{ overflow : hidden ; text- overflow : ellipsis; display : -webkit-box; -webkit-line-clamp: 2 ; -webkit-box-orient: vertical; margin-bottom : 30 rpx; font-size : 32 rpx; } .row{ display : flex; align-items: center ; justify- content : space-between; .price{ color : red ; font-size : 35 rpx; font-weight : 600 ; } } } } } } page{ padding-bottom : 90 rpx; } /*容器*/ /*底部工具栏*/ .footer_tool{ position : fixed ; width : 100% ; bottom : 0 ; display : flex; height : 90 rpx; border-top : 1px solid #ccc ; align-items: center ; background-color : white ; .all_chk_wrap{ flex: 2 ; display : flex; justify- content : center ; align-items: center ; checkbox{ transform: scale( 0.8 , 0.8 ); } } .total_price_wrap{ flex: 4 ; display : flex; flex- direction : column; text-align : right ; padding-right : 15 rpx; .total_price{ color : var(--themeColor); font-size : 35 rpx; font-weight : 600 ; } } .order_pay_wrap{ flex: 2 ; background-color : red ; height : 100% ; color : white ; font-size : 35 rpx; font-weight : 600 ; display : flex; justify- content : center ; align-items: center ; } } |
四、项目截图
五、每日总结
成员 | 总结 |
冯荣新 | 学海无涯苦做舟 |
陈泽佳 | 没有天生的信心,只有不断培养的信心 |
徐伟浩 | 对数据库的理解更加深刻 |
谢佳余 | 回到熟悉的领域还是很轻松的 |
邓帆涛 | 学习如逆水行舟,不进则退 |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 为什么说在企业级应用开发中,后端往往是效率杀手?
· 用 C# 插值字符串处理器写一个 sscanf
· Java 中堆内存和栈内存上的数据分布和特点
· 开发中对象命名的一点思考
· .NET Core内存结构体系(Windows环境)底层原理浅谈
· 为什么说在企业级应用开发中,后端往往是效率杀手?
· DeepSeek 解答了困扰我五年的技术问题。时代确实变了!
· 本地部署DeepSeek后,没有好看的交互界面怎么行!
· 趁着过年的时候手搓了一个低代码框架
· 推荐一个DeepSeek 大模型的免费 API 项目!兼容OpenAI接口!