Commit 74c030d7 by zeyang

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

2.增加线下考试,线下培训描述
parent 507f654d
......@@ -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.trainPrice}}</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.examinationType == 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 ? '线上考试' : certificateInfo.examinationType == 2 ? '线下考试' : '/'}}</text></view>
<view class="liBox"><text>及格分数:</text><text>{{certificateInfo.passScore}}</text></view>
</view>
<view class="eqrocdeContent" v-if="certificateInfo.wechatCodeUrl">
......
......@@ -51,6 +51,7 @@
</view>
</view>
</view>
<view class="describeLabel">晋升机制:当事业伙伴成功邀请加盟人数超过10人时,经过人工审核通过后,即可成功晋升为工作室。</view>
<!-- <view class="liBox" v-if="isCross== true">
<text>所属组织名称:</text>
<text>
......@@ -140,8 +141,14 @@
<script>
import api from "@/api/api"
import common from '../../common/common';
import {hshare} from '@/util/fiveshare';
import {baseURL,apiURL,cffpURL} from "@/environments/environment";
import {
hshare
} from '@/util/fiveshare';
import {
baseURL,
apiURL,
cffpURL
} from "@/environments/environment";
export default {
data() {
return {
......@@ -171,7 +178,7 @@
realName: '',
partnerLevel: '',
invitationCode: '',
shareTipsFlag:false
shareTipsFlag: false
};
},
onLoad(option) {
......@@ -182,7 +189,7 @@
this.invitationCode = dataForm.invitationCode
},
methods: {
goBack(){
goBack() {
uni.navigateBack({
delta: 1
})
......@@ -291,7 +298,8 @@
let data = {
title: '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, //分享链接
imgUrl: `${baseURL}/cffp/static/cffp_logo.jpg`, //图片
}
......@@ -387,6 +395,7 @@
align-items: center;
justify-content: space-around;
padding: 30rpx 60rpx 0;
text {
&.actived {
color: #333;
......@@ -408,6 +417,12 @@
box-sizing: border-box;
position: relative;
.describeLabel {
padding: 20rpx 0;
font-size: 28rpx;
color: #777;
}
.liBox {
border-bottom: 1px solid #F0F0F0;
height: 76rpx;
......@@ -561,8 +576,10 @@
justify-content: flex-end;
z-index: 100000;
background: rgba(0, 0, 0, 0.8);
.guideImgBox {
margin: 20px auto;
uni-image {
width: 25% !important;
position: absolute;
......
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