Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Esoblu committed Jun 24, 2024
2 parents 09fadab + ddb9768 commit 4e4ef46
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

![frontend](https://img.shields.io/badge/Front_End-Vue-green)
![backend](https://img.shields.io/badge/Back_End-Springboot-yellow)
![version](https://img.shields.io/badge/Version-0.3.2-blue)
![version](https://img.shields.io/badge/Version-0.4.1-blue)
![license](https://img.shields.io/github/license/wi1sonh/cloudmall?color=FF5531)

"云端商城" 是一个创新驱动的电子商务平台,致力于提供全面的在线销售和购物服务。通过集成前沿技术,"云端商城" 旨在创建一个动态、互动和智能化的购物环境,满足现代消费者的需求并助力商家扩展业务。
~~你说得对,但是~~云端商城”是一个诞生于 SYSU 软件工程课程的小型电子商务平台,致力于提供全面的在线销售和购物服务。通过集成前沿的前后端框架技术,"云端商城" 旨在创建一个动态、互动和体验优秀的购物环境,满足现代消费者的需求并助力商家扩展业务。

---

Expand Down
15 changes: 13 additions & 2 deletions cloudmall-springboot3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,13 @@

<build>
<plugins>
<plugin>
<!-- <plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<configuration>
<skip>true</skip>
</configuration>
</plugin> -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
Expand All @@ -103,6 +106,14 @@
<outputDirectory>server/target/jacoco-ut</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>

</plugins>
</build>
Expand Down
1 change: 1 addition & 0 deletions cloudmall-vue3/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<link rel="icon" href="/logo.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>云端商城</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<div id="app"></div>
Expand Down
23 changes: 22 additions & 1 deletion cloudmall-vue3/src/views/layout/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -367,13 +367,34 @@ onBeforeUnmount(() => {
<el-main>
<router-view></router-view>
</el-main>
<el-footer>© 2024.6.25 CloudMall Tech and Fun. All rights reserved.</el-footer>
<el-footer>
© 2024.6.25 CloudMall Tech and Fun. All rights reserved.
<a href="https://github.com/wi1sonh/cloudmall" target="_blank" class="icon-link">
<i class="fab fa-github"></i>
</a>
</el-footer>
</el-container>
</el-container>
</el-container>
</div>
</template>

<style scoped>
.footer {
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
padding: 10px; /* 添加一些内边距 */
}
.icon-link {
font-size: 20px; /* 调整图标大小 */
text-decoration: none; /* 去掉下划线 */
color: inherit; /* 继承父元素颜色 */
margin-left: 10px; /* 添加一些间距 */
}
</style>

<style lang="less" scoped>
.common-layout {
height: 100%;
Expand Down

0 comments on commit 4e4ef46

Please sign in to comment.