第 5 篇 Scrum 冲刺博客

发布时间 2023-11-24 16:10:38作者: awsdl

作业概述

这个作业属于哪个课程 软件工程
这个作业要求在哪里 作业链接
这个作业的目标 1、站立式会议 2、项目燃尽图 3、代码/文档签入记录 4、项目程序/模块的最新(运行)截图 5、每日每人总结
作业所属团队 就吃西兰花?队
团队成员 李嘉鹏、田小古、李境豪、詹炜昊、黄俊强、陈梓杨

会议

会议照片

昨天已完成的工作/今天计划完成的工作

已完成

初步设计点赞功能
加快评论功能的实现,完善
测试个人主页界面功能
完善部分ui设计

计划完成

测试评论功能的实现
完善点赞功能
对搜索功能的初步构建
数据库表的设计

工作中遇到的困难

  • 点赞功能出现些许bug,正在调试

  • 对于后端开发需要学习一些新知识才能更好的进行工作

项目燃尽图

代码/文档签入记录

issue截图

项目程序/模块的最新(运行)截图

最新模块的代码

点击查看代码
public CommonResult authenticate(@Validated @RequestBody UserLoginDto authUserDto) {
    //认证
    Authentication authenticate = authenticateService.authenticate(authUserDto.getUsername(), authUserDto.getPassword());
    //认证后生成令牌
    String token = authenticateService.generateToken(authenticate);
    Long uid = authenticateService.getUserId(authenticate);
    String username=authenticateService.getUserName(authenticate);
    authenticateService.singleLogin(token, authUserDto.getUsername());
    List<Object> roles = authenticateService.getRole(authenticate);
    UserLoginVo userLoginVo=new UserLoginVo();
    userLoginVo.setToken(token);
    userLoginVo.setUserVo(new UserVo(uid,username,roles));
     return CommonResult.operateSuccess(userLoginVo);
}

点击查看代码
  return (
    <ConfigProvider
      theme={{
        token: {
          colorPrimary: "#95de64",
        },
      }}
    >
      <Form
        name="basic"
        style={{
          minWidth: 300,
          position: "absolute",
          top: "50%",
          left: "50%",
          transform: "translate(-50%, -60%)",
          textAlign: "center",
        }}
        initialValues={{ remember: true }}
        onFinish={onFinish}
        autoComplete="off"
      >
        <Image w={300} src={img} alt="EasyTok" />
        <Form.Item
          name="username"
          rules={[{ required: true, message: "请输入用户名" }]}
        >
          <Input prefix={<UserOutlined />} placeholder="用户名" />
        </Form.Item>
        <Form.Item
          name="password"
          rules={[{ required: true, message: "请输入密码" }]}
        >
          <Input.Password prefix={<LockOutlined />} placeholder="密码" />
        </Form.Item>
        <Button
          type="primary"
          htmlType="submit"
          style={{
            width: "100%",
          }}
        >
          登录
        </Button>
        <Flex
          color={"#e9454c"}
          justifyContent="end"
          marginTop="10px"
        >
          无EasyTok账号?去
          <Box
            color={"blue"}
            fontWeight="bold"
            cursor="pointer"
            onClick={() => {
              navigate("/register");
            }}
          >
            注册
            <ArrowRightOutlined />
          </Box>
        </Flex>
      </Form>
      <ParticlesBg type="circle" />
    </ConfigProvider>
  );

运行结果截图

请参考昨天!

每日每人总结

成员 总结
李嘉鹏 头晕眼花的又坚持完善了一些功能
田小古 学习新知识,加快产品开发
陈梓杨 又多加了几个功能,产品更加的完美了
詹炜昊 鼓励队友,鼓励自己
黄俊强 啊啊啊,开始不顺了...
李境豪 代码测试工作 进展 50%