base.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?php
  2. $home_top_type = array
  3. (
  4. 1 => '显示',
  5. 2 => '不显示',
  6. );
  7. $type = array
  8. (
  9. 1 => '开放中',
  10. 2 => '维护中',
  11. );
  12. $active = array
  13. (
  14. 1 => '显示',
  15. 2 => '不显示',
  16. );
  17. return array
  18. (
  19. # 表名
  20. 'name' => 'base',
  21. # 显示给用户看的名称
  22. 'lang' => '系统配置',
  23. 'order' => 1,
  24. # 数据结构
  25. 'struct' => array
  26. (
  27. 'id' => array
  28. (
  29. 'type' => 'int-11',
  30. 'name' => '平台ID',
  31. 'default' => '',
  32. 'desc' => '',
  33. 'match' => 'is_numeric',
  34. ),
  35. 'name' => array
  36. (
  37. 'type' => 'varchar-32',
  38. 'name' => '系统名称',
  39. 'default' => '',
  40. 'desc' => '请输入系统名称',
  41. 'match' => 'is_string',
  42. 'update' => 'text',
  43. ),
  44. 'phone' => array
  45. (
  46. 'type' => 'varchar-100',
  47. 'name' => '客服电话',
  48. 'default' => '',
  49. 'desc' => '请输入客服电话',
  50. 'match' => 'option',
  51. 'update' => 'text',
  52. ),
  53. 'tax' => array
  54. (
  55. 'type' => 'decimal-11,2',
  56. 'name' => '提现手续费-输入10就是10%',
  57. 'default' => '8',
  58. 'desc' => '提现手续费',
  59. 'match' => 'option',
  60. 'update' => 'text',
  61. ),
  62. 'agreement_sign' => array
  63. (
  64. 'type' => 'varchar-150',
  65. 'name' => '合同盖章图片',
  66. 'default' => '',
  67. 'desc' => '合同盖章图片',
  68. 'match' => 'option',
  69. 'update' => 'image',
  70. 'key' => '1',
  71. 'place' => '150*150',
  72. ),
  73. 'agreement_mobile' => array
  74. (
  75. 'type' => 'varchar-100',
  76. 'name' => '合同代表人电话',
  77. 'default' => '',
  78. 'desc' => '合同代表人电话',
  79. 'match' => 'option',
  80. 'update' => 'text',
  81. ),
  82. 'desc' => array
  83. (
  84. 'type' => 'text-255',
  85. 'name' => '代理加盟介绍',
  86. 'default' => '',
  87. 'desc' => '代理加盟介绍',
  88. 'match' => 'option',
  89. 'update' => 'editor',
  90. 'key' => '1',
  91. ),
  92. 'bank_user' => array
  93. (
  94. 'type' => 'varchar-300',
  95. 'name' => '银行卡开户名称',
  96. 'default' => '',
  97. 'desc' => '银行卡开户名称',
  98. 'match' => 'is_string',
  99. 'update' => 'text',
  100. ),
  101. 'bank_name' => array
  102. (
  103. 'type' => 'varchar-300',
  104. 'name' => '银行卡支行名称',
  105. 'default' => '',
  106. 'desc' => '银行卡支行名称',
  107. 'match' => 'is_string',
  108. 'update' => 'text',
  109. ),
  110. 'bank_card' => array
  111. (
  112. 'type' => 'varchar-300',
  113. 'name' => '银行卡卡号',
  114. 'default' => '',
  115. 'desc' => '银行卡卡号',
  116. 'match' => 'is_string',
  117. 'update' => 'text',
  118. ),
  119. 'type' => array
  120. (
  121. 'type' => 'tinyint-1',
  122. 'name' => '系统是否开放',
  123. 'default' => '1',
  124. 'desc' => '类型',
  125. 'match' => 'is_numeric',
  126. 'option' => $type,
  127. 'update' => 'radio',
  128. 'control' => 'type',
  129. ),
  130. 'type_desc' => array
  131. (
  132. 'type' => 'varchar-2000',
  133. 'name' => '系统维护描述',
  134. 'default' => '',
  135. 'desc' => '系统维护描述',
  136. 'match' => 'is_string',
  137. 'update' => 'textarea',
  138. ),
  139. 'active' => array
  140. (
  141. 'type' => 'int-11',
  142. 'name' => '是否显示活动',
  143. 'default' => '1',
  144. 'desc' => '是否显示活动',
  145. 'match' => 'is_numeric',
  146. 'update' => 'radio',
  147. 'option' => $active,
  148. ),
  149. // 'market_desc' => array
  150. // (
  151. // 'type' => 'text-255',
  152. // 'name' => '提现协议',
  153. // 'default' => '',
  154. // 'desc' => '提现协议',
  155. // 'match' => 'option',
  156. // 'update' => 'editor',
  157. // 'key' => '1',
  158. // ),
  159. 'state' => array
  160. (
  161. 'type' => 'tinyint-1',
  162. 'name' => '状态',
  163. 'default' => '1',
  164. 'desc' => '请选择状态',
  165. 'match' => 'is_numeric',
  166. ),
  167. 'cdate' => array
  168. (
  169. 'type' => 'int-11',
  170. 'name' => '录入时间',
  171. 'match' => array('is_numeric', time()),
  172. 'desc' => '',
  173. # 只有insert时才生效
  174. 'insert' => true,
  175. ),
  176. ),
  177. 'alter' => array
  178. (
  179. 5 => array
  180. (
  181. array('update', 'tax', 'tax', 'decimal-11,2 8 提现手续费'),
  182. ),
  183. 'version' => 5,
  184. ),
  185. 'default' => array
  186. (
  187. 'col' => 'name,cdate',
  188. 'value' => array
  189. (
  190. '"厨人意料",' . time(),
  191. ),
  192. ),
  193. 'manage' => array
  194. (
  195. # 后台管理不要列表页
  196. 'list' => 'update',
  197. ),
  198. );