|
@@ -7,64 +7,31 @@
|
|
|
</u-navbar>
|
|
|
<image src="static/jifen-bg.png" mode="aspectFill" class="jinfen-bg"></image>
|
|
|
<view class="top hflex acenter">
|
|
|
- <view class="top-item hflex aend" @click="tojifenlist">
|
|
|
- <text>{{user.bable}}</text>
|
|
|
+ <view class="top-item hflex aend fwrap" @click="tojifenlist">
|
|
|
+ <text>{{user.integral}}</text>
|
|
|
<view class="hflex acenter">
|
|
|
<text class="label">积分余额</text>
|
|
|
- <u-icon name="arrow-right" color="#000000" size="16"></u-icon>
|
|
|
+ <u-icon name="arrow-right" color="#000000" size="12"></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="top-item hflex aend">
|
|
|
- <text>{{user.sum}}</text>
|
|
|
+ <view class="top-item hflex aend fwrap">
|
|
|
+ <text>{{user.integral_sum}}</text>
|
|
|
<text class="label">积分总额</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="box-bg">
|
|
|
<view class="box">
|
|
|
<view class="title">任务列表</view>
|
|
|
- <view class="cell hflex acenter jbetween">
|
|
|
+ <view class="cell hflex acenter jbetween" v-for="(item,index) in list" :key="index">
|
|
|
<image src="static/jifen1.png" mode="aspectFill"></image>
|
|
|
<view class="cell-center vflex">
|
|
|
- <view class="name">完善个人资料</view>
|
|
|
+ <view class="name">{{item.name}}</view>
|
|
|
<view class="center-bottom hflex acenter">
|
|
|
<image src="static/jifen.png" mode="aspectFill"></image>
|
|
|
- <text>积分+{{user.num}}</text>
|
|
|
+ <text>积分+{{item.integral}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="btn">{{ user.is_profile != '1' ? '去完善': '已完善'}}</view>
|
|
|
- </view>
|
|
|
- <view class="cell hflex acenter jbetween">
|
|
|
- <image src="static/jifen2.png" mode="aspectFill"></image>
|
|
|
- <view class="cell-center vflex">
|
|
|
- <view class="name">发布帖子</view>
|
|
|
- <view class="center-bottom hflex acenter">
|
|
|
- <image src="static/jifen.png" mode="aspectFill"></image>
|
|
|
- <text>积分+{{user.num}}</text>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="btn">去完成</view>
|
|
|
- </view>
|
|
|
- <view class="cell hflex acenter jbetween">
|
|
|
- <image src="static/jifen3.png" mode="aspectFill"></image>
|
|
|
- <view class="cell-center vflex">
|
|
|
- <view class="name">开通会员</view>
|
|
|
- <view class="center-bottom hflex acenter">
|
|
|
- <image src="static/jifen.png" mode="aspectFill"></image>
|
|
|
- <text>积分+{{user.num}}</text>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="btn">{{ user.is_vip != '1' ? '去完成': '已完成'}}</view>
|
|
|
- </view>
|
|
|
- <view class="cell hflex acenter jbetween">
|
|
|
- <image src="static/jifen4.png" mode="aspectFill"></image>
|
|
|
- <view class="cell-center vflex">
|
|
|
- <view class="name">邀请好友</view>
|
|
|
- <view class="center-bottom hflex acenter">
|
|
|
- <image src="static/jifen.png" mode="aspectFill"></image>
|
|
|
- <text>积分+{{user.num}}</text>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="btn">去完成</view>
|
|
|
+ <view class="btn" @click="totask(item)">{{ item.status == 'pending' ? '去完成': '领取奖励'}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -72,16 +39,48 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ import $api from '@/static/js/api.js'
|
|
|
export default {
|
|
|
data() {
|
|
|
return{
|
|
|
- user: {}
|
|
|
+ user: {},
|
|
|
+ list: [],
|
|
|
+ page: 1,
|
|
|
+ last_page: 1,
|
|
|
}
|
|
|
},
|
|
|
onLoad() {
|
|
|
this.getuser()
|
|
|
+ this.getlist()
|
|
|
},
|
|
|
methods: {
|
|
|
+ totask(item) {
|
|
|
+ var _this = this
|
|
|
+ if(item.status == 'pending') {
|
|
|
+
|
|
|
+ } else {
|
|
|
+ $api.req({
|
|
|
+ url: 'task/' + item.id +'/receive'
|
|
|
+ }, function(res) {
|
|
|
+ if(res.code == 10000) {
|
|
|
+ uni.$u.toast(res.msg)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getlist() {
|
|
|
+ var _this = this
|
|
|
+ $api.req({
|
|
|
+ url: 'task',
|
|
|
+ data: {
|
|
|
+ is_page: 0,
|
|
|
+ }
|
|
|
+ }, function(res) {
|
|
|
+ if(res.code == 10000) {
|
|
|
+ _this.list = res.data
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
torule() {
|
|
|
uni.navigateTo({
|
|
|
url: '/pageC/xieyi?type=rule'
|
|
@@ -93,12 +92,15 @@
|
|
|
})
|
|
|
},
|
|
|
getuser() {
|
|
|
- this.user = {
|
|
|
- bable: 8725,
|
|
|
- sum: 12445,
|
|
|
- num: 2,
|
|
|
- is_profile: 0
|
|
|
- }
|
|
|
+ var _this = this
|
|
|
+ $api.req({
|
|
|
+ url: 'user/info',
|
|
|
+ method: 'GET'
|
|
|
+ }, function(res) {
|
|
|
+ if(res.code == 10000) {
|
|
|
+ _this.user = res.data
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -201,7 +203,7 @@
|
|
|
font-family: PingFangSC, PingFang SC;
|
|
|
font-weight: 400;
|
|
|
color: #222222;
|
|
|
- padding: 0 10rpx 10rpx 14rpx;
|
|
|
+ // padding: 0 10rpx 10rpx 14rpx;
|
|
|
}
|
|
|
}
|
|
|
}
|