Skip to content

Commit 7493531

Browse files
authored
Merge branch 'apache:master' into appIdUser
2 parents 9dcc68d + e18f81c commit 7493531

File tree

2 files changed

+23
-14
lines changed

2 files changed

+23
-14
lines changed

dashboard/src/main/webapp/src/pages/ApplicationPage.vue

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,18 @@
4343
<el-table :data="pageData.appInfoData" height="250" style="width: 100%">
4444
<el-table-column prop="appId" label="AppId" min-width="180" />
4545
<el-table-column prop="userName" label="UserName" min-width="180" />
46-
<el-table-column prop="registrationTime" label="Registration Time" min-width="180" :formatter="dateFormatter" />
47-
<el-table-column prop="updateTime" label="Update Time" min-width="180" :formatter="dateFormatter" />
46+
<el-table-column
47+
prop="registrationTime"
48+
label="Registration Time"
49+
min-width="180"
50+
:formatter="dateFormatter"
51+
/>
52+
<el-table-column
53+
prop="updateTime"
54+
label="Update Time"
55+
min-width="180"
56+
:formatter="dateFormatter"
57+
/>
4858
</el-table>
4959
</div>
5060
</div>

dashboard/src/main/webapp/src/pages/ShuffleServerPage.vue

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<div>
2020
<el-row :gutter="20">
2121
<el-col :span="4">
22-
<router-link to="/shuffleserverpage/activeNodeList">
22+
<router-link class="router-link-active" to="/shuffleserverpage/activeNodeList">
2323
<el-card class="box-card" shadow="hover">
2424
<template #header>
2525
<div class="card-header">
@@ -31,7 +31,7 @@
3131
</router-link>
3232
</el-col>
3333
<el-col :span="4">
34-
<router-link to="/shuffleserverpage/decommissioningNodeList">
34+
<router-link class="router-link-active" to="/shuffleserverpage/decommissioningNodeList">
3535
<el-card class="box-card" shadow="hover">
3636
<template #header>
3737
<div class="card-header">
@@ -45,7 +45,7 @@
4545
</router-link>
4646
</el-col>
4747
<el-col :span="4">
48-
<router-link to="/shuffleserverpage/decommissionedNodeList">
48+
<router-link class="router-link-active" to="/shuffleserverpage/decommissionedNodeList">
4949
<el-card class="box-card" shadow="hover">
5050
<template #header>
5151
<div class="card-header">
@@ -59,7 +59,7 @@
5959
</router-link>
6060
</el-col>
6161
<el-col :span="4">
62-
<router-link to="/shuffleserverpage/lostNodeList">
62+
<router-link class="router-link-active" to="/shuffleserverpage/lostNodeList">
6363
<el-card class="box-card" shadow="hover">
6464
<template #header>
6565
<div class="card-header">
@@ -71,7 +71,7 @@
7171
</router-link>
7272
</el-col>
7373
<el-col :span="4">
74-
<router-link to="/shuffleserverpage/unhealthyNodeList">
74+
<router-link class="router-link-active" to="/shuffleserverpage/unhealthyNodeList">
7575
<el-card class="box-card" shadow="hover">
7676
<template #header>
7777
<div class="card-header">
@@ -83,7 +83,7 @@
8383
</router-link>
8484
</el-col>
8585
<el-col :span="4">
86-
<router-link to="/shuffleserverpage/excludeNodeList">
86+
<router-link class="router-link-active" to="/shuffleserverpage/excludeNodeList">
8787
<el-card class="box-card" shadow="hover">
8888
<template #header>
8989
<div class="card-header">
@@ -151,13 +151,17 @@ export default {
151151
font-size: larger;
152152
}
153153
154+
/* Remove the underscore from the route label. */
155+
.router-link-active {
156+
text-decoration: none;
157+
}
158+
154159
.activenode {
155160
font-family: 'Lantinghei SC';
156161
font-style: normal;
157162
font-weight: bolder;
158163
font-size: 30px;
159164
color: green;
160-
text-decoration: none;
161165
}
162166
163167
.decommissioningnode {
@@ -166,7 +170,6 @@ export default {
166170
font-weight: bolder;
167171
font-size: 30px;
168172
color: #00c4ff;
169-
text-decoration: none;
170173
}
171174
172175
.decommissionednode {
@@ -175,7 +178,6 @@ export default {
175178
font-weight: bolder;
176179
font-size: 30px;
177180
color: blue;
178-
text-decoration: none;
179181
}
180182
181183
.lostnode {
@@ -184,7 +186,6 @@ export default {
184186
font-weight: bolder;
185187
font-size: 30px;
186188
color: red;
187-
text-decoration: none;
188189
}
189190
190191
.unhealthynode {
@@ -193,14 +194,12 @@ export default {
193194
font-weight: bolder;
194195
font-size: 30px;
195196
color: #ff8800;
196-
text-decoration: none;
197197
}
198198
199199
.excludesnode {
200200
font-family: 'Lantinghei SC';
201201
font-style: normal;
202202
font-weight: bolder;
203203
font-size: 30px;
204-
text-decoration: none;
205204
}
206205
</style>

0 commit comments

Comments
 (0)