Commit 74c030d7 by zeyang

1.邀请加盟中添加描述信息

2.增加线下考试,线下培训描述
parent 507f654d
...@@ -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">
......
...@@ -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,9 +189,9 @@ ...@@ -182,9 +189,9 @@
this.invitationCode = dataForm.invitationCode this.invitationCode = dataForm.invitationCode
}, },
methods: { methods: {
goBack(){ goBack() {
uni.navigateBack({ uni.navigateBack({
delta: 1 delta: 1
}) })
}, },
// 暂时废弃 // 暂时废弃
...@@ -291,21 +298,22 @@ ...@@ -291,21 +298,22 @@
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`, //图片
} }
//安卓机型获取当前页面路径 //安卓机型获取当前页面路径
let url = window.location.href.split('#')[0]; let url = window.location.href.split('#')[0];
//ios机型获取当前页面路径 //ios机型获取当前页面路径
let ua = navigator.userAgent.toLowerCase(); let ua = navigator.userAgent.toLowerCase();
let isWeixin = ua.indexOf('micromessenger') !== -1; let isWeixin = ua.indexOf('micromessenger') !== -1;
if (isWeixin) { if (isWeixin) {
let isiOS = /(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent); //ios终端 let isiOS = /(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent); //ios终端
if (isiOS && window.sessionStorage.getItem('firstEntryUrl')) { if (isiOS && window.sessionStorage.getItem('firstEntryUrl')) {
url = window.sessionStorage.getItem('firstEntryUrl').split('#')[0]; url = window.sessionStorage.getItem('firstEntryUrl').split('#')[0];
} }
} }
// let url = window.location.href.split('#')[0] // let url = window.location.href.split('#')[0]
hshare(data, url) hshare(data, url)
...@@ -387,6 +395,7 @@ ...@@ -387,6 +395,7 @@
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
padding: 30rpx 60rpx 0; padding: 30rpx 60rpx 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: 20rpx 0;
font-size: 28rpx;
color: #777;
}
.liBox { .liBox {
border-bottom: 1px solid #F0F0F0; border-bottom: 1px solid #F0F0F0;
height: 76rpx; height: 76rpx;
...@@ -547,7 +562,7 @@ ...@@ -547,7 +562,7 @@
align-items: center; align-items: center;
padding-top: 36rpx; padding-top: 36rpx;
} }
.markBox { .markBox {
position: fixed; position: fixed;
left: 0; left: 0;
...@@ -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;
...@@ -570,11 +587,11 @@ ...@@ -570,11 +587,11 @@
top: 0; top: 0;
} }
} }
.tips { .tips {
margin-top: 30%; margin-top: 30%;
padding: 0 30px; padding: 0 30px;
} }
} }
} }
</style> </style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment