version.php 4.8 KB

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