Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
T
tabulator-another-web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
tabulator-another-web
Commits
be0d84ad
Commit
be0d84ad
authored
Jun 04, 2025
by
xiaoye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
ce473cfd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
src/pages/tabulator.vue
src/pages/tabulator.vue
+2
-1
src/script/mycard.ts
src/script/mycard.ts
+1
-1
src/style/page.scss
src/style/page.scss
+6
-0
No files found.
src/pages/tabulator.vue
View file @
be0d84ad
...
@@ -113,6 +113,7 @@
...
@@ -113,6 +113,7 @@
<transition
name =
'switch'
>
<transition
name =
'switch'
>
<uni-list
<uni-list
v-show =
'search.result.total > 0 && page.menu'
v-show =
'search.result.total > 0 && page.menu'
:class =
"
{ vertical : size.width
<
=
size
.
height
}"
>
>
<uni-list-item
<uni-list-item
id =
'list'
id =
'list'
...
@@ -181,7 +182,7 @@
...
@@ -181,7 +182,7 @@
},
},
tournament
:
(
v
:
number
=
0
):
void
=>
{
tournament
:
(
v
:
number
=
0
):
void
=>
{
const
url
=
window
.
location
.
href
.
split
(
'
/?
'
);
const
url
=
window
.
location
.
href
.
split
(
'
/?
'
);
emitter
.
emit
(
Const
.
changeUrl
,
`
${
url
[
0
]
}
/
${
search
.
result
.
tournaments
[
v
].
id
}${
url
[
1
]
?
`/?
${
url
[
1
]}
`
:
''
}
`
);
emitter
.
emit
(
Const
.
changeUrl
,
`
${
url
[
0
]
.
endsWith
(
'
/
'
)
?
url
[
0
]
:
`
${
url
[
0
]}
/`
}
${
search
.
result
.
tournaments
[
v
].
id
}${
url
[
1
]
?
`/?
${
url
[
1
]}
`
:
''
}
`
);
},
},
menu
:
async
():
Promise
<
void
>
=>
{
menu
:
async
():
Promise
<
void
>
=>
{
page
.
tournament
=
false
;
page
.
tournament
=
false
;
...
...
src/script/mycard.ts
View file @
be0d84ad
...
@@ -59,7 +59,7 @@ class MyCard {
...
@@ -59,7 +59,7 @@ class MyCard {
this
.
email
=
''
;
this
.
email
=
''
;
this
.
avatar
=
'
https://cdn02.moecube.com:444/accounts/default_avatar.jpg
'
;
this
.
avatar
=
'
https://cdn02.moecube.com:444/accounts/default_avatar.jpg
'
;
const
url
=
window
.
location
.
href
.
split
(
'
/?
'
);
const
url
=
window
.
location
.
href
.
split
(
'
/?
'
);
emitter
.
emit
(
Const
.
changeUrl
,
`
${
url
[
0
]}
/`
);
emitter
.
emit
(
Const
.
changeUrl
,
url
[
0
].
endsWith
(
'
/
'
)
?
url
[
0
]
:
`
${
url
[
0
]}
/`
);
}
}
}
}
...
...
src/style/page.scss
View file @
be0d84ad
...
@@ -102,4 +102,10 @@
...
@@ -102,4 +102,10 @@
}
}
}
}
}
}
.vertical
{
:deep
(
.uni-list-item
)
{
background
:
linear-gradient
(
to
right
,
rgb
(
255
,
228
,
230
)
,
white
,
white
,
white
,
rgb
(
204
,
251
,
241
))
!
important
;
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment