FUZHUAN: Beta Sprint Summary Blog

FUZHUAN 2024-12-21 02:02:19
Which course does this assignment belong toEE301
Where are the requirements for this assignment?Teamwork—beta Spring
Team Name

FUZHUAN

The objective of this assignmentBeta Sprint Summary Blog
Other Reference DocumentsMethod of Construction ( 《构建之法》)

目录

 

1. Introduction

2. Completed and Pending Tasks

3. Review of the Alpha Phase Improvement Plan

4. Project Link and Demonstration

5. Functional GIF

6. Experience, Insights, and Learnings of Each Member During the Sprint

7. Conclusion


1. Introduction

In the Beta phase, our goal was to further optimize the FZZ Campus Second-hand Trading Platform, focusing on completing remaining feature development, improving system performance, enhancing user experience, and ensuring product stability. To comprehensively assess whether the improvement plans set during the Alpha phase were successfully implemented, this blog will review the progress made during the Beta phase and analyze each member’s contribution and the overall achievements of the team.

2. Completed and Pending Tasks

During the Beta phase, we followed the improvement plans made in the “Problem Summary Essay” and the “Essay on Preparing for Everything” from the Alpha phase, which outlined the features that needed improvement or addition. Below is the progress on the tasks in the Beta phase:

TaskStatusCompletionRemarks
Improve user login and registration featuresCompleted100%User registration, login, and password recovery features were completed and the previous bugs were fixed.
Improve product publishing and editing featuresCompleted100%Product publishing interface was optimized, and the editing functionality was completed, allowing users to manage products easily.
Add transaction history and order management featuresCompleted100%The order management module is complete, supporting viewing of historical transactions and updating order statuses.
User review and rating featurePartially Completed80%The feature is mostly complete, but further UI improvements and security enhancements are needed.
Optimize search and filtering featuresCompleted100%Search functionality was improved, and product filtering by category and keywords was enhanced, with faster results loading.
Database performance optimizationCompleted100%Optimized database query efficiency, reducing loading time and improving overall system performance.
User experience improvements (UI/UX)Completed100%The interface layout was improved based on user feedback, making the app easier to use.
System stability testing and bug fixingCompleted100%Comprehensive stability testing was completed, and known bugs were fixed.
Mobile app review and approval preparationIn Progress60%Preparation for submission is underway and expected to be completed in the next phase.
Automated testing featureNot Completed40%The automated testing tools are under development and are expected to be finished in the next phase.

3. Review of the Alpha Phase Improvement Plan

In the Alpha phase, the team set several improvement plans, including resolving feature gaps, addressing performance issues, optimizing database structure, and enhancing user experience. Below is a review of the improvement plans set in the Alpha phase:

Improvement PlanStatusCompletionRemarks
Addressing incomplete core featuresCompleted100%Core features were successfully developed and debugged.
Improve code quality and stabilityCompleted100%Code refactoring and module optimization were completed, improving stability and maintainability.
Enhance team collaboration and communicationCompleted100%Regular team meetings ensured project progress and quality.
Improve requirements management and change controlCompleted100%Requirements documentation was optimized to handle changes and version control effectively.
Implement automated testing toolsPartially Completed80%Automated testing tools were partially developed, but full implementation is pending in the Beta phase.

These improvement plans were further implemented in the Beta phase, providing a solid foundation for the project’s progress.

4. Project Link and Demonstration

  • WeChat Mini Program 
  • Project QR Code:

5. Functional GIF

Here are some screenshots of the FZZ Mini Program in operation:

  • User Login and Registration Interface:

  • Product Publishing and Editing Feature:

  • Order Management Interface:

 

  • Bookmarking interface:

  •  Search interface

  •  Shopping cart interface

 

6. Experience, Insights, and Learnings of Each Member During the Sprint

In the Beta Sprint phase, each team member had different contributions and learning experiences. Below is a summary of individual reflections from team members:

MemberContributionExperience and Insights
Pan Fangling (832201330)Overall project progress control, backend development, requirement analysis supportImproved team collaboration efficiency through project management tools, learned how to better distribute tasks and coordinate resources.
Zhang Yuxin (832201326)Backend development lead, requirement analysis supportGained in-depth knowledge of backend architecture design, especially in database design and API development.
Jiang Huizhou (832201304)Backend development team memberImproved Java programming skills and gained hands-on experience in API design and debugging.
Chen Yike (832202116)Backend development team memberEnhanced understanding of handling concurrent requests, and learned how to improve high-concurrency systems.
Jin Tangruoyi (832201218)Backend development team memberGained experience in debugging and optimizing backend services, particularly in database query performance.
Sun Xing (832202106)Backend development team memberLearned about microservice architecture and contributed to database performance tuning.
Lin Tianyu (832202118)Backend development team memberEnhanced teamwork skills and gained practical experience in API development.
Luo Yuxin (832201320)Frontend development lead, requirement analysis supportDeepened understanding of frontend-backend integration and gained experience in using the Vue.js framework.
Yong Yuxin (832201328)Frontend development team memberIncreased frontend development efficiency, especially in UI design and interaction optimization.
Lin Jiahui (832202119)Frontend development team memberGained experience in optimizing user interfaces and responsive layout techniques.
Yang Ruoxin (832201211)Frontend development team memberGained valuable insights into frontend performance optimization, particularly in image loading and rendering.
Fang Shuyi (832201204)Frontend development team memberLearned how to manage data flow and user interaction in frontend development.
Liu Ningle (832201208)Requirement analysis and documentation managementEnsured smooth progress of the development and design process by managing requirements and documentation.
Wang Yinxuan (832201301)Requirement analysis and documentation managementLearned how to manage and control requirement changes effectively to ensure on-time project delivery.

7. Conclusion

Through the Beta Sprint, the FUZHUAN team made significant progress in both development and optimization, completing the tasks planned for this phase. Team members not only improved their technical skills but also gained valuable experience in actual project development. Through continuous feedback and testing optimization, we ensured system stability and enhanced the user experience. Going forward, we will continue iterating based on user feedback and technical requirements, preparing for the official launch of the campus second-hand trading platform.

...全文
244 回复 打赏 收藏 举报
写回复
用AI写文章
回复
切换为时间正序
请发表友善的回复…
发表回复
源码下载地址: https://pan.quark.cn/s/a4b39357ea24 在Android系统应用程序开发过程中,有时需要为用户设计查看较大图像的界面,比如在照片库应用或电商产品详情界面。本案例主要介绍如何运用ViewPager组件实现左右滑动切换图片,同时结合手势操作支持图片的缩放功能。下面将详细阐述这一功能的实现细节: `ViewPager`是Android软件开发工具包中提供的一个控件,它能够让用户在多个页面之间进行左右滑动以切换内容。在本应用场景中,每个页面都将展示一张图片。`ViewPager`通过适配器(通常是一个继承自`PagerAdapter`的自定义类)来提供页面内容,适配器负责加载和管理图片数据。 为了实现图片查看大图并支持手势缩放,一般会用到`ImageView`组件和`ScaleGestureDetector`类。`ImageView`是用于显示图片的基本组件,而`ScaleGestureDetector`能够帮助我们识别用户的缩放手势,从而实现图片的放大和缩小操作。 实现这一功能的步骤如下: 1. 构建一个自定义的`PagerAdapter`子类,例如`ImagePagerAdapter`,它将负责将图片数据加载到`ViewPager`的各个页面中。在`Invalidate()`方法里,我们可以依据当前页的索引加载对应的图片资源。 2. 在`PagerAdapter`的`instantiateItem()`方法中,为每个页面创建一个新的`ImageView`实例,并将其添加到`ViewPager`的布局结构中。设定`ImageView`的初始图片资源。 3. 对每个`ImageView`,我们可以使用`GestureDet...
《华为杯历年优秀论文》是一份收录了华为杯研究生数学建模大赛2010年至2020年间优秀论文的压缩包合集。它既是赛事成果的集中展示,也是数学建模领域一份珍贵的教育资源。以下从赛事背景、论文价值、年度特征和学习意义几个方面重新梳理。 一、赛事定位与论文集的由来 华为杯数学建模大赛是一项面向硕士研究生的创新型实践类赛事,由华为公司主办。比赛的核心目的在于培养和提升研究生的创新意识、团队协作能力以及运用数学方法解决实际问题的能力。赛题通常横跨自然科学、工程技术、经济管理等多个领域,要求参赛者在有限时间内完成从问题分析到模型构建、求解、验证的全过程。 《华为杯历年优秀论文》正是这项赛事多年沉淀的结晶。它按年度汇编,收录了2010年至2020年间每年的优秀参赛论文,形成了一套时间跨度长、覆盖面广的论文选集。 二、论文集的年度特征 由于赛题紧跟时代热点,不同年份的论文选呈现出不同的关注焦点: 2010年前后:论文选题多围绕当年的热点问题展开,参赛者运用数学工具对这些现实问题进行了深入探讨。 2015年前后:随着大数据、人工智能等新兴技术的兴起,论文中开始出现数学建模在新背景下的应用探索,反映了技术浪潮对建模方法的推动。 2020年:论文选则可能体现了新冠疫情等全球性事件对数学建模选题和研究视角带来的影响与启示。 这种年度差异使得整套论文集不仅是论文的堆砌,更是一份记录数学建模应用演进的时间档案。 三、优秀论文的价值所在 每一年的论文选集都是对当年赛事的全面回顾,其中的优秀论文往往体现出参赛者独特的视角和深度的思考。其价值主要体现在两个层面: 对后来参赛者而言,这些论文提供了可参考、可借鉴的实例,有助于理解和掌握数学建模的基本步骤与策略——从问题的识别和定义,到模型的建立、求解和验证,再到结果的解释和应用。 对教师和研究者而言,这些论文是教学案例分析和研究的重要资料,有

173

社区成员

发帖
与我相关
我的任务
社区描述
2401_MU_SE_FZU
软件工程 高校
社区管理员
  • FZU_SE_TeacherL
  • 助教-吴可仪
  • 助教-孔志豪
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧