SophonNexus: Beta Sprint Essay 2

SophonNexus 团队账号 2023-12-15 22:27:03
Which course does this assignment belong toSoftware Engineering
Where are the requirements for this assignment?https://bbs.csdn.net/topics/617676810
Team NameSophonNexus
Project NameCrowdsourced Parking Management System
The objective of this assignmentBeta Sprint Essay 2

This Beta Sprint Essay is about the uni-app development

Catalog

  • SCRUM section
  • Ⅰ. Team Members and Task Progress
  • check-in
  • Ⅱ. Interface and Code
  • login page
  • Task Publishing Interface
  • Personal Center
  • Ⅲ. Code Inspection and Test Results
  • Ⅳ. Meeting Photo
  • PM report
  • Ⅴ. Project Progress Summary
  • Ⅵ. burn-up chart
  • Ⅶ. Task Amount Change
  • Ⅷ. Demo Video

SCRUM section

Ⅰ. Team Members and Task Progress

Team MemberStudent IDCompleted TasksTime spentIssues or ChallengesPlan
陈尧 Chen Yao832102118Coding, UI Components5hThe designed components appear incongruent on screens of different sizes.Designing components through responsive design.
陈震 Chen Zhen832102119Coding login pages8hNoneEnhance the functionality of the login page.
章汉林 Zhang Hanlin832102127Coding task pages9hSlow loading of the map when publishing a task.Improve the speed of loading the map
谢彦喆 Xie Yanzhe832102129Coding user pages8.5hNoneEnhance the functionality of the user page.
蔡思源 Cai Siyuan832102130Integrated backend’s API Calls6hNot implementing error handling for the backend APIManage the status of API calls, including loading states, success, and failure handling.

check-in

img

Ⅱ. Interface and Code

login page

img

<template>
    <view class="login-container">
        <!-- Logo -->
        <image class="logo" src="/static/login/logo.jpg" mode="aspectFit"></image>
    
        <!-- 协议勾选框 -->
        <!-- <view class="agreement-container">
            <checkbox class="agreement-checkbox" v-model="agreeProtocol">勾选以同意XXX协议</checkbox>
        </view> -->
    
        <!-- 登录按钮 -->
        <button class="login-button" @click="loginByWechat()">微信授权一键登录</button>
    </view>
</template>


Task Publishing Interface

img

<template>
    <view>
        <!-- 使用z-paging-swiper为根节点可以免计算高度 -->
        <z-paging-swiper>
            <!-- 此处代码复制了uView中tabsSwiper全屏选项卡的代码 -->
            <!-- 需要固定在顶部不滚动的view放在slot="top"的view中 -->
            <view slot="top">
                <view class="topBox">
                    <u-search shape="round" margin="0 20rpx" placeholder="关键字搜索" :showAction="false" bgColor="#fff"
                        @click="searchPage" disabled></u-search>
                    <view class="select" @tap="showValue = true;
                        iconArrow = 'arrow-up';
                        hideKeyboard();">
                        <!-- <uni-data-select  v-model="selectValue" :localdata="range" @change="change" :clear="false"></uni-data-select> -->
                        <u--input v-model="selectedTxt" readonly customStyle="border:1px solid #e7e6e4"
                            :suffixIcon="iconArrow"></u--input>
                        <!-- //弹出层 -->
                        <u-action-sheet :show="showValue" :actions="list" :closeOnClickOverlay="true" round="8"
                            cancelText="取消" @select="typeSelect" @close="closeAction"></u-action-sheet>
                    </view>
                </view>
                <u-tabs-swiper class="tasktypes" ref="taskTabs" :list="tabList" :current="current" @change="tabsChange" :is-scroll="false"
                    swiperWidth="750"></u-tabs-swiper>
            </view>
            <!-- swiper必须设置height:100%,因为swiper有默认的高度,只有设置高度100%才可以铺满页面  -->
            <swiper class="swiper" :current="swiperCurrent" @transition="transition" @animationfinish="animationfinish">
                <swiper-item class="swiper-item" v-for="(item, index) in tabList" :key="index">
                    <swiper-list-item :tabIndex="index" :currentIndex="swiperCurrent"
                        :selectValue="selectValue"></swiper-list-item>
                </swiper-item>
            </swiper>
        </z-paging-swiper>
        
        <!-- 使用新手引导提示组件 见https://ext.dcloud.net.cn/plugin?id=6653 -->
        <xky-guideStep :step="step"></xky-guideStep>
    </view>


</template>


Personal Center

img

>
                </view>


            </view>


            <!-- 我的钱包 -->
            <view class="cu-bar wallet-bar bg-white solid-bottom margin-top-xs">
                <view class="action">
                    <text class="cuIcon-title text-blue"></text>我的钱包
                </view>
            </view>
            <view class="padding bg-white">
                <view class="flex">
                    <view class="flex-sub padding-xs text-center ">
                        <view class="text-lg text-bold margin-bottom-xs">{{userInfo.money_left.toFixed(2)}}</view>
                        <text class="text-sm text-gray">余额</text>
                    </view>
                    <view class="flex-sub padding-xs text-center text-sm">
                        <view class="text-lg text-bold margin-bottom-xs">{{userInfo.deposit.toFixed(2)}}</view>
                        <text class="text-sm text-gray">保证金</text>
                    </view>
                </view>
            </view>

        </view>

        <view class="task-list">
            <view class="list" @click="navigateToPublishTaskList()">
                <image src="@/static/user/icon-no-sub.png" mode="aspectFit"></image>
                <text>已发布</text>
                <view class="round bg-red cu-tag  user-fuchuan13" v-if="taskStatistics.uncompleted>0">
                    {{taskStatistics.uncompleted}}
                </view>
            </view>
            <view class="list" @click="navigateToSubmitList(1)">
                <image src="@/static/user/icon-examine.png" mode="aspectFit"></image>
                <text>审核中</text>
                <view class="round bg-red cu-tag  user-fuchuan13" v-if="taskStatistics.wait_check>0">
                    {{taskStatistics.wait_check}}
                </view>
            </view>
            <view class="list" @click="navigateToSubmitList(3)">
                <image src="@/static/user/icon-fail.png" mode="aspectFit"></image>
                <text>不合格</text>
                <view class="round bg-red cu-tag  user-fuchuan13" v-if="taskStatistics.process>0">
                    {{taskStatistics.process}}
                </view>
            </view>
            <view class="list" @click="navigateToSubmitList(2)">
                <image src="@/static/user/icon-order-taking.png" mode="aspectFit"></image>
                <text>已通过</text>
            </view>
        </view>



        <!-- list -->
        <view class="cu-list menu solid-top margin-top-xs">
            <view class="cu-item">
                <view class="content" @click="navigateToFavoritePage">
                    <text class="cuIcon-circlefill text-green"></text>
                    <text class="text-grey">我的收藏</text>
                </view>
                <view class="action">
                    <text class="text-grey text-sm cuIcon-right"></text>
                </view>
            </view>
            <view class="cu-item" @click="navigateToContrbutionPage">
                <view class="content">
                    <text class="cuIcon-circlefill text-yellow"></text>
                    <text class="text-grey">我的贡献</text>
                </view>
                <view class="action">
                    <text class="text-grey text-sm cuIcon-right"></text>
                </view>
            </view>
            <view class="cu-item" @click="navigateToFeedbackPage">
                <view class="content">
                    <text class="cuIcon-circlefill text-orange"></text>
                    <text class="text-grey">反馈建议</text>
                </view>
                <view class="action">
                    <text class="text-grey text-sm cuIcon-right"></text>
                </view>
            </view>
            <view class="cu-item" @click="loginOut">
                <view class="content">
                    <text class="cuIcon-circlefill text-blue"></text>
                    <text class="text-grey">退出</text>
                </view>
                <view class="action">
                    <text class="text-grey text-sm cuIcon-right"></text>
                </view>
            </view>

        </view>

        <u-action-sheet :actions="loginList" :show="loginout" closeOnClickOverlay closeOnClickAction cancelText="取消"
            round="8" @close="loginout = false" @select="chooseAction"></u-action-sheet>

    </view>

</template>



Ⅲ. Code Inspection and Test Results

Unit Testing: We employed unit testing methods in the WeChat Mini Program, tested the functions submitTask and uploadSubmitImages.

Integration Testing: We conducted tests on the task submission module, login module, and page navigation.

UI Testing: We ran the WeChat Mini Program on devices and screens of different sizes, identified some components that were not displaying correctly, and are actively working to fix this issue.

Mock Data Testing: We used mock data for testing to validate the behavior of the WeChat Mini Program under different data scenarios, and found no issues during testing.

Ⅳ. Meeting Photo

img

PM report

Ⅴ. Project Progress Summary

(1) Expected tasks: Completed the coding for the login page, task page, user homepage, and other components, as well as the integration with backend API. The expected duration for this work is 10 days.
(2) Completed tasks: Completed the coding for the majority of pages and integrated some of the backend API.
(3) Remaining work: Complete the full integration of interfaces and refine the project code. The expected time of the remaining work is 4 days.
(4) Issues encountered: The map loads too slowly when publishing a task, and the API interfaces integrated with the backend lack error handling in the code.

Ⅵ. burn-up chart

img

Ⅶ. Task Amount Change

New Tasks:
Real-device testing and code debugging.
Adaptation issues for devices of different sizes.

Ⅷ. Demo Video

...全文
216 回复 打赏 收藏 转发到动态 举报
写回复
用AI写文章
回复
切换为时间正序
请发表友善的回复…
发表回复
内容概要:本文介绍了SB200工业级单芯片RS232转RS422/RS485转换收发器的技术特性与优势。该器件采用QFN-40封装,具备端口供电功能,无需外接电源即可工作,支持RS422与RS485多节点组网,并实现自动方向控制,无需额外的DTR或RTS控制信号。SB200最高支持921.6 Kbps的波特率,在1.2km长距离传输下仍能稳定运行,显著优于传统低价转换器。文档还展示了SB200在不同模式下的性能表现,包括RS422、RS485回显与非回显模式,并提供与其他产品的详细对比,突出其在速率、多点通信、终端电阻配置和工业级温度范围等方面的优势。 适合人群:从事工业通信、嵌入式系统开发及相关硬件设计的研发人员,特别是对串行通信接口有应用需求的工程师;适用于有一定电子技术基础的技术支持或产品选型人员。 使用场景及目标:①用于工业现场长距离、高可靠性的串行通信部署;②替代传统需外部供电和手动方向控制的转换器,简化系统布线与维护;③应用于支持多点组网、高速数据传输的RS485/RS422网络中,提升通信效率与稳定性。 阅读建议:在阅读过程中应重点关注SB200的自动方向控制机制、端口供电能力及其在不同通信模式下的性能参数,结合实际应用场景进行器件选型评估,并参考对比表格识别其相对于低端产品的综合优势。 如需SB300数据手册与其他详细资料,欢迎随时咨询北京博控自动化技术有限公司索取。
内容概要:本文围绕基于二阶扩展卡尔曼滤波(Second-order Extended Kalman Filter, Second-order EKF)的锂电池荷电状态(State of Charge, SOC)估计方法开展系统性研究,采用Matlab平台进行建模与仿真分析,旨在提升锂电池SOC估算的精度与动态适应能力。文章深入阐述了二阶EKF相较于传统一阶EKF在处理电池非线性动态特性方面的理论优势,通过引入更高阶泰勒展开项,有效降低线性化误差,从而提高状态估计的准确性。研究构建了适用于锂电池的等效电路模型(ECM),结合实测充放电实验数据,在多种动态工况下验证了该方法在SOC估计中的有效性与鲁棒性。同时,论文系统比较了卡尔曼滤波家族中多种算法(如标准卡尔曼滤波KF、无迹卡尔曼滤波UKF、扩展卡尔曼滤波EKF、粒子滤波PF等)在电池状态估计中的性能差异,突出二阶EKF在兼顾计算效率与估计精度方面的优越性,尤其适用于强非线性电池系统的实时SOC估计任务。; 适合人群:具备控制理论、现代信号处理、非线性系统建模或电池管理系统(BMS)相关基础知识,从事新能源汽车、储能系统、电力电子与智能电网等领域研究的硕士/博士研究生、科研人员及工程技术人员。; 使用场景及目标:①在锂电池管理系统中实现高精度、高稳定性的实时SOC在线估计;②为电池健康状态(SOH)、剩余使用寿命(RUL)等关键状态参数的联合估计提供可靠的初始状态与误差协方差信息;③作为科研与工程实践的重要参考,用于复现、改进或优化现有非线性滤波算法,推动其在复杂电化学系统状态估计中的应用发展。; 阅读建议:建议读者结合提供的Matlab代码进行仿真实践,重点剖析二阶EKF的数学推导过程、系统状态空间模型的构建方法、过程与观测噪声的合理设定,并通过与UKF、EKF等算法的仿真结果对比,深入理解其在不同工况下的适用边界与优化潜力,进而掌握非线性滤波器在工程应用中的设计要点与调参技巧。

176

社区成员

发帖
与我相关
我的任务
社区描述
梅努斯软件工程
软件工程 高校 福建省·福州市
社区管理员
  • LinQF39
  • Jcandc
  • chjinhuu
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

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