提交 53d9f016 编写于 作者: 喷火的神灵's avatar 喷火的神灵 🎱

2023年6月10日18:01:19

上级 5d1e96f6
......@@ -2,16 +2,36 @@
**开发运行环境:**
| 软件 | 版本 |
| :---------------------: | :-------------: |
| Windows11 | 22H2 |
| MySQL Community Edition | 8.0.33 |
| JDK | Corretto-Jdk 17 |
| 软件 | 版本 |
| :-------------------------: | :---------: |
| Windows11 | 22H2 |
| JDK | corretto-17 |
| MySQL Community Edition | 8.0.33 |
| Windows Subsystem for Linux | 2 |
| Ubuntu-Preview | 2 |
| Redis | 7.0.11 |
| WebStorm | 2023.1.2 |
| DataGrip | 2023.1.2 |
| IntelliJ IDEA Ultimate | 2023.1.2 |
***项目使用技术:***
| 依赖 | 版本 |
| :-------------: | :---: |
| Spring Boot | 3.1 |
| Spring Security | 6.0.2 |
| Mybatis | 3.0.2 |
| Spring-Mail | 3.0.2 |
| | |
| | |
| | |
| | |
| | |
1. SpringBoot 3.1
2. Corretto-Jdk 17
3. Mybatis
......
此差异已折叠。
......@@ -8,6 +8,7 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"ant-design-vue": "^1.7.2",
"axios": "^1.4.0",
"cookie-session": "^2.0.0",
"core-js": "^3.8.3",
......
......@@ -7,9 +7,12 @@ import store from './store'
import VueDPlayer from "vue-dplayer";
import "vue-dplayer/dist/vue-dplayer.css";
import axios from "axios";
import Button from 'ant-design-vue/lib/button';
import 'ant-design-vue/dist/antd.css';
// Vue.use(axios);
Vue.prototype.axios = axios;
Vue.component(Button.name, Button);
Vue.use(VueDPlayer);
Vue.use(ElementUI);
......
......@@ -82,8 +82,9 @@
<el-row :gutter="10">
<el-col :span="2">
<div>
<el-button circle class="button" icon="el-icon-edit" type="primary"></el-button>
<p>12</p>
<a-icon type="dingding" />
<a-icon type="like" theme="twoTone" />
<span><a-icon type="dislike" theme="twoTone" /></span>
</div>
</el-col>
<el-col :span="2">
......@@ -237,4 +238,8 @@ export default {
font-weight: bold;
}
</style>
\ No newline at end of file
</style>
......@@ -110,7 +110,7 @@
<!-- durid -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.18</version>
</dependency>
<dependency>
......
......@@ -12,5 +12,5 @@ public class AccountUserVO {
private int Fans;
private int Follows;
private int VideoCount;
private String MembershipStatus;
}
\ No newline at end of file
......@@ -29,7 +29,7 @@
OR Email = #{text}
</select>
<select id="selectUserByuserNameOrEmail" resultType="cn.tedu.youbiliprojectbackend.pojo.vo.AccountUserVO">
SELECT UserID, Username, Nickname,Email,AccountLevel,Fans,Follows,VideoCount,TotalLikes
SELECT UserID, Username, Nickname,Email,AccountLevel,Fans,Follows,VideoCount,TotalLikes,MembershipStatus
FROM users
WHERE Username=#{text} OR Email=#{text}
</select>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册