176
社区成员
发帖
与我相关
我的任务
分享| Team Member | Completed Tasks | Time Spent | Issues Encountered | Tomorrow's Schedule |
|---|---|---|---|---|
| Zehuang Lin | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| Xinyu Wu | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| Chongzheng Lin | Backend development: Added search function | 1h | None | Backend development: Testing software stability |
| Peiyan Zheng | Backend development: Added search function | 1h | None | Backend development: Testing software stability |
| Yihui Chen | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| Jiacheng Lin | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| Wenrui Wang | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| An Fu | Backend development: Added search function | 6h | None | Backend development: Testing software stability |
| Huihuang Lv | Frontend development: Searched online for UI charts that better fit the settings, preparing for UI improvement | 2h | None | User page interaction upgrade |
| Shaowei Hua | Team member task assignment | 2h | None | None |
| Yuxiang Zheng | Frontend development: Searched online for UI charts that better fit the settings, preparing for UI improvement | 4h | None | User page interaction upgrade |
| Lingfei Wei | Alpha problem summary blog writing | 2h | None | None |
| Yixuan Chen | Alpha problem summary blog writing | 2h | None | None |
| Chunyan Qiu | Alpha problem summary blog writing | 2h | None | None |
| Shujie Xu | Frontend development: Searched online for UI charts that better fit the settings, preparing for UI improvement | 2h | None | User page interaction upgrade |
A new search function has been added.
It enables fuzzy matching.
For example, when searching for "second-hand trading platform," it can find "second-hand platform" and "second-hand trading."
Search label code, invoking the getList method.
<u-search placeholder="搜索一下" width="600" v-model="keyword" @custom="getList" @search="getList"></u-search>
getList method
<script>
import {request} from "../../request/request";
export default {
...
methods: {
getList() {
this.$refs.uWaterfall.clear();
this.pageNum = 1;
this.pageSize = 10;
// 在请求参数中添加一个模糊匹配的条件
request({
url: '/secondhand/goodsst',
data: {
pageNum: this.pageNum,
pageSize: this.pageSize,
status: 1,
// 使用通配符或其他适当的方式实现模糊匹配
name: { $regex: '.*' + this.keyword + '.*' },
},
}).then(res => {
this.list = res.rows;
this.total = res.total;
});
},
...
</script>
Fuzzy Matching Logic: If a list's key value contains the search input string as a substring, it meets the requirement.
| Team Member | Completed Tasks | Time Spent | Issues Encountered | Tomorrow's Schedule |
|---|---|---|---|---|
| Zehuang Lin | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| Xinyu Wu | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| Chongzheng Lin | Backend development: Added search function | 1h | None | Backend development: Testing software stability |
| Peiyan Zheng | Backend development: Added search function | 1h | None | Backend development: Testing software stability |
| Yihui Chen | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| Jiacheng Lin | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| Wenrui Wang | Half progress on defense PPT | 2h | None | Continue to follow up on PPT progress based on project progress |
| An Fu | Backend development: Added search function | 6h | None | Backend development: Testing software stability |
| Huihuang Lv | Frontend development: Searched online for UI charts that better fit the settings, preparing for UI improvement | 2h | None | User page interaction upgrade |
| Shaowei Hua | Team member task assignment | 2h | None | None |
| Yuxiang Zheng | Frontend development: Searched online for UI charts that better fit the settings, preparing for UI improvement | 4h | None | User page interaction upgrade |
| Lingfei Wei | Alpha problem summary blog writing | 2h | None | None |
| Yixuan Chen | Alpha problem summary blog writing | 2h | None | None |
| Chunyan Qiu | Alpha problem summary blog writing | 2h | None | None |
| Shujie Xu | Frontend development: Searched online for UI charts that better fit the settings, preparing for UI improvement | 2h | None | User page interaction upgrade |
A new search function has been added.
It enables fuzzy matching.
For example, when searching for "second-hand trading platform," it can find "second-hand platform" and "second-hand trading."
Search label code, invoking the getList method.
<u-search placeholder="搜索一下" width="600" v-model="keyword" @custom="getList" @search="getList"></u-search>
getList method
<script>
import {request} from "../../request/request";
export default {
...
methods: {
getList() {
this.$refs.uWaterfall.clear();
this.pageNum = 1;
this.pageSize = 10;
// 在请求参数中添加一个模糊匹配的条件
request({
url: '/secondhand/goodsst',
data: {
pageNum: this.pageNum,
pageSize: this.pageSize,
status: 1,
// 使用通配符或其他适当的方式实现模糊匹配
name: { $regex: '.*' + this.keyword + '.*' },
},
}).then(res => {
this.list = res.rows;
this.total = res.total;
});
},
...
</script>
Fuzzy Matching Logic: If a list's key value contains the search input string as a substring, it meets the requirement.

Ruoyi is an open-source backend management system framework, widely used in enterprise-level application development. It is based on mainstream front-end and back-end separation technology, providing a wealth of functional modules and components. The main features of Ruoyi include:
Ruoyi is suitable for scenarios that require rapid construction of enterprise-level backend management systems, especially for medium to large-scale projects, as it provides a strong infrastructure and flexible expansion capabilities. Thus, we utilize Ruoyi to build our backend management system.


(Note: The specific tasks and details are not provided in the original text, so they are not included in the translation. Please provide the relevant information for further translation.)
| Overall Project Prediction Tasks | Completed? |
|---|---|
| Adding Search | Yes |
| More User-friendly Interaction | No |
| More Aesthetically Pleasing UI | No |
| Software Stability Testing | No |
| Improving Order Interface & Interaction | Yes |
| Backstage management system | Yes |
