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
74c030d7
Commit
74c030d7
authored
Aug 29, 2023
by
zeyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.邀请加盟中添加描述信息
2.增加线下考试,线下培训描述
parent
507f654d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
7 deletions
+24
-7
pages/certifyDetail/certifyDetail.vue
+2
-2
pages/inviteJoin/inviteJoin.vue
+22
-5
No files found.
pages/certifyDetail/certifyDetail.vue
View file @
74c030d7
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
<view
class=
"liBox"
><text>
考试费用:
</text><text
style=
"color: #F15A1F;"
>
¥
{{
certificateInfo
.
examinationPrice
}}
</text></view>
<view
class=
"liBox"
><text>
考试费用:
</text><text
style=
"color: #F15A1F;"
>
¥
{{
certificateInfo
.
examinationPrice
}}
</text></view>
<view
class=
"liBox"
><text>
培训费用:
</text><text
style=
"color: #F15A1F;"
>
¥
{{
certificateInfo
.
trainPrice
}}
</text></view>
<view
class=
"liBox"
><text>
培训费用:
</text><text
style=
"color: #F15A1F;"
>
¥
{{
certificateInfo
.
trainPrice
}}
</text></view>
<view
class=
"liBox"
><text>
培训课程:
</text><text>
{{
certificateInfo
.
courseName
}}
</text></view>
<view
class=
"liBox"
><text>
培训课程:
</text><text>
{{
certificateInfo
.
courseName
}}
</text></view>
<view
class=
"liBox"
><text>
培训方式:
</text><text>
{{
certificateInfo
.
trainType
==
1
?
'线上培训'
:
'/'
}}
</text></view>
<view
class=
"liBox"
><text>
培训方式:
</text><text>
{{
certificateInfo
.
trainType
==
1
?
'线上培训'
:
certificateInfo
.
trainType
==
2
?
'线下培训'
:
'/'
}}
</text></view>
<view
class=
"liBox"
><text>
考试方式:
</text><text>
{{
certificateInfo
.
examinationType
==
1
?
'线上考试'
:
'/'
}}
</text></view>
<view
class=
"liBox"
><text>
考试方式:
</text><text>
{{
certificateInfo
.
examinationType
==
1
?
'线上考试'
:
certificateInfo
.
examinationType
==
2
?
'线下考试'
:
'/'
}}
</text></view>
<view
class=
"liBox"
><text>
及格分数:
</text><text>
{{
certificateInfo
.
passScore
}}
</text></view>
<view
class=
"liBox"
><text>
及格分数:
</text><text>
{{
certificateInfo
.
passScore
}}
</text></view>
</view>
</view>
<view
class=
"eqrocdeContent"
v-if=
"certificateInfo.wechatCodeUrl"
>
<view
class=
"eqrocdeContent"
v-if=
"certificateInfo.wechatCodeUrl"
>
...
...
pages/inviteJoin/inviteJoin.vue
View file @
74c030d7
...
@@ -51,6 +51,7 @@
...
@@ -51,6 +51,7 @@
</view>
</view>
</view>
</view>
</view>
</view>
<view
class=
"describeLabel"
>
晋升机制:当事业伙伴成功邀请加盟人数超过10人时,经过人工审核通过后,即可成功晋升为工作室。
</view>
<!--
<view
class=
"liBox"
v-if=
"isCross== true"
>
<!--
<view
class=
"liBox"
v-if=
"isCross== true"
>
<text>
所属组织名称:
</text>
<text>
所属组织名称:
</text>
<text>
<text>
...
@@ -140,8 +141,14 @@
...
@@ -140,8 +141,14 @@
<
script
>
<
script
>
import
api
from
"@/api/api"
import
api
from
"@/api/api"
import
common
from
'../../common/common'
;
import
common
from
'../../common/common'
;
import
{
hshare
}
from
'@/util/fiveshare'
;
import
{
import
{
baseURL
,
apiURL
,
cffpURL
}
from
"@/environments/environment"
;
hshare
}
from
'@/util/fiveshare'
;
import
{
baseURL
,
apiURL
,
cffpURL
}
from
"@/environments/environment"
;
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
...
@@ -171,7 +178,7 @@
...
@@ -171,7 +178,7 @@
realName
:
''
,
realName
:
''
,
partnerLevel
:
''
,
partnerLevel
:
''
,
invitationCode
:
''
,
invitationCode
:
''
,
shareTipsFlag
:
false
shareTipsFlag
:
false
};
};
},
},
onLoad
(
option
)
{
onLoad
(
option
)
{
...
@@ -182,7 +189,7 @@
...
@@ -182,7 +189,7 @@
this
.
invitationCode
=
dataForm
.
invitationCode
this
.
invitationCode
=
dataForm
.
invitationCode
},
},
methods
:
{
methods
:
{
goBack
(){
goBack
()
{
uni
.
navigateBack
({
uni
.
navigateBack
({
delta
:
1
delta
:
1
})
})
...
@@ -291,7 +298,8 @@
...
@@ -291,7 +298,8 @@
let
data
=
{
let
data
=
{
title
:
'CFFP家庭财务策划师联盟邀您加入'
,
title
:
'CFFP家庭财务策划师联盟邀您加入'
,
desc
:
`我是家庭财务策划师
${
this
.
realName
}
正在使用CFFP财富中心,点击即刻加入!`
,
desc
:
`我是家庭财务策划师
${
this
.
realName
}
正在使用CFFP财富中心,点击即刻加入!`
,
link
:
"https://"
+
window
.
location
.
host
+
"/cffp/pages/invitationRegister/invitationRegister?shareId="
+
link
:
"https://"
+
window
.
location
.
host
+
"/cffp/pages/invitationRegister/invitationRegister?shareId="
+
this
.
shareId
+
'&invitationCode='
+
this
.
invitationCode
,
//分享链接
this
.
shareId
+
'&invitationCode='
+
this
.
invitationCode
,
//分享链接
imgUrl
:
`
${
baseURL
}
/cffp/static/cffp_logo.jpg`
,
//图片
imgUrl
:
`
${
baseURL
}
/cffp/static/cffp_logo.jpg`
,
//图片
}
}
...
@@ -387,6 +395,7 @@
...
@@ -387,6 +395,7 @@
align-items
:
center
;
align-items
:
center
;
justify-content
:
space-around
;
justify-content
:
space-around
;
padding
:
30
rpx
60
rpx
0
;
padding
:
30
rpx
60
rpx
0
;
text
{
text
{
&.actived
{
&.actived
{
color
:
#333
;
color
:
#333
;
...
@@ -408,6 +417,12 @@
...
@@ -408,6 +417,12 @@
box-sizing
:
border-box
;
box-sizing
:
border-box
;
position
:
relative
;
position
:
relative
;
.describeLabel
{
padding
:
20
rpx
0
;
font-size
:
28
rpx
;
color
:
#777
;
}
.liBox
{
.liBox
{
border-bottom
:
1px
solid
#F0F0F0
;
border-bottom
:
1px
solid
#F0F0F0
;
height
:
76
rpx
;
height
:
76
rpx
;
...
@@ -561,8 +576,10 @@
...
@@ -561,8 +576,10 @@
justify-content
:
flex-end
;
justify-content
:
flex-end
;
z-index
:
100000
;
z-index
:
100000
;
background
:
rgba
(
0
,
0
,
0
,
0.8
);
background
:
rgba
(
0
,
0
,
0
,
0.8
);
.guideImgBox
{
.guideImgBox
{
margin
:
20px
auto
;
margin
:
20px
auto
;
uni-image
{
uni-image
{
width
:
25%
!important
;
width
:
25%
!important
;
position
:
absolute
;
position
:
absolute
;
...
...
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