card.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <?php
  2. $status = Dever::config('base')->status;
  3. $method = array
  4. (
  5. 1 => '自提',
  6. 2 => '配送',
  7. 3 => '自提+配送',
  8. );
  9. $type = array
  10. (
  11. 1 => '永久有效',
  12. 2 => '固定天数',
  13. );
  14. $card_type = array
  15. (
  16. 1 => '全数字',
  17. 2 => '全小写',
  18. 3 => '全大写',
  19. 4 => '大小写组合',
  20. 5 => '数字+大小写组合',
  21. );
  22. return array
  23. (
  24. # 表名
  25. 'name' => 'card',
  26. # 显示给用户看的名称
  27. 'lang' => '商品卡配置',
  28. # 后台菜单排序
  29. 'order' => 99,
  30. 'menu' => false,
  31. # 数据结构
  32. 'struct' => array
  33. (
  34. 'id' => array
  35. (
  36. 'type' => 'int-11',
  37. 'name' => 'ID',
  38. 'default' => '',
  39. 'desc' => '',
  40. 'match' => 'is_numeric',
  41. 'search' => 'order',
  42. 'list' => true,
  43. 'order' => 'desc',
  44. ),
  45. 'name' => array
  46. (
  47. 'type' => 'varchar-80',
  48. 'name' => '礼品卡名称',
  49. 'default' => '',
  50. 'desc' => '请输入礼品卡名称',
  51. 'match' => 'is_string',
  52. 'update' => 'text',
  53. 'search' => 'fulltext',
  54. 'list' => true,
  55. ),
  56. 'type' => array
  57. (
  58. 'type' => 'int-11',
  59. 'name' => '礼品卡类型-永久有效的时间为10年,即3650天',
  60. 'default' => '1',
  61. 'desc' => '礼品卡类型',
  62. 'match' => 'is_numeric',
  63. 'update' => 'radio',
  64. 'option' => $type,
  65. 'control' => 'type',
  66. ),
  67. 'day' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '有效天数',
  71. 'default' => '7',
  72. 'desc' => '有效天数',
  73. 'match' => 'is_numeric',
  74. 'update' => 'text',
  75. 'show' => 'type=2',
  76. ),
  77. 'card_type' => array
  78. (
  79. 'type' => 'int-11',
  80. 'name' => '卡号生成规则',
  81. 'default' => '3',
  82. 'desc' => '卡号生成规则',
  83. 'match' => 'is_numeric',
  84. 'update' => 'select',
  85. 'option' => $card_type,
  86. ),
  87. 'card_prefix' => array
  88. (
  89. 'type' => 'varchar-80',
  90. 'name' => '卡号前缀-前缀不占用卡号长度的位数,如卡号长度填写14,卡号前缀为Q,则生成卡号前缀+14位随机数',
  91. 'default' => '',
  92. 'desc' => '卡号前缀',
  93. 'match' => 'option',
  94. 'update' => 'text',
  95. ),
  96. 'card_len' => array
  97. (
  98. 'type' => 'int-11',
  99. 'name' => '卡号长度',
  100. 'default' => '14',
  101. 'desc' => '卡号长度',
  102. 'match' => 'is_numeric',
  103. 'update' => 'text',
  104. ),
  105. 'pwd_type' => array
  106. (
  107. 'type' => 'int-11',
  108. 'name' => '密码生成规则',
  109. 'default' => '3',
  110. 'desc' => '密码生成规则',
  111. 'match' => 'is_numeric',
  112. 'update' => 'select',
  113. 'option' => $card_type,
  114. ),
  115. 'pwd_prefix' => array
  116. (
  117. 'type' => 'varchar-80',
  118. 'name' => '密码前缀',
  119. 'default' => '',
  120. 'desc' => '密码前缀',
  121. 'match' => 'option',
  122. 'update' => 'text',
  123. ),
  124. 'pwd_len' => array
  125. (
  126. 'type' => 'int-11',
  127. 'name' => '密码长度',
  128. 'default' => '8',
  129. 'desc' => '密码长度',
  130. 'match' => 'is_numeric',
  131. 'update' => 'text',
  132. ),
  133. 'method' => array
  134. (
  135. 'type' => 'int-11',
  136. 'name' => '领取方式',
  137. 'default' => '3',
  138. 'desc' => '领取方式',
  139. 'match' => 'is_numeric',
  140. //'update' => 'radio',
  141. 'option' => $method,
  142. //'control' => 'method',
  143. ),
  144. 'goods' => array
  145. (
  146. 'type' => 'text-1000',
  147. 'name' => '商品配置-如果该商品有多种价格,礼品卡只能兑换最低价格的商品',
  148. 'default' => '',
  149. 'desc' => '商品配置',
  150. 'match' => 'is_string',
  151. 'update' => array
  152. (
  153. array
  154. (
  155. 'col' => 'goods_id',
  156. 'name' => '选择商品',
  157. 'default' => '',
  158. 'desc' => '选择商品',
  159. 'match' => 'option',
  160. 'update' => 'select',
  161. 'update_search' => 'goods/lib/manage.search',
  162. ),
  163. array
  164. (
  165. 'col' => 'num',
  166. 'name' => '数量',
  167. 'default' => '1',
  168. 'desc' => '数量',
  169. 'match' => 'is_string',
  170. 'update' => 'text',
  171. ),
  172. ),
  173. ),
  174. 'status' => array
  175. (
  176. 'type' => 'int-11',
  177. 'name' => '状态',
  178. 'default' => '1',
  179. 'desc' => '状态',
  180. 'match' => 'is_numeric',
  181. //'update' => 'select',
  182. 'option' => $status,
  183. 'search' => 'select',
  184. 'list' => true,
  185. 'edit' => true,
  186. ),
  187. 'state' => array
  188. (
  189. 'type' => 'tinyint-1',
  190. 'name' => '状态',
  191. 'default' => '1',
  192. 'desc' => '请选择状态',
  193. 'match' => 'is_numeric',
  194. ),
  195. 'cdate' => array
  196. (
  197. 'type' => 'int-11',
  198. 'name' => '录入时间',
  199. 'match' => array('is_numeric', time()),
  200. 'desc' => '',
  201. # 只有insert时才生效
  202. 'insert' => true,
  203. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  204. ),
  205. ),
  206. 'manage' => array
  207. (
  208. 'list_button' => array
  209. (
  210. 'fast' => array('生成卡密', '"add_card&where_id=1&search_option_card_id={id}"', '{status} == 1'),
  211. 'list1' => array('卡密列表', '"card_code&search_option_card_id={id}&oper_table=card"'),
  212. ),
  213. ),
  214. 'request' => array
  215. (
  216. ),
  217. );