Skip to content

Commit

Permalink
Merge pull request #35 from OrdinaryRoad-Project/feat-v0.0.13
Browse files Browse the repository at this point in the history
Feat v0.0.13
  • Loading branch information
1962247851 committed Sep 14, 2023
2 parents 9e5047c + 9d70a63 commit dba21c7
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 22 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Backend: [![构建状态](https://ordinaryroad.coding.net/badges/ordinaryroad/jo
- 评论文章
- 回复评论
- 评论删除
- [ ] 评论敏感词校验

### 日志模块

Expand Down Expand Up @@ -92,4 +93,10 @@ Backend: [![构建状态](https://ordinaryroad.coding.net/badges/ordinaryroad/jo
- Quarkus
- MyBatis Plus
- SaToken
- Nuxt.js
- Nuxt.js

---

[<img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.png" width="200" alt="Copyright © 2000-2023 JetBrains s.r.o. JetBrains and the JetBrains logo are registered trademarks of JetBrains s.r.o."/>](https://jb.gg/OpenSourceSupport)

感谢 [**JetBrains**](https://www.jetbrains.com) 提供的开源项目产品许可证。
2 changes: 1 addition & 1 deletion docker/ordinaryroad-blog-ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ ENV HOST=0.0.0.0

# 提示nuxt权限不够,chmod -R 777 .
#CMD npm install --no-package-lock; npm run build; npm run start
CMD npm run build; npm run start
CMD npm run start
10 changes: 5 additions & 5 deletions ordinaryroad-blog-quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>tech.ordinaryroad.quarkus</groupId>
<artifactId>ordinaryroad-blog</artifactId>
<version>0.0.12</version>
<version>0.0.13</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -93,10 +93,10 @@
<artifactId>quarkus-config-yaml</artifactId>
</dependency>

<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-mate-starter</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.baomidou</groupId>-->
<!-- <artifactId>mybatis-mate-starter</artifactId>-->
<!-- </dependency>-->

<dependency>
<groupId>me.zhyd.oauth</groupId>
Expand Down
6 changes: 0 additions & 6 deletions ordinaryroad-blog-ui/components/or/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,6 @@ export default {
onSearchSubmit (searchInput) {
window.open(`/search/${searchInput}`, '_blank')
},
click (index) {
this.setSelectedThemeOption({
value: index,
$vuetify: this.$vuetify
})
}
}
}
Expand Down
7 changes: 4 additions & 3 deletions ordinaryroad-blog-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ordinaryroad-blog-ui",
"version": "0.0.12",
"version": "0.0.13",
"private": true,
"config": {
"nuxt": {
Expand All @@ -25,19 +25,20 @@
"@nuxtjs/sitemap": "^2.4.0",
"core-js": "^3.25.3",
"echarts": "^5.4.3",
"jinrishici": "^1.0.6",
"js-cookie": "^3.0.5",
"medium-zoom": "^1.0.8",
"nuxt": "^2.15.8",
"ordinaryroad-vuetify": "^1.5.8",
"vditor": "^3.9.4",
"vditor": "^3.9.5",
"vue": "^2.7.10",
"vue-i18n": "^8.27.2",
"vue-json-viewer": "^2.2.22",
"vue-masonry-wall": "^0.3.2",
"vue-qr": "^2.5.0",
"vue-server-renderer": "^2.7.10",
"vue-template-compiler": "^2.7.10",
"vuetify": "^2.6.15",
"vuetify": "^2.7.1",
"vuetify2-expand": "^1.1.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions ordinaryroad-blog-ui/plugins/access/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default ({
const userInfo = store.getters['user/getUserInfo']
return userInfo != null
}
const checkLogin = () => {
const checkLogin = (redirect = route.fullPath) => {
const logged = isLogged()
if (!logged) {
app.$dialog({
Expand All @@ -42,7 +42,7 @@ export default ({
if (isConfirm) {
app.router.push({
path: '/user/login',
query: { redirect: route.fullPath }
query: { redirect }
})
}
})
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
<parent>
<groupId>tech.ordinaryroad.quarkus</groupId>
<artifactId>ordinaryroad-quarkus</artifactId>
<version>1.5.4</version>
<version>1.6.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>

<artifactId>ordinaryroad-blog</artifactId>
<version>0.0.12</version>
<version>0.0.13</version>
<description>OrdinaryRoad Blog</description>

<modules>
Expand All @@ -57,8 +57,8 @@
</repositories>

<properties>
<ordinaryroad-quarkus.version>1.5.4</ordinaryroad-quarkus.version>
<mapstruct.version>1.5.3.Final</mapstruct.version>
<ordinaryroad-quarkus.version>1.6.0</ordinaryroad-quarkus.version>
<mapstruct.version>1.5.5.Final</mapstruct.version>
<mybatis-mate-starter.version>1.2.5</mybatis-mate-starter.version>
<JustAuth.version>1.16.5</JustAuth.version>
</properties>
Expand Down

0 comments on commit dba21c7

Please sign in to comment.