...
This commit is contained in:
@@ -11,7 +11,8 @@
|
||||
</view>
|
||||
<view class="capacity-block">
|
||||
<view class="capacity-block-title">
|
||||
<view class="title">成员产率({{group.effect}}/{{group.count}})<text</text></view>
|
||||
<view class="title">成员产率({{group.effect}}/{{group.count}})<text< /text>
|
||||
</view>
|
||||
<view class="capacity-block-glf">{{group.capacity}}GLF/h</view>
|
||||
<!-- <view class="more" @click="onInvitation">邀请更多好友</view> -->
|
||||
</view>
|
||||
@@ -68,43 +69,48 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { glz } from '@/apis/interfaces/life.js'
|
||||
import {
|
||||
glz,sign
|
||||
} from '@/apis/interfaces/life.js'
|
||||
import AD from '@/utils/ad.js'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
identityText: '普通用户',
|
||||
baseHour : 0,
|
||||
base : 0,
|
||||
group : {
|
||||
count : 0,
|
||||
effect : 0,
|
||||
baseHour: 0,
|
||||
base: 0,
|
||||
group: {
|
||||
count: 0,
|
||||
effect: 0,
|
||||
capacity: 0,
|
||||
},
|
||||
nickname : '',
|
||||
recommend : {
|
||||
vip : '-',
|
||||
vip_count : '-',
|
||||
novip : '-',
|
||||
novip_count : '-',
|
||||
vip_text : '-',
|
||||
novip_text : '-',
|
||||
nickname: '',
|
||||
recommend: {
|
||||
vip: '-',
|
||||
vip_count: '-',
|
||||
novip: '-',
|
||||
novip_count: '-',
|
||||
vip_text: '-',
|
||||
novip_text: '-',
|
||||
},
|
||||
partner : {
|
||||
vip : '-',
|
||||
vip_count : '-',
|
||||
novip : '-',
|
||||
novip_count : '-',
|
||||
vip_text : '-',
|
||||
novip_text : '-',
|
||||
partner: {
|
||||
vip: '-',
|
||||
vip_count: '-',
|
||||
novip: '-',
|
||||
novip_count: '-',
|
||||
vip_text: '-',
|
||||
novip_text: '-',
|
||||
},
|
||||
build:{},
|
||||
together:{},
|
||||
other:{}
|
||||
build: {},
|
||||
together: {},
|
||||
other: {},
|
||||
can_repeat_sign: false
|
||||
};
|
||||
},
|
||||
created() {
|
||||
uni.showLoading({})
|
||||
glz().then(res => {
|
||||
console.log(res);
|
||||
this.nickname = res.nickname
|
||||
this.identityText = res.identity_text
|
||||
this.baseHour = res.base_hour
|
||||
@@ -115,6 +121,7 @@
|
||||
this.build = res.build
|
||||
this.together = res.together
|
||||
this.other = res.other
|
||||
this.can_repeat_sign = res.can_repeat_sign
|
||||
uni.setNavigationBarTitle({
|
||||
title: res.glz + 'GLF'
|
||||
})
|
||||
@@ -122,22 +129,32 @@
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon : 'none'
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
},
|
||||
onNavigationBarButtonTap() {
|
||||
if (!this.can_repeat_sign) {
|
||||
uni.showModal({
|
||||
title:'温馨提示',
|
||||
content:'重置签到只重新计算24小时时间,所迭代加成的比例不变',
|
||||
confirmColor:'#34CE98',
|
||||
confirmText:'立即重置',
|
||||
cancelColor:'#999',
|
||||
cancelText:'再想想',
|
||||
success: (res) => {
|
||||
if(res.confirm){
|
||||
title: '温馨提示',
|
||||
content: '今日重置签到机会已使用过了,明日再来试试吧~',
|
||||
confirmColor: '#34CE98',
|
||||
confirmText: '知道了',
|
||||
showCancel: false,
|
||||
})
|
||||
} else {
|
||||
uni.showModal({
|
||||
title: '温馨提示',
|
||||
content: '重置签到只重新计算24小时时间,所迭代加成的比例不变',
|
||||
confirmColor: '#34CE98',
|
||||
confirmText: '立即重置',
|
||||
cancelColor: '#999',
|
||||
cancelText: '再想想',
|
||||
success: (res1) => {
|
||||
if (res1.confirm) {
|
||||
console.log('再次签到。。。')
|
||||
this.checkIMEI().then(res => {
|
||||
console.log(res);
|
||||
switch (res) {
|
||||
case 'Permanent':
|
||||
uni.showModal({
|
||||
@@ -155,7 +172,8 @@
|
||||
success: e => {
|
||||
if (e.cancel) {
|
||||
this.checkIMEI().then(IMEI => {
|
||||
if (IMEI === 'Success') {
|
||||
if (IMEI ===
|
||||
'Success') {
|
||||
this.showAd()
|
||||
}
|
||||
})
|
||||
@@ -167,14 +185,48 @@
|
||||
this.showAd()
|
||||
break;
|
||||
}
|
||||
}).catch(err => {
|
||||
console.log(err)
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onInvitation(){
|
||||
this.$Router.push({name: 'Invitation'})
|
||||
showAd() {
|
||||
AD.show({
|
||||
adpid: 1428308887,
|
||||
adType: 'RewardedVideo'
|
||||
}, detail => {
|
||||
if (detail && detail.isEnded) {
|
||||
uni.showLoading({
|
||||
title: '签到中..'
|
||||
})
|
||||
sign().then(res => {
|
||||
uni.showToast({
|
||||
title: '签到成功',
|
||||
icon: 'none'
|
||||
})
|
||||
this.getLife()
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
}
|
||||
}, err => {
|
||||
uni.showToast({
|
||||
title: err.errMsg,
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
},
|
||||
onInvitation() {
|
||||
this.$Router.push({
|
||||
name: 'Invitation'
|
||||
})
|
||||
},
|
||||
// imei权限
|
||||
checkIMEI() {
|
||||
@@ -207,54 +259,63 @@
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.capacity{
|
||||
.capacity {
|
||||
background: $window-color;
|
||||
min-height: 100vh;
|
||||
padding: $padding;
|
||||
box-sizing: border-box;
|
||||
&-hint{
|
||||
|
||||
&-hint {
|
||||
font-size: 26rpx;
|
||||
color: gray;
|
||||
line-height: 40rpx;
|
||||
padding: $padding 0;
|
||||
}
|
||||
&-title{
|
||||
|
||||
&-title {
|
||||
font-size: 38rpx;
|
||||
font-weight: bold;
|
||||
line-height: 60rpx;
|
||||
text{
|
||||
|
||||
text {
|
||||
margin-left: 10rpx;
|
||||
color: $main-color;
|
||||
}
|
||||
}
|
||||
&-sbutitle{
|
||||
|
||||
&-sbutitle {
|
||||
font-size: 26rpx;
|
||||
line-height: 40rpx;
|
||||
}
|
||||
&-block{
|
||||
|
||||
&-block {
|
||||
background: white;
|
||||
margin-top: $margin;
|
||||
border-radius: $radius;
|
||||
padding: $padding;
|
||||
&-glf{
|
||||
|
||||
&-glf {
|
||||
color: $main-color;
|
||||
font-size: 30rpx;
|
||||
// padding-top: 30rpx;
|
||||
}
|
||||
&-title{
|
||||
|
||||
&-title {
|
||||
font-weight: bold;
|
||||
font-size: 34rpx;
|
||||
line-height: 60rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.title{
|
||||
text{
|
||||
|
||||
.title {
|
||||
text {
|
||||
color: $main-color;
|
||||
font-weight: normal;
|
||||
padding-left: 10rpx;
|
||||
}
|
||||
}
|
||||
.more{
|
||||
|
||||
.more {
|
||||
background: $main-color;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
@@ -264,47 +325,56 @@
|
||||
width: 230rpx;
|
||||
text-align: center;
|
||||
}
|
||||
.subtitle{
|
||||
|
||||
.subtitle {
|
||||
font-weight: normal;
|
||||
font-size: 24rpx;
|
||||
color: $main-color;
|
||||
}
|
||||
.nickname{
|
||||
|
||||
.nickname {
|
||||
color: gray;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
}
|
||||
&-text{
|
||||
|
||||
&-text {
|
||||
font-size: 28rpx;
|
||||
color: gray;
|
||||
line-height: 40rpx;
|
||||
padding-top: 30rpx;
|
||||
}
|
||||
&-table{
|
||||
border:solid 1px $border-color;
|
||||
|
||||
&-table {
|
||||
border: solid 1px $border-color;
|
||||
margin-bottom: 20rpx;
|
||||
padding-top: 30rpx;
|
||||
&:last-child{
|
||||
|
||||
&:last-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.header{
|
||||
|
||||
.header {
|
||||
background: $border-color;
|
||||
line-height: 50rpx;
|
||||
padding: 0 15rpx;
|
||||
font-size: 26rpx;
|
||||
color: gray;
|
||||
}
|
||||
.flex{
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
border-top: solid 1rpx $border-color;
|
||||
color: gray;
|
||||
.flex-item{
|
||||
|
||||
.flex-item {
|
||||
width: 50%;
|
||||
box-sizing: border-box;
|
||||
line-height: 50rpx;
|
||||
padding: 0 15rpx;
|
||||
font-size: 24rpx;
|
||||
&:first-child{
|
||||
|
||||
&:first-child {
|
||||
border-right: solid 1rpx $border-color;
|
||||
}
|
||||
}
|
||||
@@ -312,7 +382,8 @@
|
||||
|
||||
}
|
||||
}
|
||||
.pt30{
|
||||
|
||||
.pt30 {
|
||||
padding-top: 30rpx;
|
||||
}
|
||||
}
|
||||
|
||||
2
unpackage/dist/dev/app-plus/app-service.js
vendored
2
unpackage/dist/dev/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
3
unpackage/dist/dev/app-plus/app-view.js
vendored
3
unpackage/dist/dev/app-plus/app-view.js
vendored
@@ -24148,7 +24148,8 @@ var render = function() {
|
||||
"/" +
|
||||
_vm._$g(11, "t0-1") +
|
||||
")"
|
||||
)
|
||||
),
|
||||
_vm._v("< /text>")
|
||||
]
|
||||
),
|
||||
_c(
|
||||
|
||||
Reference in New Issue
Block a user