rule.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <?php
  2. $config = function()
  3. {
  4. $array = array();
  5. $info = Dever::db('score/config')->state();
  6. if($info)
  7. {
  8. $array += $info;
  9. }
  10. return $array;
  11. };
  12. $action = function()
  13. {
  14. $array = array();
  15. $info = Dever::db('score/action')->state();
  16. if($info)
  17. {
  18. $array += $info;
  19. }
  20. return $array;
  21. };
  22. $upper = array
  23. (
  24. 1 => '无上限',
  25. 2 => '有上限',
  26. );
  27. $upper_type = array
  28. (
  29. 1 => '按自然天-每天0点重置',
  30. 2 => '按小时',
  31. 3 => '永久',
  32. );
  33. $rebate_type = array
  34. (
  35. 1 => '无返利',
  36. 2 => '百分比',
  37. 3 => '数值',
  38. );
  39. $rebate_config = function()
  40. {
  41. $array = array
  42. (
  43. -1 => array
  44. (
  45. 'id' => -1,
  46. 'name' => '当前积分',
  47. ),
  48. );
  49. $info = Dever::db('score/config')->state();
  50. if($info)
  51. {
  52. $array += $info;
  53. }
  54. return $array;
  55. };
  56. return array
  57. (
  58. # 表名
  59. 'name' => 'rule',
  60. # 显示给用户看的名称
  61. 'lang' => '积分规则设置',
  62. 'order' => 10,
  63. 'menu' => false,
  64. # 数据结构
  65. 'struct' => array
  66. (
  67. 'id' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => 'ID',
  71. 'default' => '',
  72. 'desc' => '',
  73. 'match' => 'is_numeric',
  74. ),
  75. 'config_id' => array
  76. (
  77. 'type' => 'int-11',
  78. 'name' => '积分名称',
  79. 'default' => '1',
  80. 'desc' => '积分名称',
  81. 'match' => 'is_numeric',
  82. 'update' => 'select',
  83. 'option' => $config,
  84. 'search' => 'select',
  85. 'list' => true,
  86. 'value' => Dever::input('search_option_config_id')
  87. ),
  88. 'action_id' => array
  89. (
  90. 'type' => 'int-11',
  91. 'name' => '所属行为',
  92. 'default' => '1',
  93. 'desc' => '所属行为',
  94. 'match' => 'is_numeric',
  95. 'update' => 'select',
  96. 'option' => $action,
  97. 'search' => 'select',
  98. 'list' => true,
  99. ),
  100. 'num' => array
  101. (
  102. 'type' => 'varchar-80',
  103. 'name' => '增加积分数-如果为负数,则是减少积分',
  104. 'default' => '',
  105. 'desc' => '增加积分数',
  106. 'match' => 'option',
  107. 'update' => 'textarea',
  108. 'list' => true,
  109. ),
  110. 'num' => array
  111. (
  112. 'type' => 'varchar-80',
  113. 'name' => '增加积分数-如果为负数,则是减少积分',
  114. 'default' => '',
  115. 'desc' => '增加积分数',
  116. 'match' => 'option',
  117. 'update' => 'textarea',
  118. 'list' => true,
  119. ),
  120. 'upper' => array
  121. (
  122. 'type' => 'int-11',
  123. 'name' => '是否有上限限制',
  124. 'default' => '1',
  125. 'desc' => '是否有上限限制',
  126. 'match' => 'is_numeric',
  127. 'update' => 'select',
  128. 'option' => $upper,
  129. 'search' => 'select',
  130. 'control' => 'upper',
  131. ),
  132. 'upper_type' => array
  133. (
  134. 'type' => 'int-11',
  135. 'name' => '上限限制类型',
  136. 'default' => '1',
  137. 'desc' => '上限限制类型',
  138. 'match' => 'is_numeric',
  139. 'update' => 'select',
  140. 'option' => $upper_type,
  141. 'show' => 'upper=2',
  142. 'control' => 'upper_type',
  143. ),
  144. 'upper_time' => array
  145. (
  146. 'type' => 'int-11',
  147. 'name' => '间隔小时数',
  148. 'default' => '12',
  149. 'desc' => '间隔小时数',
  150. 'match' => 'option',
  151. 'update' => 'text',
  152. 'show' => 'upper_type=2'
  153. ),
  154. 'upper_limit' => array
  155. (
  156. 'type' => 'int-11',
  157. 'name' => '上限限制次数-小于1则不限制',
  158. 'default' => '2',
  159. 'desc' => '上限限制次数',
  160. 'match' => 'option',
  161. 'update' => 'text',
  162. 'show' => 'upper=2'
  163. ),
  164. 'rebate_type' => array
  165. (
  166. 'type' => 'tinyint-1',
  167. 'name' => '返利设置',
  168. 'default' => '1',
  169. 'desc' => '返利设置',
  170. 'match' => 'option',
  171. 'update' => 'radio',
  172. 'option' => $rebate_type,
  173. 'list' => true,
  174. 'search' => 'select',
  175. 'control' => 'rebate_type',
  176. ),
  177. 'rebate_config_id' => array
  178. (
  179. 'type' => 'int-11',
  180. 'name' => '返利积分名称',
  181. 'default' => '-1',
  182. 'desc' => '返利积分名称',
  183. 'match' => 'is_numeric',
  184. 'update' => 'select',
  185. 'option' => $rebate_config,
  186. 'search' => 'select',
  187. 'list' => true,
  188. 'show' => 'rebate_type=2,3',
  189. ),
  190. 'rebate_value' => array
  191. (
  192. 'type' => 'varchar-500',
  193. 'name' => '返利积分数-如果是百分比类型,这里如果填的是10,那就是当前获得积分数的10%。直接填写数字就是当前用户的上级(1级)返利,支持多层层级设置,1:20,2:30 就是1级202级30,同时也支持0级',
  194. 'default' => '',
  195. 'desc' => '返利积分数',
  196. 'match' => 'is_string',
  197. 'update' => 'textarea',
  198. 'list' => true,
  199. 'show' => 'rebate_type=2,3',
  200. ),
  201. 'state' => array
  202. (
  203. 'type' => 'tinyint-1',
  204. 'name' => '状态',
  205. 'default' => '1',
  206. 'desc' => '请选择状态',
  207. 'match' => 'is_numeric',
  208. ),
  209. 'cdate' => array
  210. (
  211. 'type' => 'int-11',
  212. 'name' => '录入时间',
  213. 'match' => array('is_numeric', time()),
  214. 'desc' => '',
  215. # 只有insert时才生效
  216. 'insert' => true,
  217. ),
  218. ),
  219. 'manage' => array
  220. (
  221. ),
  222. );