Commit 5a12f033 by kyle

邀请加盟

parent 3856458b
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name" : "CFFP财富中心", "name" : "CFFP财富中心",
"appid" : "__UNI__65C4CDC", "appid" : "__UNI__65C4CDC",
"description" : "", "description" : "",
"versionName" : "1.1.1", "versionName" : "1.1.2",
"versionCode" : "100", "versionCode" : "100",
"transformPx" : false, "transformPx" : false,
/* 5+App特有相关 */ /* 5+App特有相关 */
......
...@@ -30,6 +30,19 @@ ...@@ -30,6 +30,19 @@
<text>所属组织:</text> <text>所属组织:</text>
<text>XXXXXX</text> <text>XXXXXX</text>
</view> </view>
<view class="liBox">
<text>是否跨区邀请:</text>
<view class="isCrossBox">
<view :class="{checked:isCross}">
<i class="circle" @click="isCross=true"></i>
<text></text>
</view>
<view :class="{checked:!isCross}">
<i class="circle" @click="isCross=false"></i>
<text></text>
</view>
</view>
</view>
</view> </view>
<share></share> <share></share>
<button type="primary" plain="true" class="sendInvite" @click="shareToggle()">发出邀请</button> <button type="primary" plain="true" class="sendInvite" @click="shareToggle()">发出邀请</button>
...@@ -54,6 +67,10 @@ ...@@ -54,6 +67,10 @@
<text></text> <text></text>
</view> </view>
<view class="liBox"> <view class="liBox">
<text>是否跨区邀请:</text>
<text></text>
</view>
<view class="liBox">
<text>邀请状态:</text> <text>邀请状态:</text>
<text></text> <text></text>
</view> </view>
...@@ -93,7 +110,8 @@ ...@@ -93,7 +110,8 @@
return { return {
tabType:1, tabType:1,
identityArr:['工作室','事业伙伴'], identityArr:['工作室','事业伙伴'],
applyIdentity:0 applyIdentity:0,
isCross:true
}; };
}, },
methods:{ methods:{
...@@ -115,10 +133,10 @@ ...@@ -115,10 +133,10 @@
provider: "weixin", provider: "weixin",
scene: "WXSceneSession", scene: "WXSceneSession",
type: 0, type: 0,
href: "http://uniapp.dcloud.io/", href: "https://mdev.zuihuibi.cn/cffp/",
title: "uni-app分享", title: "uni-app分享",
summary: "我正在使用HBuilderX开发uni-app,赶紧跟我一起来体验!", summary: "我正在使用HBuilderX开发uni-app,赶紧跟我一起来体验!",
imageUrl: "https://bjetxgzv.cdn.bspapp.com/VKCEYUGU-uni-app-doc/d8590190-4f28-11eb-b680-7980c8a877b8.png", imageUrl: "https://mdev.zuihuibi.cn/cffp/static/cffp_logo.jpg",
success: function (res) { success: function (res) {
console.log("success:" + JSON.stringify(res)); console.log("success:" + JSON.stringify(res));
}, },
...@@ -131,10 +149,10 @@ ...@@ -131,10 +149,10 @@
provider: "weixin", provider: "weixin",
scene: "WXSceneTimeline", scene: "WXSceneTimeline",
type: 0, type: 0,
href: "http://uniapp.dcloud.io/", href: "https://mdev.zuihuibi.cn/cffp/",
title: "uni-app分享", title: "uni-app分享",
summary: "我正在使用HBuilderX开发uni-app,赶紧跟我一起来体验!", summary: "我正在使用HBuilderX开发uni-app,赶紧跟我一起来体验!",
imageUrl: "https://bjetxgzv.cdn.bspapp.com/VKCEYUGU-uni-app-doc/d8590190-4f28-11eb-b680-7980c8a877b8.png", imageUrl: "https://mdev.zuihuibi.cn/cffp/static/cffp_logo.jpg",
success: function (res) { success: function (res) {
console.log("success:" + JSON.stringify(res)); console.log("success:" + JSON.stringify(res));
}, },
...@@ -143,7 +161,8 @@ ...@@ -143,7 +161,8 @@
} }
}); });
} }
} },
} }
} }
...@@ -198,6 +217,45 @@ ...@@ -198,6 +217,45 @@
color: #FF0000; color: #FF0000;
} }
} }
.isCrossBox{
display: flex;
align-items: center;
view{
display: flex;
align-items: center;
&:first-child{
margin-right: 20rpx;
}
.circle{
display: block;
width: 28rpx;
height: 28rpx;
border: 2rpx solid #20269B;
border-radius: 50%;
position: relative;
margin: 4rpx 10rpx 0 10rpx;
}
&.checked{
.circle{
&::before{
position: absolute;
content: '';
width: 20rpx;
height: 20rpx;
border-radius: 50%;
left: 50%;
top: 50%;
background-color: #20269B;
transform: translate(-50%,-50%);
}
}
}
}
}
} }
&.listUl::before{ &.listUl::before{
display: block; display: block;
......
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