version.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. <?php
  2. $up = array
  3. (
  4. 1 => '是',
  5. 2 => '否',
  6. );
  7. $source_type = array (
  8. 'ios' => 'ios',
  9. 'android' => 'android',
  10. );
  11. $vip = array
  12. (
  13. 1 => '显示',
  14. 2 => '不显示',
  15. );
  16. $button = array
  17. (
  18. 1 => '显示',
  19. 2 => '不显示',
  20. );
  21. $update = array
  22. (
  23. 1 => '显示',
  24. 2 => '不显示',
  25. );
  26. $login = array
  27. (
  28. 1 => '是',
  29. 2 => '否',
  30. );
  31. return array
  32. (
  33. # 表名
  34. 'name' => 'version',
  35. # 显示给用户看的名称
  36. 'lang' => '版本管理',
  37. # 后台菜单排序
  38. 'order' => 9,
  39. # 数据结构
  40. 'struct' => array
  41. (
  42. 'id' => array
  43. (
  44. 'type' => 'int-11',
  45. 'name' => 'ID',
  46. 'default' => '',
  47. 'desc' => '',
  48. 'match' => 'is_numeric',
  49. 'search' => 'order',
  50. //'list' => true,
  51. 'order' => 'desc',
  52. ),
  53. 'source_type' => array
  54. (
  55. 'type' => 'varchar-32',
  56. 'name' => '平台',
  57. 'default' => '1',
  58. 'desc' => '平台',
  59. 'match' => 'is_string',
  60. 'update' => 'select',
  61. 'search' => 'select',
  62. 'option' => $source_type,
  63. 'list' => true,
  64. ),
  65. 'appname' => array
  66. (
  67. 'type' => 'varchar-50',
  68. 'name' => 'app名称',
  69. 'default' => '',
  70. 'desc' => 'app名称',
  71. 'match' => 'is_string',
  72. 'update' => 'text',
  73. //'list' => true,
  74. ),
  75. 'name' => array
  76. (
  77. 'type' => 'varchar-32',
  78. 'name' => '版本名称',
  79. 'default' => '',
  80. 'desc' => '请输入名称',
  81. 'match' => 'is_string',
  82. 'update' => 'text',
  83. 'search' => 'fulltext',
  84. 'list' => true,
  85. ),
  86. 'code' => array
  87. (
  88. 'type' => 'int-11',
  89. 'name' => '版本号-只能填写数字',
  90. 'default' => '',
  91. 'desc' => '版本号',
  92. 'match' => 'is_numeric',
  93. 'update' => 'text',
  94. 'search' => 'fulltext',
  95. 'order' => 'desc',
  96. 'list' => true,
  97. ),
  98. 'desc' => array
  99. (
  100. 'type' => 'varchar-500',
  101. 'name' => '版本描述',
  102. 'default' => '',
  103. 'desc' => '版本描述',
  104. 'match' => 'is_string',
  105. 'update' => 'textarea',
  106. ),
  107. 'up' => array
  108. (
  109. 'type' => 'int-11',
  110. 'name' => '是否强制升级',
  111. 'default' => '2',
  112. 'desc' => '是否强制升级',
  113. 'match' => 'is_numeric',
  114. 'update' => 'select',
  115. 'option' => $up,
  116. ),
  117. 'link' => array
  118. (
  119. 'type' => 'varchar-400',
  120. 'name' => '下载链接',
  121. 'default' => '',
  122. 'desc' => '下载链接',
  123. 'match' => 'is_string',
  124. 'update' => 'text',
  125. ),
  126. 'file' => array
  127. (
  128. 'type' => 'varchar-150',
  129. 'name' => '上传APP文件',
  130. 'default' => '',
  131. 'desc' => '上传APP文件',
  132. 'match' => 'option',
  133. 'update' => 'upload',
  134. 'key' => '7',
  135. 'upload' => 'qiniu',
  136. 'large' => true,
  137. //不覆盖原文件,生成新文件
  138. 'cover' => 2,
  139. ),
  140. 'updates' => array
  141. (
  142. 'type' => 'int-11',
  143. 'name' => '是否显示更新提醒',
  144. 'default' => '2',
  145. 'desc' => '是否显示更新提醒',
  146. 'match' => 'is_numeric',
  147. 'update' => 'radio',
  148. 'option' => $update,
  149. ),
  150. 'login' => array
  151. (
  152. 'type' => 'int-11',
  153. 'name' => '是否强制登录',
  154. 'default' => '2',
  155. 'desc' => '是否强制登录',
  156. 'match' => 'is_numeric',
  157. 'update' => 'radio',
  158. 'option' => $login,
  159. ),
  160. 'vip' => array
  161. (
  162. 'type' => 'int-11',
  163. 'name' => '会员-是否显示会员信息和会员按钮',
  164. 'default' => '2',
  165. 'desc' => '会员',
  166. 'match' => 'is_numeric',
  167. 'update' => 'radio',
  168. 'option' => $vip,
  169. ),
  170. 'button' => array
  171. (
  172. 'type' => 'int-11',
  173. 'name' => '兑换阅读按钮-是否显示兑换阅读按钮',
  174. 'default' => '2',
  175. 'desc' => '兑换阅读按钮',
  176. 'match' => 'is_numeric',
  177. 'update' => 'radio',
  178. 'option' => $button,
  179. ),
  180. 'state' => array
  181. (
  182. 'type' => 'tinyint-1',
  183. 'name' => '状态',
  184. 'default' => '1',
  185. 'desc' => '请选择状态',
  186. 'match' => 'is_numeric',
  187. ),
  188. 'cdate' => array
  189. (
  190. 'type' => 'int-11',
  191. 'name' => '录入时间',
  192. 'match' => array('is_numeric', time()),
  193. 'desc' => '',
  194. # 只有insert时才生效
  195. 'insert' => true,
  196. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  197. ),
  198. ),
  199. 'request' => array
  200. (
  201. 'getOne' => array
  202. (
  203. # 匹配的正则或函数 选填项
  204. 'option' => array
  205. (
  206. 'source_type' => 'yes',
  207. 'code' => 'yes',
  208. 'name' => 'yes',
  209. 'state' => 1,
  210. ),
  211. 'type' => 'one',
  212. 'order' => array('code' => 'desc', 'cdate' => 'desc'),
  213. 'col' => '*',
  214. ),
  215. ),
  216. );