@@ -90,7 +90,7 @@
</view>
<view class="activation" bindtap="jump" data-url="/pages/rankIntro/index?img=https://reader-wx.ai160.com/images/reader/pay/gzRule.png">
<view class="tips">
- <image src="/static/tjg.png" class="tipsImg" />机构合作
+ <image src="/static/fs.png" class="tipsImg" style="height: 34rpx;"/>机构合作
<image class='black' src='/static/black.png'></image>
@@ -7,7 +7,8 @@ Page({
data: {
allIncome: {},
money: '',
- errMsg: ''
+ errMsg: '',
+ activationModal: false,
},
async onShow() {
let allIncome = await getSaleData()
@@ -34,6 +35,9 @@ Page({
})
return
}
+ this.setData({
+ activationModal: true,
+ })
clearMoney() {
console.log('11');
@@ -56,4 +60,9 @@ Page({
url: `/salesperson/pages/${currentTarget.dataset.url}/index`,
+ closeModal() {
+ activationModal: false
+ },
@@ -105,4 +105,59 @@
height: 30rpx;
opacity: 0.6;
+}
+
+.activationModal {
+ position: fixed;
+ z-index: 2;
+ left: 0rpx;
+ top: 0rpx;
+ width: 100vw;
+ height: 100vh;
+ background: rgba(0, 0, 0, 0.7);
+ .box {
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 30%;
+ margin: auto;
+ width: 496rpx;
+ height: 365rpx;
+ background-color: white;
+ border-radius: 20rpx;
+ text-align: center;
+ .sLcon {
+ margin-top: 34rpx;
+ width: 100rpx;
+ height: 100rpx;
+ }
+ .tips1 {
+ margin: 36rpx 0rpx 24rpx;
+ color: #131313;
+ font-weight: bold;
+ font-size: 34rpx;
+ .tips2 {
+ font-size: 30rpx;
+ color: #12C962;
+ .close {
+ padding: 40rpx;
+ width: 54rpx;
+ height: 54rpx;
+ bottom: -140rpx;
@@ -28,4 +28,12 @@
+ <view class="activationModal" wx:if="{{activationModal}}">
+ <view class="box zoomIn">
+ <image src="/static/lan.png" class="sLcon" />
+ <view class="tips1">已发起提现</view>
+ <view class="tips2">预计24小时内到账</view>
+ <image src="/static/lollipop.png" class="close" catchtap="closeModal" />
+ </view>
@@ -88,3 +88,49 @@
+.activationModal .box {
+.activationModal .box .sLcon {
+.activationModal .box .tips1 {
+.activationModal .box .tips2 {
+.activationModal .close {