123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <template>
- <view class="page">
- <view class="topBody">
- <view class="header">
- </view>
- <view class="myinfo">
- <view style="margin-top: 24rpx;" class="numlist">
- <view class="left">
- <view class="num">
- <text>{{myinfo.num_gmb_today}}</text>
- <view class="name">今日获得暗物质</view>
- </view>
- </view>
- <view class="left right">
- <view class="num">
- <text>{{myinfo.num_gmb_all}}</text>
- <view class="name">累计获得暗物质</view>
- </view>
- </view>
- </view>
- <view class="friendList">
- <view class="title">
- <view class="left">
- <text style="font-size: 28rpx;color: #FFFFFF;">日期</text>
- </view>
- <view class="right">
- <text style="font-size: 28rpx;color: #FFFFFF;">暗物质</text>
- </view>
- </view>
- <view class="numlist2">
- <view v-if="nodata" class="empty">
- <view class="bg"></view>
- <text style="margin-top: 40rpx;font-size: 24rpx;color: #999999;">暂无数据</text>
- </view>
- <view v-else class="item" v-for="(item, index) in list" :key="index"
- :style="{ backgroundImage: index % 2 === 1 ? 'url(../../static/w3/listBG1.png)' : 'url(../../static/w3/listBG2.png)' }">
- <view class="info">
- <view class="left">
- <view class="nameList">
- <view class="num">
- <view class="data">{{item.name}}</view>
- </view>
- </view>
- </view>
- <view class="right">
- <view class="txt">
- <text>{{item.type}}{{item.num}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="blankHeight"></view>
- </view>
- <!-- 提示框 -->
- <DialogBox ref="DialogBox"></DialogBox>
- </view>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {
- title: '',
- sel: 1,
- nodata: true,
- myinfo: {},
- list: [],
- X_Info: {
- todayGet: 10,
- historyGet: 199999,
- },
- friendsInfo: [{
- value: 100,
- data: "2023-1-12"
- },
- {
- value: 200,
- data: "2023-1-12"
- },
- {
- value: 100,
- data: "2023-1-12"
- },
- {
- value: 100,
- data: "2023-1-12"
- }
- ]
- }
- },
- onLoad() {
- // setTimeout(function() {
- // uni.setNavigationBarColor({
- // frontColor: '#ffffff',
- // backgroundColor: '#00000000',
- // animation: {
- // duration: 400,
- // timingFunc: 'easeIn'
- // }
- // })
- // }, 200);
- this.loadInfo();
- this.loadData();
- },
- onShow() {},
- methods: {
- onBack() {},
- chkSel() {
- if (this.sel == 1) {
- this.sel = 0;
- } else {
- this.sel = 1;
- }
- },
- loadInfo() {
- console.log({
- uuid: getApp().globalData.uuid,
- skey: getApp().globalData.skey
- });
- uni.request({
- url: this.$apiHost + '/Web/getinfo',
- data: {
- uuid: getApp().globalData.uuid,
- type: 'tuan'
- },
- header: {
- "content-type": "application/json", //自定义请求头信息
- },
- success: (res) => {
- console.log("----:", res.data);
- this.myinfo = res.data;
- },
- complete: (com) => {
- // uni.hideLoading();
- },
- fail: (e) => {
- console.log("----e:", e);
- }
- });
- },
- loadData() {
- console.log({
- uuid: getApp().globalData.uuid,
- skey: getApp().globalData.skey
- });
- uni.request({
- url: this.$apiHost + '/My/recordlist',
- data: {
- uuid: getApp().globalData.uuid,
- type: 'GMB',
- stype: "tuan"
- },
- header: {
- "content-type": "application/json", //自定义请求头信息
- },
- success: (res) => {
- console.log("----:", res.data);
- this.list = res.data.list;
- if (this.list != null && this.list != undefined) {
- this.nodata = false;
- }
- },
- complete: (com) => {
- // uni.hideLoading();
- },
- fail: (e) => {
- console.log("----e:", e);
- }
- });
- },
- }
- }
- </script>
- <style scoped lang="scss">
- @import 'teamProfit.scss';
- </style>
|