statistics.wxml 2.4 KB
Newer Older
D
devil 已提交
1 2 3 4 5 6 7
<!-- 推广客户 -->
<view class="container user-container bg-white">
  <view class="title">推广客户</view>
  <view class="base-content oh tc">
    <view class="item fl">
      <view class="name cr-666">已推广用户总数</view>
      <view class="value single-text">
D
devil 已提交
8
        <text class="golden">{{user_total.user_count || 0}}</text>
D
devil 已提交
9 10 11 12 13 14
        <text class="cr-888">人</text>
      </view>
    </view>
    <view class="item fl">
      <view class="name cr-666">已推广用户总数</view>
      <view class="value single-text">
D
devil 已提交
15
        <text class="green">{{user_total.valid_user_count || 0}}</text>
D
devil 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28
        <text class="cr-888">人</text>
      </view>
    </view>
  </view>
</view>

<!-- 返利概况 -->
<view class="container profit-container bg-white spacing-mt">
  <view class="title">返利概况</view>
  <view class="base-content oh tc">
    <view class="item fl">
      <view class="name cr-666">返佣总金额</view>
      <view class="value single-text">
D
devil 已提交
29
        <text class="golden">¥{{user_profit_total_price || '0.00'}}</text>
D
devil 已提交
30 31 32 33 34
      </view>
    </view>
    <view class="item fl">
      <view class="name cr-666">待结算金额</view>
      <view class="value single-text">
D
devil 已提交
35
        <text class="yellow">¥{{user_profit_stay_price || '0.00'}}</text>
D
devil 已提交
36 37 38 39 40
      </view>
    </view>
    <view class="item fl">
      <view class="name cr-666">已结算金额</view>
      <view class="value single-text">
D
devil 已提交
41
        <text class="green">¥{{user_profit_already_price || '0.00'}}</text>
D
devil 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
      </view>
    </view>
  </view>
</view>

<!-- 近15日收益走势 -->
<view class="container chart-container bg-white oh spacing-mt">
  <view class="title">近15日收益走势</view>
  <component-ec-canvas wx:if="{{(profit_data || null) != null}}" canvas-id="profit-chart" ec="{{ profit_chart }}"></component-ec-canvas>
  <view wx:else class="cr-888 tc chart-not-data">{{data_list_loding_msg || '暂无数据'}}</view>
</view>

<!-- 近15日推广用户数 -->
<view class="container chart-container bg-white oh spacing-mt">
  <view class="title">近15日推广用户数</view>
  <component-ec-canvas wx:if="{{(user_data || null) != null}}" canvas-id="user-chart" ec="{{ user_chart }}"></component-ec-canvas>
  <view wx:else class="cr-888 tc chart-not-data">{{data_list_loding_msg || '暂无数据'}}</view>
</view>

<import src="/pages/common/bottom_line.wxml" />
D
devil 已提交
62
<template is="bottom_line" data="{{status: true}}"></template>