Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
CFFP-HB
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chao Sun
CFFP-HB
Commits
79643adf
Commit
79643adf
authored
Nov 04, 2022
by
kyle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的认证
parent
3ca1e040
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
106 additions
and
0 deletions
+106
-0
pages.json
+8
-0
pages/myCertify/myCertify.vue
+98
-0
No files found.
pages.json
View file @
79643adf
...
...
@@ -62,6 +62,14 @@
"enablePullDownRefresh"
:
false
}
},{
"path"
:
"pages/myCertify/myCertify"
,
"style"
:
{
"navigationBarTitleText"
:
""
,
"enablePullDownRefresh"
:
false
}
}
],
"tabBar"
:
{
...
...
pages/myCertify/myCertify.vue
0 → 100644
View file @
79643adf
<
template
>
<view
class=
"container"
>
<!-- tab选项 -->
<view
class=
"tabTitle"
>
<text
:class=
"
{'actived': tabType===1}" @click="switchTab(1)">报名项目
</text>
<text
:class=
"
{'actived': tabType===2}" @click="switchTab(2)">获得认证
</text>
</view>
<!-- tab内容 -->
<view
class=
"tabContent"
>
<!-- 报名项目 -->
<view
class=
"signListsBox"
>
<view
class=
"signItem"
>
<view
class=
"seriesNo"
>
1
</view>
<view
class=
"certifyInfo"
>
<text>
报名时间:2022。09.04
</text>
<view>
<text>
认证方向:CFFP高级认证
</text>
<i
class=
"iconfont icon-youjiantou"
></i>
</view>
</view>
</view>
</view>
</view>
</view>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
tabType
:
1
};
},
methods
:{
switchTab
(
type
){
this
.
tabType
=
type
;
},
}
}
</
script
>
<
style
lang=
"scss"
>
.container
{
position
:
relative
;
height
:
100%
;
.tabTitle{
color
:
#666666
;
background-color
:
#fff
;
display
:
flex
;
align-items
:
center
;
justify-content
:
space-around
;
padding
:
30
rpx
60
rpx
0
;
text{
&.actived{
color
:
#333
;
border-bottom
:
4
rpx
solid
#20269B
;
}
}
}
.tabContent
{
.signListsBox{
width
:
95%
;
margin
:
0
auto
;
.signItem{
margin-top
:
20
rpx
;
display
:
flex
;
align-items
:
center
;
background-color
:
#fff
;
padding
:
20
rpx
20
rpx
20
rpx
50
rpx
;
border-radius
:
10
rpx
;
.seriesNo{
width
:
0
;
height
:
56
rpx
;
flex
:
0
0
56
rpx
;
border-radius
:
50%
;
background
:
linear-gradient
(
137deg
,
#E1B972
0%
,
#CDA464
100%
);
color
:
#fff
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
margin-right
:
60
rpx
;
}
.certifyInfo
{
width
:
0
;
flex
:
1
;
view{
display
:
flex
;
justify-content
:
space-between
;
align-items
:
baseline
;
}
}
}
}
}
}
</
style
>
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