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

...全文
225 回复 打赏 收藏 转发到动态 举报
写回复
用AI写文章
回复
切换为时间正序
请发表友善的回复…
发表回复
内容概要:本文档详细介绍了PCIe 5.0/6.0内部与外部铜缆(CopprLink)的规范,旨在支持32 GT/s和64 GT/s高速数据传输,解决高带宽应用中因PCB损耗导致的通道距离受限和平台灵活性不足问题。文档涵盖了电缆的电气性能指标,包括插入损耗、回波损耗、串扰(PSNEXT/PSFEXT)、有效内对偏移(EIPS)和线对间偏移等关键参数,并定义了适用于SFF-TA-1016(内部)和SFF-TA-1032(外部)连接器形态的物理层规格。同时,文档还规定了侧带信号的功能与引脚分配,如管理总线(2WCL/2WDA、SCL/SDA)、复位(PERST#)、存在检测(PRPE)以及灵活使用的FLEXIO引脚等,以增强系统可管理性和互操作性。此外,提出了针对反射和串扰影响的评估方法及测试夹具设计指南,确保在高频下实现可靠的信号完整性。 适合人群:从事高速互连设计、服务器平台开发或数据中心硬件架构的工程师,特别是涉及PCIe系统集成、信号完整性分析和电缆组件选型的研发人员。 使用场景及目标:①为数据中心、服务器、存储、网络设备和加速器提供长距离、高带宽的PCIe互连解决方案;②指导内部背板到主板、外部机架内或机架间设备互联的电缆设计与合规性测试;③优化系统拓扑以提升模块化和可维护性,同时满足严格的电气性能要求。 阅读建议:本规范技术性强,建议结合实际应用场景深入理解各项电气参数限值及其测量方法,重点关注不同速率下的PAM4与NRZ信号兼容性、侧带功能配置及测试验证流程,以便在产品设计中正确实施并确保互操作性。

176

社区成员

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

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