info.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. <?php
  2. $status = array
  3. (
  4. 1 => '可用',
  5. 2 => '禁用',
  6. );
  7. $cate = function()
  8. {
  9. $array = array();
  10. $info = Dever::db('quan/cate')->state();
  11. if($info)
  12. {
  13. $array += $info;
  14. }
  15. return $array;
  16. };
  17. $score = function()
  18. {
  19. $array = array();
  20. $info = Dever::load('score/lib/core')->getScore();
  21. if($info)
  22. {
  23. $array += $info;
  24. }
  25. return $array;
  26. };
  27. $function = array
  28. (
  29. 1 => '购买',
  30. 2 => '使用',
  31. 3 => '持有',
  32. //4 => '邀请',
  33. /*
  34. 5 => '等级',
  35. 6 => '提现',
  36. 11 => '赠送券',
  37. */
  38. );
  39. $buy_condition = array
  40. (
  41. 1 => '直接购买',
  42. 2 => '需要上级购买',
  43. );
  44. $buy_repeat = array
  45. (
  46. 1 => '不可以重复购买',
  47. 2 => '允许重复购买',
  48. );
  49. return array
  50. (
  51. # 表名
  52. 'name' => 'info',
  53. # 显示给用户看的名称
  54. 'lang' => '券管理',
  55. 'order' => 100,
  56. # 数据结构
  57. 'struct' => array
  58. (
  59. 'id' => array
  60. (
  61. 'type' => 'int-11',
  62. 'name' => 'ID',
  63. 'default' => '',
  64. 'desc' => '',
  65. 'match' => 'is_numeric',
  66. 'list' => true,
  67. ),
  68. 'hr1' => array
  69. (
  70. 'name' => '基本设置',
  71. 'class' => '',//本项必须填写
  72. 'attr' => '',
  73. ),
  74. 'name' => array
  75. (
  76. 'type' => 'varchar-80',
  77. 'name' => '券名称',
  78. 'default' => '',
  79. 'desc' => '券名称',
  80. 'match' => 'is_string',
  81. 'update' => 'text',
  82. 'list' => true,
  83. 'search' => 'fulltext',
  84. ),
  85. 'cate_id' => array
  86. (
  87. 'type' => 'int-11',
  88. 'name' => '所属分类',
  89. 'default' => '1',
  90. 'desc' => '所属分类',
  91. 'match' => 'is_numeric',
  92. 'update' => 'select',
  93. 'option' => $cate,
  94. 'search' => 'select',
  95. 'list' => 'Dever::load("quan/cate-one#name", {cate_id})',
  96. ),
  97. 'desc' => array
  98. (
  99. 'type' => 'varchar-500',
  100. 'name' => '券描述-券的描述文字',
  101. 'default' => '',
  102. 'desc' => '券描述',
  103. 'match' => 'option',
  104. 'update' => 'textarea',
  105. ),
  106. 'value' => array
  107. (
  108. 'type' => 'varchar-80',
  109. 'name' => '券面值-面值描述文字',
  110. 'default' => '',
  111. 'desc' => '券面值',
  112. 'match' => 'is_string',
  113. 'update' => 'text',
  114. 'list' => true,
  115. ),
  116. 'icon' => array
  117. (
  118. 'type' => 'varchar-150',
  119. 'name' => '1:1图标-图片尺寸150*150px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  120. 'default' => '',
  121. 'desc' => '图标',
  122. 'match' => 'option',
  123. 'update' => 'image',
  124. 'key' => '1',
  125. 'place' => '150',
  126. //直接上传到云端
  127. //'upload' => 'qiniu',
  128. //上传大数据
  129. //'large' => true,
  130. ),
  131. 'hr2' => array
  132. (
  133. 'name' => '功能设置',
  134. 'class' => '',//本项必须填写
  135. 'attr' => '',
  136. ),
  137. 'function' => array
  138. (
  139. 'type' => 'varchar-30',
  140. 'name' => '功能选择',
  141. 'default' => '1,2',
  142. 'desc' => '功能选择',
  143. 'match' => 'is_string',
  144. 'update' => 'checkbox',
  145. 'option' => $function,
  146. 'control' => 'function',
  147. ),
  148. 'buy_condition' => array
  149. (
  150. 'type' => 'tinyint-1',
  151. 'name' => '[购买]条件',
  152. 'default' => '1',
  153. 'desc' => '购买条件',
  154. 'match' => 'is_numeric',
  155. 'update' => 'radio',
  156. 'option' => $buy_condition,
  157. 'show' => 'function=1',
  158. ),
  159. 'buy_repeat' => array
  160. (
  161. 'type' => 'tinyint-1',
  162. 'name' => '重复[购买]',
  163. 'default' => '1',
  164. 'desc' => '重复购买',
  165. 'match' => 'is_numeric',
  166. 'update' => 'radio',
  167. 'option' => $buy_repeat,
  168. 'show' => 'function=1',
  169. ),
  170. 'buy_set' => array
  171. (
  172. 'type' => 'text-1000',
  173. 'name' => '[购买]积分设置',
  174. 'default' => '',
  175. 'desc' => '购买积分设置',
  176. 'match' => 'is_string',
  177. 'show' => 'function=1',
  178. 'update' => array
  179. (
  180. array
  181. (
  182. 'col' => 'score_id',
  183. 'name' => '选择积分',
  184. 'default' => '1',
  185. 'desc' => '选择积分',
  186. 'match' => 'is_numeric',
  187. 'update' => 'select',
  188. 'option' => $score,
  189. ),
  190. array
  191. (
  192. 'col' => 'score_num',
  193. 'name' => '所需积分的数量',
  194. 'default' => '0',
  195. 'desc' => '所需积分的数量',
  196. 'match' => 'option',
  197. 'update' => 'text',
  198. ),
  199. ),
  200. ),
  201. 'use_qtime' => array
  202. (
  203. 'type' => 'int-11',
  204. 'name' => '[使用]有效期-直接填写天数即可,如有效期为10天,直接填写10',
  205. 'default' => '',
  206. 'desc' => '有效期',
  207. 'match' => 'option',
  208. 'update' => 'text',
  209. 'show' => 'function=2',
  210. ),
  211. 'use_qdate' => array
  212. (
  213. 'type' => 'int-11',
  214. 'name' => '[使用]截止时间-选择当前券的截止时间,如果有效期和截止时间都填写了,以截止时间为准',
  215. 'default' => '',
  216. 'desc' => '截止时间',
  217. 'match' => 'option',
  218. 'update' => 'date',
  219. 'callback' => 'maketime',
  220. 'show' => 'function=2',
  221. ),
  222. 'use_max' => array
  223. (
  224. 'type' => 'text-1000',
  225. 'name' => '[使用]满减积分',
  226. 'default' => '',
  227. 'desc' => '满减积分设置',
  228. 'match' => 'is_string',
  229. 'show' => 'function=2',
  230. 'update' => array
  231. (
  232. array
  233. (
  234. 'col' => 'score_id',
  235. 'name' => '选择积分',
  236. 'default' => '1',
  237. 'desc' => '选择积分',
  238. 'match' => 'is_numeric',
  239. 'update' => 'select',
  240. 'option' => $score,
  241. ),
  242. array
  243. (
  244. 'col' => 'score_total',
  245. 'name' => '满减积分的总额-如满100减20,则填写100即可',
  246. 'default' => '0',
  247. 'desc' => '满减积分的总额',
  248. 'match' => 'option',
  249. 'update' => 'text',
  250. ),
  251. array
  252. (
  253. 'col' => 'score_num',
  254. 'name' => '满减积分的数量-如满100减20,则填写20即可',
  255. 'default' => '0',
  256. 'desc' => '满减积分的数量',
  257. 'match' => 'option',
  258. 'update' => 'text',
  259. ),
  260. ),
  261. ),
  262. 'use_give' => array
  263. (
  264. 'type' => 'text-1000',
  265. 'name' => '[使用]赠送积分',
  266. 'default' => '',
  267. 'desc' => '赠送积分设置',
  268. 'match' => 'is_string',
  269. 'show' => 'function=2',
  270. 'update' => array
  271. (
  272. array
  273. (
  274. 'col' => 'score_id',
  275. 'name' => '选择积分',
  276. 'default' => '1',
  277. 'desc' => '选择积分',
  278. 'match' => 'is_numeric',
  279. 'update' => 'select',
  280. 'option' => $score,
  281. ),
  282. array
  283. (
  284. 'col' => 'score_num',
  285. 'name' => '赠送积分的数量',
  286. 'default' => '0',
  287. 'desc' => '赠送积分的数量',
  288. 'match' => 'option',
  289. 'update' => 'text',
  290. ),
  291. ),
  292. ),
  293. 'reorder' => array
  294. (
  295. 'type' => 'int-11',
  296. 'name' => '排序(数值越大越靠前)',
  297. 'default' => '1',
  298. 'desc' => '请输入排序',
  299. 'match' => 'option',
  300. //'update' => 'text',
  301. 'search' => 'order',
  302. 'list' => true,
  303. 'order' => 'desc',
  304. 'edit' => true,
  305. ),
  306. 'content' => array
  307. (
  308. 'type' => 'text-255',
  309. 'name' => '内容介绍',
  310. 'default' => '',
  311. 'desc' => '请输入内容',
  312. 'match' => 'is_string',
  313. 'update' => 'editor',
  314. 'key' => '1',
  315. ),
  316. 'status' => array
  317. (
  318. 'type' => 'int-11',
  319. 'name' => '发布状态',
  320. 'default' => '2',
  321. 'desc' => '发布状态',
  322. 'match' => 'is_numeric',
  323. //'update' => 'select',
  324. 'option' => $status,
  325. 'search' => 'select',
  326. 'list' => true,
  327. 'edit' => true,
  328. ),
  329. 'state' => array
  330. (
  331. 'type' => 'tinyint-1',
  332. 'name' => '状态',
  333. 'default' => '1',
  334. 'desc' => '请选择状态',
  335. 'match' => 'is_numeric',
  336. ),
  337. 'admin' => array
  338. (
  339. 'type' => 'int-11',
  340. 'name' => '操作人',
  341. 'default' => '1',
  342. 'desc' => '操作人',
  343. 'match' => 'is_numeric',
  344. ),
  345. 'udate' => array
  346. (
  347. 'type' => 'int-11',
  348. 'name' => '更新时间',
  349. 'match' => array('is_numeric', time()),
  350. 'desc' => '',
  351. ),
  352. 'cdate' => array
  353. (
  354. 'type' => 'int-11',
  355. 'name' => '录入时间',
  356. 'match' => array('is_numeric', time()),
  357. 'desc' => '',
  358. # 只有insert时才生效
  359. 'insert' => true,
  360. ),
  361. ),
  362. # 索引
  363. 'index' => array
  364. (
  365. 'version' => 1,
  366. 1 => array
  367. (
  368. 'i1' => 'cate_id,reorder',
  369. )
  370. ),
  371. # 管理功能
  372. 'manage' => array
  373. (
  374. ),
  375. # request 请求接口定义
  376. 'request' => array
  377. (
  378. 'search' => array
  379. (
  380. # 匹配的正则或函数 选填项
  381. 'option' => array
  382. (
  383. 'ids' => array('yes-id', 'in'),
  384. 'cate_id' => 'yes',
  385. 'name' => array('yes', 'like'),
  386. 'id' => 'yes',
  387. 'state' => 1,
  388. ),
  389. 'type' => 'all',
  390. 'order' => array('reorder' => 'desc', 'pdate' => 'desc'),
  391. 'limit' => '0,1000',
  392. 'col' => 'name as name, id, id as value, "" as selected, "" as disabled|id',
  393. ),
  394. ),
  395. );