Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pptist
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
viitto
pptist
Commits
c8d50ae3
Commit
c8d50ae3
authored
Apr 19, 2024
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
首页 模版详情查看
parent
b6d2df11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
137 additions
and
42 deletions
+137
-42
App.vue
src/App.vue
+0
-1
common.css
src/assets/styles/common.css
+11
-0
index.vue
src/components/footer/index.vue
+27
-0
icon.ts
src/plugins/icon.ts
+2
-0
index.vue
src/views/Editor/EditorHeader/index.vue
+1
-1
Index.vue
src/views/Market/Index.vue
+96
-40
No files found.
src/App.vue
View file @
c8d50ae3
...
...
@@ -42,7 +42,6 @@ useFontStore().loadAllFonts()
<
style
lang=
"scss"
>
@import
url('@/assets/styles/common.css')
;
@import
url('//at.alicdn.com/t/c/font_635492_mmnd6nkbmf8.css')
;
#app
{
height
:
100%
;
}
...
...
src/assets/styles/common.css
View file @
c8d50ae3
...
...
@@ -18,6 +18,17 @@ page {
src
:
url("https://im.oytour.com/tripfont/PingFangR.ttf")
format
(
"truetype"
);
font-display
:
swap
;
}
/* 修改滚动条滑块的样式 */
::-webkit-scrollbar-thumb
{
background-color
:
#BBBECE
;
border-radius
:
5px
;
/* 修改滑块圆角 */
}
/* 修改滚动条滑块悬停时的样式 */
::-webkit-scrollbar-thumb:hover
{
/* background-color: #BBBECE; */
}
.pingfangr
{
font-family
:
"pingfangr"
!important
;
}
...
...
src/components/footer/index.vue
0 → 100644
View file @
c8d50ae3
<
template
>
<div
class=
"footer-from column flex-center"
>
<div><img
:src=
"logo"
height=
"31"
/></div>
<div
class=
"text-center fz14 PingFangSC"
style=
"color: #9B99BC;"
>
@2012-2024 成都微途科技有限公司 版权所有 蜀ICP备13024891号-9
</div>
</div>
</
template
>
<
script
lang=
"ts"
setup
>
import
{
onMounted
,
ref
,
provide
}
from
'vue'
;
import
{
useUserStore
}
from
"@/store"
;
import
{
storeToRefs
}
from
"pinia"
;
const
logo
=
require
(
"@/assets/img/traveldesign.png"
)
</
script
>
<
style
scoped
>
.footer-from
{
width
:
100%
;
position
:
fixed
;
height
:
10vh
;
left
:
0
;
right
:
0
;
bottom
:
0
;
background
:
#000
;
z-index
:
1
;
text-align
:
center
;
}
</
style
>
\ No newline at end of file
src/plugins/icon.ts
View file @
c8d50ae3
...
...
@@ -130,6 +130,7 @@ import {
More
,
Setting
,
Refresh
,
Like
}
from
'@icon-park/vue-next'
export
interface
Icons
{
...
...
@@ -264,6 +265,7 @@ export const icons: Icons = {
IconMore
:
More
,
IconSetting
:
Setting
,
IconRefresh
:
Refresh
,
IconLike
:
Like
}
export
default
{
...
...
src/views/Editor/EditorHeader/index.vue
View file @
c8d50ae3
...
...
@@ -8,7 +8,7 @@
<div
class=
"menu-item"
@
click=
"goBack(0)"
>
返回首页
</div>
</
template
>
<div
class=
"menu-item"
>
<el-icon
color=
"#
d14424
"
><ArrowLeftBold
/></el-icon>
<el-icon
color=
"#
564bec
"
><ArrowLeftBold
/></el-icon>
</div>
<!-- <div class="menu-item ArrowLeftBold"> </div> -->
</Popover>
...
...
src/views/Market/Index.vue
View file @
c8d50ae3
This diff is collapsed.
Click to expand it.
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