Skip to content

Commit a66d3c6

Browse files
authored
发布 1.0.6 (#44)
2 parents bd65c61 + 7697f21 commit a66d3c6

File tree

47 files changed

+220
-796
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+220
-796
lines changed

core/authx-aop/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-authx</artifactId>
88
<groupId>org.devlive.authx</groupId>
9-
<version>1.6.0-SNAPSHOT</version>
9+
<version>1.6.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

core/authx-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-authx</artifactId>
88
<groupId>org.devlive.authx</groupId>
9-
<version>1.6.0-SNAPSHOT</version>
9+
<version>1.6.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

core/authx-param/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-authx</artifactId>
88
<groupId>org.devlive.authx</groupId>
9-
<version>1.6.0-SNAPSHOT</version>
9+
<version>1.6.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

core/authx-security/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.devlive.authx</groupId>
99
<artifactId>incubator-authx</artifactId>
10-
<version>1.6.0-SNAPSHOT</version>
10+
<version>1.6.0</version>
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>
1313

core/authx-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>incubator-authx</artifactId>
77
<groupId>org.devlive.authx</groupId>
8-
<version>1.6.0-SNAPSHOT</version>
8+
<version>1.6.0</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

core/authx-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.devlive.authx</groupId>
88
<artifactId>incubator-authx</artifactId>
9-
<version>1.6.0-SNAPSHOT</version>
9+
<version>1.6.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

core/authx-validation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-authx</artifactId>
88
<groupId>org.devlive.authx</groupId>
9-
<version>1.6.0-SNAPSHOT</version>
9+
<version>1.6.0</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

core/authx-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "AuthX",
3-
"version": "1.6.0-SNAPSHOT",
3+
"version": "1.6.0",
44
"private": true,
55
"scripts": {
66
"dev": "vue-cli-service serve",

core/authx-web/src/entity/MenuEntity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export class MenuEntity {
33
code: string | undefined
44
id: number | undefined
55
name: string | undefined
6-
isNew: boolean | undefined
6+
newd: boolean | undefined
77
selected: boolean | undefined
88
sorted: number | undefined
99
tips: string | undefined

core/authx-web/src/layouts/basic/components/LayoutAside.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,27 @@
77
:name="menu.code">
88
<template #title>
99
{{ menu.title }}
10+
<Badge v-if="menu.newd"
11+
text="">
12+
</Badge>
1013
</template>
1114
<MenuItem v-for="children in menu.children"
1215
v-bind:key="children.id"
1316
:name="children.code"
1417
:to="children.url">
1518
{{ children.title }}
19+
<Badge v-if="menu.newd"
20+
text="">
21+
</Badge>
1622
</MenuItem>
1723
</Submenu>
1824
<MenuItem v-else
1925
:name="menu.code"
2026
:to="menu.url">
2127
{{ menu.title }}
28+
<Badge v-if="menu.newd"
29+
text="">
30+
</Badge>
2231
</MenuItem>
2332
</div>
2433
</Menu>

0 commit comments

Comments
 (0)