|
@@ -1,176 +1,196 @@
|
|
|
-<?php
|
|
|
-
|
|
|
-$config = array
|
|
|
-(
|
|
|
-
|
|
|
- 'name' => 'user_buy_stat',
|
|
|
-
|
|
|
- 'lang' => '用户排名统计',
|
|
|
- 'order' => -1,
|
|
|
-
|
|
|
-
|
|
|
- 'struct' => array
|
|
|
- (
|
|
|
- 'id' => array
|
|
|
- (
|
|
|
- 'type' => 'int-11',
|
|
|
- 'name' => 'ID',
|
|
|
- 'default' => '',
|
|
|
- 'desc' => '',
|
|
|
- 'match' => 'is_numeric',
|
|
|
-
|
|
|
- ),
|
|
|
-
|
|
|
- 'day' => array
|
|
|
- (
|
|
|
- 'type' => 'int-11',
|
|
|
- 'name' => '日期',
|
|
|
- 'default' => '',
|
|
|
- 'match' => 'is_numeric',
|
|
|
- 'desc' => '',
|
|
|
- 'search' => 'sday',
|
|
|
- 'search_buttons' => array
|
|
|
- (
|
|
|
- 'sum' => 'num,cash',
|
|
|
- 'option' => array(
|
|
|
- 'day' => '按天',
|
|
|
- 'week' => '按周',
|
|
|
- 'month' => '按月',
|
|
|
- ),
|
|
|
- 'group' => 'uid',
|
|
|
- ),
|
|
|
- 'order' => 'desc',
|
|
|
-
|
|
|
- ),
|
|
|
-
|
|
|
- 'uid' => array
|
|
|
- (
|
|
|
- 'type' => 'int-11',
|
|
|
- 'name' => '用户名',
|
|
|
- 'default' => '',
|
|
|
- 'desc' => '用户名',
|
|
|
- 'match' => 'is_numeric',
|
|
|
- 'search' => 'select',
|
|
|
- 'update' => 'hidden',
|
|
|
- 'search' => 'hidden',
|
|
|
- 'search' => array
|
|
|
- (
|
|
|
- 'api' => 'passport/user-like',
|
|
|
- 'col' => 'username',
|
|
|
- 'result' => 'id',
|
|
|
- ),
|
|
|
- 'list' => 'Dever::load("passport/user-one#username", {uid})',
|
|
|
- ),
|
|
|
-
|
|
|
- 'area' => array
|
|
|
- (
|
|
|
- 'type' => 'varchar-500',
|
|
|
- 'name' => '客户所在城市',
|
|
|
- 'default' => '',
|
|
|
- 'desc' => '客户所在城市',
|
|
|
- 'match' => 'option',
|
|
|
- 'search' => 'linkage',
|
|
|
- 'update' => 'linkage',
|
|
|
- 'option' => Dever::url('api.get', 'area'),
|
|
|
- 'list' => 'Dever::load("area/api.string", "{area}")',
|
|
|
- ),
|
|
|
-
|
|
|
- 'wechat' => array
|
|
|
- (
|
|
|
- 'type' => 'varchar-100',
|
|
|
- 'name' => '微信号',
|
|
|
- 'default' => '0',
|
|
|
- 'desc' => '微信号',
|
|
|
- 'match' => 'is_string',
|
|
|
- 'list' => true,
|
|
|
- ),
|
|
|
-
|
|
|
- 'mobile' => array
|
|
|
- (
|
|
|
- 'type' => 'varchar-32',
|
|
|
- 'name' => '手机号',
|
|
|
- 'default' => '0',
|
|
|
- 'desc' => '手机号',
|
|
|
- 'match' => 'is_string',
|
|
|
- 'list' => true,
|
|
|
- ),
|
|
|
-
|
|
|
- 'num' => array
|
|
|
- (
|
|
|
- 'type' => 'int-11',
|
|
|
- 'name' => '数量',
|
|
|
- 'default' => '0',
|
|
|
- 'desc' => '数量',
|
|
|
- 'match' => 'is_numeric',
|
|
|
- 'search' => 'order',
|
|
|
- 'list' => true,
|
|
|
- ),
|
|
|
-
|
|
|
- 'cash' => array
|
|
|
- (
|
|
|
- 'type' => 'varchar-100',
|
|
|
- 'name' => '金额',
|
|
|
- 'default' => '0',
|
|
|
- 'desc' => '金额',
|
|
|
- 'match' => 'is_string',
|
|
|
- 'search' => 'order',
|
|
|
- 'list' => true,
|
|
|
- ),
|
|
|
-
|
|
|
- 'state' => array
|
|
|
- (
|
|
|
- 'type' => 'tinyint-1',
|
|
|
- 'name' => '数据状态',
|
|
|
- 'default' => '1',
|
|
|
- 'desc' => '请选择状态',
|
|
|
- 'match' => 'is_numeric',
|
|
|
- ),
|
|
|
-
|
|
|
- 'cdate' => array
|
|
|
- (
|
|
|
- 'type' => 'int-11',
|
|
|
- 'name' => '发布时间',
|
|
|
- 'match' => array('is_numeric', time()),
|
|
|
- 'desc' => '',
|
|
|
-
|
|
|
- 'insert' => true,
|
|
|
-
|
|
|
-
|
|
|
- ),
|
|
|
- ),
|
|
|
-
|
|
|
- 'manage' => array
|
|
|
- (
|
|
|
- 'insert' => false,
|
|
|
- 'edit' => false,
|
|
|
- 'delete' => false,
|
|
|
- 'num' => false,
|
|
|
- 'excel' => true,
|
|
|
- ),
|
|
|
-
|
|
|
-
|
|
|
- 'request' => array
|
|
|
- (
|
|
|
- 'list' => array
|
|
|
- (
|
|
|
-
|
|
|
- 'option' => array
|
|
|
- (
|
|
|
- 'uid' => 'yes',
|
|
|
- 'area' => array('yes', 'like'),
|
|
|
- 'wechat' => array('yes', 'like'),
|
|
|
- 'mobile' => array('yes', 'like'),
|
|
|
- 'start_day' => array('yes-day', '>='),
|
|
|
- 'end_day' => array('yes-day', '<='),
|
|
|
- 'state' => 1,
|
|
|
- ),
|
|
|
- 'type' => 'all',
|
|
|
- 'order' => array('day' => 'desc', 'cdate' => 'desc'),
|
|
|
- 'page' => array(20, 'list'),
|
|
|
- 'group' => 'uid',
|
|
|
- 'col' => '*,sum(cash) as cash, sum(num) as num',
|
|
|
- ),
|
|
|
- ),
|
|
|
-);
|
|
|
-
|
|
|
+<?php
|
|
|
+
|
|
|
+$config = array
|
|
|
+(
|
|
|
+
|
|
|
+ 'name' => 'user_rank_stat',
|
|
|
+
|
|
|
+ 'lang' => '用户排名统计',
|
|
|
+ 'order' => -13,
|
|
|
+
|
|
|
+
|
|
|
+ 'struct' => array
|
|
|
+ (
|
|
|
+ 'id' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => 'ID',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'day' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '日期',
|
|
|
+ 'default' => '',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ 'desc' => '',
|
|
|
+ 'search' => 'day',
|
|
|
+ 'search_button' => array
|
|
|
+ (
|
|
|
+ 'sum' => 'num,cash',
|
|
|
+ 'option' => array(
|
|
|
+ 'day' => '按天',
|
|
|
+ 'week' => '按周',
|
|
|
+ 'month' => '按月',
|
|
|
+ ),
|
|
|
+ 'group' => 'day',
|
|
|
+ ),
|
|
|
+ 'order' => 'desc',
|
|
|
+ 'list' => 'Dever::showDay("{day}")',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'shop_id' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '门店名称',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '门店名称',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ 'search' => 'select',
|
|
|
+
|
|
|
+ 'update' => 'hidden',
|
|
|
+ 'search' => 'hidden',
|
|
|
+ 'search' => array
|
|
|
+ (
|
|
|
+ 'api' => 'shop/info-like',
|
|
|
+ 'col' => 'name',
|
|
|
+ 'result' => 'id',
|
|
|
+ ),
|
|
|
+ 'value' => Dever::input('search_option_shop_id'),
|
|
|
+
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'area' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-500',
|
|
|
+ 'name' => '所在街道',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '所在街道',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'search' => 'linkage',
|
|
|
+ 'update' => 'linkage',
|
|
|
+ 'option' => Dever::url('lib/area.get', 'shop'),
|
|
|
+
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'mobile' => array
|
|
|
+ (
|
|
|
+ 'type' => 'bigint-11',
|
|
|
+ 'name' => '客户手机号',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '客户手机号',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ 'list' => true,
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'num' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '数量',
|
|
|
+ 'default' => '0',
|
|
|
+ 'desc' => '数量',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ 'search' => 'order',
|
|
|
+ 'list' => true,
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'cash' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-100',
|
|
|
+ 'name' => '金额',
|
|
|
+ 'default' => '0',
|
|
|
+ 'desc' => '金额',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'search' => 'order',
|
|
|
+ 'list' => 'round({cash}, 2)',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'hb' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-100',
|
|
|
+ 'name' => '环比增长',
|
|
|
+ 'default' => '0',
|
|
|
+ 'desc' => '环比增长',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'update' => 'text',
|
|
|
+ 'list' => 'Dever::load("shop/lib/manage.getUserRankHb", "{num}", "{time}")',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'state' => array
|
|
|
+ (
|
|
|
+ 'type' => 'tinyint-1',
|
|
|
+ 'name' => '数据状态',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '请选择状态',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'cdate' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '发布时间',
|
|
|
+ 'match' => array('is_numeric', time()),
|
|
|
+ 'desc' => '',
|
|
|
+
|
|
|
+ 'insert' => true,
|
|
|
+
|
|
|
+
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'manage' => array
|
|
|
+ (
|
|
|
+ 'insert' => false,
|
|
|
+ 'edit' => false,
|
|
|
+ 'delete' => false,
|
|
|
+ 'num' => false,
|
|
|
+ 'excel' => true,
|
|
|
+ ),
|
|
|
+
|
|
|
+
|
|
|
+ 'request' => array
|
|
|
+ (
|
|
|
+ 'list' => array
|
|
|
+ (
|
|
|
+
|
|
|
+ 'option' => array
|
|
|
+ (
|
|
|
+ 'shop_id' => 'yes',
|
|
|
+ 'mobile' => 'yes',
|
|
|
+ 'area' => array('yes', 'like'),
|
|
|
+ 'start_day' => array('yes-day', '>='),
|
|
|
+ 'end_day' => array('yes-day', '<='),
|
|
|
+ 'state' => 1,
|
|
|
+ ),
|
|
|
+ 'type' => 'all',
|
|
|
+ 'order' => array('time' => 'desc', 'cdate' => 'desc'),
|
|
|
+ 'page' => array(20, 'list'),
|
|
|
+ 'group' => 'day',
|
|
|
+ 'col' => '*,min(day) as time, sum(cash) as cash, sum(num) as num',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'prev' => array
|
|
|
+ (
|
|
|
+
|
|
|
+ 'option' => array
|
|
|
+ (
|
|
|
+ 'day' => array('yes-day', '<'),
|
|
|
+
|
|
|
+
|
|
|
+ 'state' => 1,
|
|
|
+ ),
|
|
|
+ 'order' => array('time' => 'desc', 'id' => 'desc'),
|
|
|
+ 'type' => 'one',
|
|
|
+ 'col' => '*,min(day) as time, sum(cash) as cash, sum(num) as num',
|
|
|
+ 'group' => 'day',
|
|
|
+
|
|
|
+ 'config' => true,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+);
|
|
|
+
|
|
|
return $config;
|