info.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. <?php
  2. $cate = function()
  3. {
  4. $array = array();
  5. $info = Dever::db('task/cate')->state();
  6. if($info)
  7. {
  8. $array += $info;
  9. }
  10. return $array;
  11. };
  12. $level = function()
  13. {
  14. $array = array();
  15. $info = Dever::db('task/level')->state();
  16. if($info)
  17. {
  18. $array += $info;
  19. }
  20. return $array;
  21. };
  22. $company = function()
  23. {
  24. $array = array();
  25. $info = Dever::db('task/company')->state();
  26. if($info)
  27. {
  28. $array += $info;
  29. }
  30. return $array;
  31. };
  32. $demand = array
  33. (
  34. 'username' => '账号名',
  35. 'pic' => '截图',
  36. 'link' => '链接',
  37. 'desc' => '文字说明',
  38. );
  39. $status = array
  40. (
  41. 1 => '进行中',
  42. 2 => '未开始',
  43. 3 => '已结束',
  44. );
  45. return array
  46. (
  47. # 表名
  48. 'name' => 'info',
  49. # 显示给用户看的名称
  50. 'lang' => '任务管理',
  51. 'desc' => '可将lib/cron.task加入到计划任务,建议间隔时间为86400,每天凌晨执行,将自动清理过期的任务',
  52. 'order' => 200,
  53. # 更新后,要把company_id等信息同步给user_task,方便统计
  54. 'sync' => array
  55. (
  56. 'task/user_task' => array
  57. (
  58. # 更新另外一个表的字段 => 本表的字段
  59. 'where' => array('task_id', 'id'),
  60. # 要更新的数据
  61. 'update' => array(
  62. 'company_id' => 'company_id',
  63. 'level_id' => 'level_id',
  64. 'cate_id' => 'cate_id',
  65. ),
  66. # 同步更新的类型,delete为先删再插入,update为先查询是否存在,存在直接更新,不存在则插入, only为仅更新
  67. 'type' => 'only',
  68. )
  69. ),
  70. # 数据结构
  71. 'struct' => array
  72. (
  73. 'id' => array
  74. (
  75. 'type' => 'int-11',
  76. 'name' => 'ID',
  77. 'default' => '',
  78. 'desc' => '',
  79. 'match' => 'is_numeric',
  80. //'search' => 'order',
  81. 'order' => 'desc',
  82. 'list' => true,
  83. ),
  84. 'hr1' => array
  85. (
  86. 'name' => '基本设置',
  87. 'class' => '',//本项必须填写
  88. 'attr' => '',
  89. ),
  90. 'name' => array
  91. (
  92. 'type' => 'varchar-60',
  93. 'name' => '任务信息',
  94. 'default' => '',
  95. 'desc' => '任务信息',
  96. 'match' => 'is_string',
  97. 'update' => 'text',
  98. 'search' => 'fulltext',
  99. //'list' => true,
  100. 'list' => '"标题:{name}<br />时间:".date("Y-m-d", {sdate})."~".date("Y-m-d", {edate})'
  101. ),
  102. 'sdate' => array
  103. (
  104. 'type' => 'int-11',
  105. 'name' => '开始日',
  106. 'match' => 'is_numeric',
  107. 'desc' => '开始时间',
  108. 'update' => 'time',
  109. //'list' => 'date("Y-m-d H:i:s", {sdate})',
  110. 'callback' => 'maketime',
  111. //'list_name' => '时间',
  112. //'list' => 'date("Y-m-d", {sdate})."~".date("Y-m-d", {edate})'
  113. ),
  114. 'edate' => array
  115. (
  116. 'type' => 'int-11',
  117. 'name' => '结束日',
  118. 'match' => 'is_numeric',
  119. 'desc' => '结束日',
  120. 'update' => 'time',
  121. //'list' => 'date("Y-m-d H:i:s", {edate})',
  122. 'callback' => 'maketime',
  123. ),
  124. 'company_id' => array
  125. (
  126. 'type' => 'int-11',
  127. 'name' => '所属商家',
  128. 'default' => '',
  129. 'desc' => '所属商家',
  130. 'match' => 'is_numeric',
  131. 'update' => 'select',
  132. 'search' => 'select',
  133. 'option' => $company,
  134. //'list' => true,
  135. ),
  136. 'level_id' => array
  137. (
  138. 'type' => 'int-11',
  139. 'name' => '任务级别',
  140. 'default' => '',
  141. 'desc' => '任务级别',
  142. 'match' => 'is_numeric',
  143. 'update' => 'select',
  144. 'search' => 'select',
  145. 'option' => $level,
  146. //'list' => true,
  147. ),
  148. 'cate_id' => array
  149. (
  150. 'type' => 'int-11',
  151. 'name' => '任务类别',
  152. 'default' => '',
  153. 'desc' => '任务类别',
  154. 'match' => 'is_numeric',
  155. 'update' => 'radio',
  156. 'search' => 'select',
  157. 'option' => $cate,
  158. //'list' => true,
  159. ),
  160. 'hr2' => array
  161. (
  162. 'name' => '任务限制',
  163. 'class' => '',//本项必须填写
  164. 'attr' => '',
  165. ),
  166. 'num' => array
  167. (
  168. 'type' => 'int-11',
  169. 'name' => '任务领取总人数',
  170. 'default' => '0',
  171. 'match' => '任务领取总人数',
  172. 'match' => 'is_numeric',
  173. 'update' => 'text',
  174. 'list_name' => '统计信息',
  175. 'list' => 'Dever::load("task/lib/manage.task", {id})',
  176. ),
  177. 'cate_num' => array
  178. (
  179. 'type' => 'int-11',
  180. 'name' => '同一类别参与次数',
  181. 'default' => '0',
  182. 'match' => '同一类别参与次数',
  183. 'match' => 'option',
  184. 'update' => 'text',
  185. //'list' => true,
  186. ),
  187. 'company_num' => array
  188. (
  189. 'type' => 'int-11',
  190. 'name' => '同一商家参与次数',
  191. 'default' => '0',
  192. 'match' => '同一商家参与次数',
  193. 'match' => 'option',
  194. 'update' => 'text',
  195. //'list' => true,
  196. ),
  197. 'report_num' => array
  198. (
  199. 'type' => 'int-11',
  200. 'name' => '报告数量上限',
  201. 'default' => '0',
  202. 'match' => '报告数量上限',
  203. 'match' => 'is_numeric',
  204. 'update' => 'text',
  205. //'list' => true,
  206. ),
  207. 'report_user_num' => array
  208. (
  209. 'type' => 'int-11',
  210. 'name' => '人均报告数量',
  211. 'default' => '0',
  212. 'match' => '人均报告数量',
  213. 'match' => 'is_numeric',
  214. 'update' => 'text',
  215. //'list' => true,
  216. ),
  217. 'hr3' => array
  218. (
  219. 'name' => '任务酬劳',
  220. 'class' => '',//本项必须填写
  221. 'attr' => '',
  222. ),
  223. 'score' => array
  224. (
  225. 'type' => 'int-11',
  226. 'name' => '单任务报告酬劳',
  227. 'default' => '0',
  228. 'match' => '单任务报告酬劳',
  229. 'match' => 'is_numeric',
  230. 'update' => 'text',
  231. //'list' => true,
  232. ),
  233. 'group_score' => array
  234. (
  235. 'type' => 'int-11',
  236. 'name' => '下线提成酬劳',
  237. 'default' => '0',
  238. 'match' => '下线提成酬劳',
  239. 'match' => 'is_numeric',
  240. 'update' => 'text',
  241. //'list' => true,
  242. ),
  243. 'hr4' => array
  244. (
  245. 'name' => '其他设置',
  246. 'class' => '',//本项必须填写
  247. 'attr' => '',
  248. ),
  249. 'report_demand' => array
  250. (
  251. 'type' => 'varchar-50',
  252. 'name' => '报告要求',
  253. 'default' => 'username',
  254. 'desc' => '状态',
  255. 'match' => 'option',
  256. 'update' => 'checkbox',
  257. 'option' => $demand,
  258. //'list' => true,
  259. ),
  260. 'content' => array
  261. (
  262. 'type' => 'text-255',
  263. 'name' => '任务说明',
  264. 'default' => '',
  265. 'desc' => '任务说明',
  266. 'match' => 'option',
  267. 'update' => 'editor',
  268. ),
  269. 'status' => array
  270. (
  271. 'type' => 'tinyint-1',
  272. 'name' => '状态',
  273. 'default' => '1',
  274. 'desc' => '状态',
  275. 'match' => 'is_numeric',
  276. 'update' => 'select',
  277. 'option' => $status,
  278. 'search' => 'select',
  279. 'list' => true,
  280. 'edit' => true,
  281. ),
  282. 'reorder' => array
  283. (
  284. 'type' => 'int-11',
  285. 'name' => '排序(数值越大越靠前)',
  286. 'default' => '1',
  287. 'desc' => '请输入排序',
  288. 'match' => 'option',
  289. 'update' => 'text',
  290. 'search' => 'order',
  291. 'list_name' => '排序',
  292. 'list' => true,
  293. 'order' => 'desc',
  294. 'edit' => true,
  295. ),
  296. 'state' => array
  297. (
  298. 'type' => 'tinyint-1',
  299. 'name' => '状态',
  300. 'default' => '1',
  301. 'desc' => '请选择状态',
  302. 'match' => 'is_numeric',
  303. ),
  304. 'cdate' => array
  305. (
  306. 'type' => 'int-11',
  307. 'name' => '录入时间',
  308. 'match' => array('is_numeric', time()),
  309. 'desc' => '',
  310. # 只有insert时才生效
  311. 'insert' => true,
  312. //'search' => 'date',
  313. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  314. ),
  315. ),
  316. 'manage' => array
  317. (
  318. 'list_button' => array
  319. (
  320. 'delete' => array('删除', '', '{status} == 2'),
  321. ),
  322. ),
  323. 'request' => array
  324. (
  325. 'getAll' => array
  326. (
  327. # 匹配的正则或函数 选填项
  328. 'option' => array
  329. (
  330. 'company_id' => 'yes',
  331. 'level_id' => 'yes',
  332. 'cate_id' => 'yes',
  333. 'end' => array('yes-edate', '<'),
  334. 'status' => 1,
  335. 'state' => 1,
  336. ),
  337. 'type' => 'all',
  338. 'order' => array('reorder' => 'desc', 'edate' => 'asc'),
  339. 'page' => array(15, 'list'),
  340. 'col' => '*',
  341. ),
  342. 'gets' => array
  343. (
  344. # 匹配的正则或函数 选填项
  345. 'option' => array
  346. (
  347. 'state' => 1,
  348. ),
  349. 'type' => 'all',
  350. 'order' => array('reorder' => 'desc', 'edate' => 'asc'),
  351. 'col' => '*',
  352. ),
  353. )
  354. );