Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fns_front_2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenqikuai
fns_front_2
Commits
1de9a7a6
Commit
1de9a7a6
authored
Aug 18, 2021
by
chenqikuai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
38d92fee
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
8 deletions
+29
-8
index.vue
src/components/FnsCard3/index.vue
+14
-3
index.vue
src/components/GroupTitle/index.vue
+1
-0
index.ts
src/router/index.ts
+0
-1
index.vue
src/views/FnsList/index.vue
+1
-1
index.vue
src/views/withMenu/FinancialManagement/index.vue
+13
-3
No files found.
src/components/FnsCard3/index.vue
View file @
1de9a7a6
...
...
@@ -9,15 +9,26 @@
</div>
<span
class=
"info7"
>
2.73%
</span>
<span
class=
"txt8"
>
预计年化收益
</span>
<button
class=
"section2 flex-col"
>
<button
class=
"section2 flex-col"
@
click=
"clickSee"
>
<span
class=
"word15"
>
立即查看
</span>
</button>
</div>
</div>
</
template
>
<
script
lang=
"ts"
>
import
Vue
,
{
defineComponent
}
from
"vue"
;
export
default
defineComponent
({});
import
router
from
"@/router"
;
import
{
defineComponent
}
from
"vue"
;
export
default
defineComponent
({
setup
()
{
return
{
clickSee
:
()
=>
{
// router.push({
// name: "fnsDetail",
// });
},
};
},
});
</
script
>
<
style
lang=
"less"
scoped
>
.main4 {
...
...
src/components/GroupTitle/index.vue
View file @
1de9a7a6
...
...
@@ -9,6 +9,7 @@
name=
"icon-gengduo"
color=
"#979BB6"
size=
"10"
@
click=
"$emit('seeMore')"
/>
<icon
v-else-if=
"iconName === 'icon-shaixuan'"
...
...
src/router/index.ts
View file @
1de9a7a6
import
{
createRouter
,
createWebHistory
,
RouteRecordRaw
}
from
'vue-router'
import
Home
from
'../views/Home.vue'
const
routes
:
Array
<
RouteRecordRaw
>
=
[
{
...
...
src/views/FnsList/index.vue
View file @
1de9a7a6
...
...
@@ -57,7 +57,7 @@ export default defineComponent({
},
data
()
{
return
{
show
:
tru
e
,
show
:
fals
e
,
bankList
:
[
{
name
:
"zhongguo"
,
...
...
src/views/withMenu/FinancialManagement/index.vue
View file @
1de9a7a6
...
...
@@ -34,14 +34,18 @@
<div
class=
"box3 flex-col"
><span
class=
"word4"
>
精选理财
</span></div>
</div>
<MainFnsSwip
class=
"relative z-10 mainfnsswip"
/>
<GroupTitle
title=
"精选理财"
subtitle=
"安稳省心 爆款甄选"
/>
<GroupTitle
title=
"精选理财"
subtitle=
"安稳省心 爆款甄选"
@
seeMore=
"seeMore"
/>
<FnsCard4
v-for=
"n in 3"
:key=
"n"
:data=
"n"
/>
</div>
</div>
</
template
>
<
script
lang=
"ts"
>
import
Vue
,
{
defineComponent
}
from
"vue"
;
import
Vue
,
{
defineComponent
}
from
"vue"
;
import
Icon
from
"@/components/common/Icon.vue"
;
import
FnsCard3
from
"@/components/FnsCard3/index.vue"
;
import
GroupTitle
from
"@/components/GroupTitle/index.vue"
;
...
...
@@ -61,7 +65,13 @@ export default defineComponent({
constants
:
{},
};
},
methods
:
{},
methods
:
{
seeMore
()
{
this
.
$router
.
push
({
name
:
"FnsList"
,
});
},
},
});
</
script
>
<
style
lang=
"less"
scoped
>
...
...
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