info.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. # 定义几个常用的选项
  3. $type = array
  4. (
  5. 1 => '未领取',
  6. 2 => '已领取',
  7. 3 => '已使用',
  8. );
  9. $product = Dever::load('journal/api.data');
  10. return array
  11. (
  12. # 表名
  13. 'name' => 'info',
  14. # 显示给用户看的名称
  15. 'lang' => '兑换码列表',
  16. 'menu' => 'journal',
  17. 'order' => 1,
  18. # 数据结构
  19. 'struct' => array
  20. (
  21. 'id' => array
  22. (
  23. 'type' => 'int-11',
  24. 'name' => 'ID',
  25. 'default' => '',
  26. 'desc' => '',
  27. 'match' => 'is_numeric',
  28. 'search' => 'order',
  29. //'list' => true,
  30. ),
  31. 'create_uid' => array
  32. (
  33. 'type' => 'int-11',
  34. 'name' => '创建人',
  35. 'default' => '-1',
  36. 'desc' => '创建人',
  37. 'match' => 'is_numeric',
  38. //'list' => 'Dever::load("code/lib/manage.showUserInfo", "{uid}", "{ldate}")',
  39. ),
  40. 'product_id' => array
  41. (
  42. 'type' => 'int-11',
  43. 'name' => '小刊',
  44. 'default' => '',
  45. 'desc' => '小刊',
  46. 'match' => 'is_numeric',
  47. 'update' => 'select',
  48. 'option' => $product,
  49. 'search' => 'select',
  50. 'list' => true,
  51. ),
  52. 'code' => array
  53. (
  54. 'type' => 'varchar-32',
  55. 'name' => '兑换码',
  56. 'default' => '',
  57. 'desc' => '兑换码',
  58. 'match' => 'is_string',
  59. 'update' => 'text',
  60. //'search' => 'fulltext',
  61. 'list' => true,
  62. ),
  63. 'product_num' => array
  64. (
  65. 'type' => 'int-11',
  66. 'name' => '兑换本数',
  67. 'default' => '1',
  68. 'desc' => '兑换本数',
  69. 'match' => 'option',
  70. 'update' => 'text',
  71. 'search' => 'fulltext',
  72. 'list' => true,
  73. ),
  74. 'type' => array
  75. (
  76. 'type' => 'int-11',
  77. 'name' => '使用状态',
  78. 'default' => '1',
  79. 'desc' => '使用状态',
  80. 'match' => 'is_numeric',
  81. 'option' => $type,
  82. 'search' => 'select',
  83. 'update' => 'select',
  84. 'list' => true,
  85. ),
  86. 'uid' => array
  87. (
  88. 'type' => 'int-11',
  89. 'name' => '用户信息',
  90. 'default' => '0',
  91. 'desc' => '用户信息',
  92. 'match' => 'is_numeric',
  93. //'list' => 'Dever::load("code/lib/manage.showUserInfo", "{uid}", "{ldate}")',
  94. ),
  95. 'state' => array
  96. (
  97. 'type' => 'tinyint-1',
  98. 'name' => '状态',
  99. 'default' => '1',
  100. 'desc' => '请选择状态',
  101. 'match' => 'is_numeric',
  102. ),
  103. 'ldate' => array
  104. (
  105. 'type' => 'int-11',
  106. 'name' => '领取时间',
  107. 'match' => 'option',
  108. 'default' => '',
  109. 'desc' => '',
  110. 'search' => 'date',
  111. ),
  112. 'cdate' => array
  113. (
  114. 'type' => 'int-11',
  115. 'name' => '生成时间',
  116. 'match' => array('is_numeric', time()),
  117. 'desc' => '',
  118. # 只有insert时才生效
  119. 'insert' => true,
  120. //'search' => 'date',
  121. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  122. ),
  123. ),
  124. 'manage' => array
  125. (
  126. 'excel' => true,
  127. 'delete' => false,
  128. 'edit' => false,
  129. 'insert' => false,
  130. # 自定义快捷新增和编辑
  131. 'button' => array
  132. (
  133. '新增兑换码' => array('fast', 1, 'config&where_id=1'),
  134. ),
  135. ),
  136. );