stat.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <?php
  2. $info = function()
  3. {
  4. $array = array();
  5. $info = Dever::db('source/info')->state();
  6. if($info)
  7. {
  8. $array += $info;
  9. }
  10. return $array;
  11. };
  12. return array
  13. (
  14. # 表名
  15. 'name' => 'stat',
  16. # 显示给用户看的名称
  17. 'lang' => '渠道统计',
  18. 'order' => 10,
  19. 'menu' => false,
  20. # 数据结构
  21. 'struct' => array
  22. (
  23. 'id' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => 'ID',
  27. 'default' => '',
  28. 'desc' => '',
  29. 'match' => 'is_numeric',
  30. ),
  31. 'uid' => array
  32. (
  33. 'type' => 'int-11',
  34. 'name' => '用户名',
  35. 'default' => '0',
  36. 'desc' => '请选择用户',
  37. 'match' => 'is_numeric',
  38. //'update' => 'select',
  39. //'search' => 'select',
  40. 'search' => array
  41. (
  42. 'api' => 'passport/user-all',
  43. 'col' => 'username',
  44. 'result' => 'id',
  45. ),
  46. 'list' => '{uid} > 0 ? Dever::load("passport/user-one#username", {uid}) : "匿名用户"',
  47. ),
  48. 'info_id' => array
  49. (
  50. 'type' => 'int-11',
  51. 'name' => '渠道',
  52. 'default' => '1',
  53. 'desc' => '渠道',
  54. 'match' => 'is_numeric',
  55. 'update' => 'select',
  56. 'option' => $info,
  57. 'search' => 'select',
  58. 'list' => true,
  59. ),
  60. 'day' => array
  61. (
  62. 'type' => 'int-11',
  63. 'name' => '统计时间',
  64. 'default' => '',
  65. 'desc' => '统计时间',
  66. 'match' => 'is_numeric',
  67. 'update' => 'select',
  68. 'option' => $action,
  69. 'search' => 'select',
  70. 'list' => true,
  71. ),
  72. 'pv' => array
  73. (
  74. 'type' => 'int-11',
  75. 'name' => 'pv数',
  76. 'default' => '',
  77. 'desc' => 'pv数',
  78. 'match' => 'option',
  79. 'update' => 'text',
  80. 'list' => true,
  81. ),
  82. 'uv' => array
  83. (
  84. 'type' => 'int-11',
  85. 'name' => 'uv数',
  86. 'default' => '',
  87. 'desc' => 'uv数',
  88. 'match' => 'option',
  89. 'update' => 'text',
  90. 'list' => true,
  91. ),
  92. 'order' => array
  93. (
  94. 'type' => 'int-11',
  95. 'name' => '下单数',
  96. 'default' => '',
  97. 'desc' => '下单数',
  98. 'match' => 'option',
  99. 'update' => 'text',
  100. 'list' => true,
  101. ),
  102. 'state' => array
  103. (
  104. 'type' => 'tinyint-1',
  105. 'name' => '状态',
  106. 'default' => '1',
  107. 'desc' => '请选择状态',
  108. 'match' => 'is_numeric',
  109. ),
  110. 'cdate' => array
  111. (
  112. 'type' => 'int-11',
  113. 'name' => '录入时间',
  114. 'match' => array('is_numeric', time()),
  115. 'desc' => '',
  116. # 只有insert时才生效
  117. 'insert' => true,
  118. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  119. ),
  120. ),
  121. 'manage' => array
  122. (
  123. 'delete' => false,
  124. 'edit' => false,
  125. 'insert' => false,
  126. ),
  127. # request 请求接口定义
  128. 'request' => array
  129. (
  130. 'getNew' => array
  131. (
  132. # 匹配的正则或函数 选填项
  133. 'option' => array
  134. (
  135. 'config_id' => 'yes',
  136. 'action_id' => 'yes',
  137. 'uid' => 'yes',
  138. 'status' => 'yes',
  139. 'state' => 1,
  140. ),
  141. 'type' => 'one',
  142. 'order' => array('cdate' => 'desc'),
  143. 'col' => '*',
  144. ),
  145. 'getNewTotal' => array
  146. (
  147. # 匹配的正则或函数 选填项
  148. 'option' => array
  149. (
  150. 'config_id' => 'yes',
  151. 'action_id' => 'yes',
  152. 'uid' => 'yes',
  153. 'status' => 'yes',
  154. 'state' => 1,
  155. 'start' => array('yes-cdate', '>='),
  156. 'end' => array('yes-cdate', '<='),
  157. ),
  158. 'type' => 'count',
  159. 'order' => array('cdate' => 'desc'),
  160. 'col' => 'count(1) as total',
  161. ),
  162. )
  163. );