Scrum sprint Part V

We are the stability of the team, the players are temperature cure dry, Mo Shaoping governance, Huangsi Yang, Yu Chak end, Jianghai spirit

A meeting

1.1   29 stand-up meeting Photo:

 

1.2   yesterday completed things

team member

Yesterday plans to complete the work:

Huang Siyang

 Event Management module (front-end)

Mo Shaoping government

 Event Management module (front-end)

Yu Chak end

 Login interface development (backend)

Temperature cure dry

 Login interface development (backend)

Jianghai Ling

Activity released a beta (test)

1.3   today plans to complete work

team member

Today, plans to complete the work:

Huang Siyang

 Activities editing module (front-end)

Mo Shaoping government

 Activities editing module (front-end)

Yu Chak end

 Writing and DEBUG interface document (back-end)

Temperature cure dry

 Writing and DEBUG interface document (back-end)

Jianghai Ling

 Activity released a beta (test)

1.4    problems encountered in the work

1) the front end portion:

Huang Siyang:

When rendering a list of active data, activities cover map at load out <img> tag.

 

Reason: <img> tag src attribute data can not be loaded as shown above, it is necessary to use v-bind bound manner, without the need for double braces, properly used as follows:

2) the rear end portion:

Yu Chak end:

From one module to the whole system, some business logic related issues

Temperature cure dry:

For some business logic is not very clear idea of ​​the problem. In addition, I also understand that was not good enough for some design issues database table

Second, the project follow-up

                                                Burndown

 

Third, follow the code

3.1 Code check

team member

Check-in record

The front group:

Mo Shaoping government

Huang Siyang

 

Backend Group:

Yu Chak end

Temperature cure dry

 


3.2 Issue check the contents of the corresponding link record
 
(1) the front end portion:
https://gitee.com/sixers/activityWall-Web/commits/master
(2) rear portion:
https://gitee.com/sixers/ActivityWall-Server/commits/master
 

Fourth, the appropriate project procedures / modules of the latest (run) Screenshot

Web editor plate end activities run shot

 

The latest module of code 4.1

注:由于模块代码较多,因而以下选取一些作代表

4.11  前端部分

4.12  后端部分

活动墙接口文档

# 活动墙接口文档

文档所有接口的主 URL 为:https://open.igdut.str-mo.com,接口地址直接拼接在其后面

## 通用接口

- 获取小程序码

接口地址:/getWxappCode

参数:无

返回值:JSON,内容如下:

| 字段名 | 数据类型 | 备注                            |
| ------ | -------- | ------------------------------- |
| result | Bool     | true / false                    |
| codeId | String   | 每个小程序码的唯一 id           |
| url    | String   | 小程序码图片地址                |
| errMsg | String   | 只有 result 为 false 才有此字段 |

- 拉取小程序码状态

接口地址:/getWxappCodeStatus

参数:

| 字段名 | 数据类型 | 备注                  |
| ------ | -------- | --------------------- |
| codeId | String   | 每个小程序码的唯一 id |

返回值:JSON,内容如下:

| 字段名     | 数据类型 | 备注                               |
| ---------- | -------- | ---------------------------------- |
| result | Bool     | true / false                    |
| statusCode | int      | 小程序码对应的状态,对应状态见下表 |
| statusMsg | String | 状态码为 2 时,数据库对应的那条记录的信息,比如“登录成功” / “登录失败” / “身份验证成功” / “身份验证失败” |
| errMsg | String | 只有 result 为 false 才有此字段 |

| 状态码 | 对应状态                     |
| ------ | ---------------------------- |
| 0      | 还没被扫码                   |
| 1      | 已经被扫码但是未有进一步操作 |
| 2      | 已经被扫码并且有进一步操作   |

- 发送短信

接口地址:/sendSms

参数:

| 字段名      | 数据类型 | 备注                                                    |
| ----------- | -------- | ------------------------------------------------------- |
| phoneNumber | String   | 目标手机号                                              |
| type        | String   | 发送短信的类型,如 “注册验证码” / “修改手机号验证码” 等 |

返回值:JSON,内容如下:

| 字段名     | 数据类型 | 备注                               |
| ---------- | -------- | ---------------------------------- |
| result | Bool     | true / false                    |
| errMsg | String | 只有 result 为 false 才有此字段 |

- 检验短信验证码正确性

接口地址:/checkSmsCode

参数:

| 字段名      | 数据类型 | 备注             |
| ----------- | -------- | ---------------- |
| phoneNumber | String   | 目标手机号       |
| code        | String   | 用户输入的验证码 |

返回值:JSON,内容如下:

| 字段名     | 数据类型 | 备注                               |
| ---------- | -------- | ---------------------------------- |
| result | Bool     | true / false                    |
| isCorrect | Bool | true / false , 代表验证码正确还是不正确 |
| errMsg | String | 只有 result 为 false 才有此字段 |



## 登录接口

登录会首先调用前面的获取验证码接口,用户扫码确认后才会调用以下接口。

- 拉取用户管理的机构列表

接口地址:/getSubjectList

参数:

| 字段名  | 数据类型 | 备注             |
| ------- | -------- | ---------------- |
| account | String   | 小程序用户的学号 |
| codeId  | String   | 小程序码唯一 id  |

返回值:JSON,内容如下:

| 字段名 | 数据类型 | 备注                                                         |
| ------ | -------- | ------------------------------------------------------------ |
| result | Bool     | true / false                                                 |
| list   | Array    | 当前账号所管理的机构列表,是一个列表数组,其成员的详细字段见下表 |
| errMsg | String   | 只有 result 为 false 才有此字段                              |

列表成员数据结构:

| 字段名 | 数据类型 | 备注                |
| ------ | -------- | ------------------- |
| name   | String   | 机构名称            |
| logo   | String   | 机构的头像 URL 地址 |
| id     | String   | 机构的唯一标识 id   |

- 上传用户登录信息

接口地址:/pushLoginMsg

参数:

| 字段名    | 数据类型 | 备注              |
| --------- | -------- | ----------------- |
| account   | String   | 小程序用户学号    |
| codeId    | String   | 小程序码唯一 id   |
| subjectId | String   | 机构的唯一标识 id |

返回值:JSON,内容如下:

| 字段名 | 数据类型 | 备注                            |
| ------ | -------- | ------------------------------- |
| result | Bool     | true / false                    |
| errMsg | String   | 只有 result 为 false 才有此字段 |

 

五、每日每人总结

莫少政:初步涉猎了Web端的开发,很多地方都还不熟悉,还需要多多联系,争取早日走上正轨。第一次按照软件工程的方式方法去推进一个项目,出现了不少纰漏,有待复盘和改进

温治乾:通过这次项目,我对一个有一定规模的小项目的开发步骤有了更多的了解,从一开始的任务分配,到后续的接口文档等等方面,每个模块的耦合性应该尽量低。另外还有一些不足,希望能够尽快提高和改进

黄思扬:完成了平台首页三个模块的开发,实现富文本编辑器的引入

余泽端:只有搭建完一个系统架构后,对各种业务逻辑的开发才能分模块进行,提高开发效率

江海灵:   在相关测试上完成注册登录功能的检验

Guess you like

Origin www.cnblogs.com/1430559825qqcom/p/11955046.html