city.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <?php
  2. $province = function()
  3. {
  4. $array = array();
  5. $data = Dever::load('area/province-state');
  6. if($data)
  7. {
  8. $array += $data;
  9. }
  10. return $array;
  11. };
  12. $level = function()
  13. {
  14. $array = array
  15. (
  16. 1000 => array
  17. (
  18. 'id' => 1000,
  19. 'name' => '普通城市',
  20. ),
  21. );
  22. $data = Dever::load('area/level-state');
  23. if($data)
  24. {
  25. $array += $data;
  26. }
  27. return $array;
  28. };
  29. $status = array
  30. (
  31. 1 => '未占用',
  32. 2 => '已占用',
  33. );
  34. return array
  35. (
  36. # 表名
  37. 'name' => 'city',
  38. # 显示给用户看的名称
  39. 'lang' => '城市',
  40. # 是否显示在后台菜单
  41. 'order' => 80,
  42. # 数据结构
  43. 'struct' => array
  44. (
  45. 'id' => array
  46. (
  47. 'type' => 'int-11',
  48. 'name' => 'ID',
  49. 'default' => '',
  50. 'desc' => '',
  51. 'match' => 'is_numeric',
  52. 'order' => 'asc',
  53. 'list' => true,
  54. ),
  55. 'name' => array
  56. (
  57. 'type' => 'varchar-150',
  58. 'name' => '城市名称',
  59. 'default' => '',
  60. 'desc' => '城市名称',
  61. 'match' => 'is_string',
  62. 'update' => 'text',
  63. 'search' => 'fulltext',
  64. 'list' => true,
  65. ),
  66. 'pinyin' => array
  67. (
  68. 'type' => 'varchar-300',
  69. 'name' => '拼音',
  70. 'default' => '',
  71. 'desc' => '拼音',
  72. 'match' => 'option',
  73. 'update' => 'text',
  74. 'search' => 'fulltext',
  75. 'list' => true,
  76. ),
  77. 'pinyin_first' => array
  78. (
  79. 'type' => 'varchar-30',
  80. 'name' => '拼音首字母',
  81. 'default' => '',
  82. 'desc' => '拼音首字母',
  83. 'match' => 'option',
  84. 'update' => 'text',
  85. 'search' => 'fulltext',
  86. 'list' => true,
  87. ),
  88. 'province_id' => array
  89. (
  90. 'type' => 'int-11',
  91. 'name' => '省份',
  92. 'default' => '0',
  93. 'desc' => '省份',
  94. 'match' => 'is_numeric',
  95. 'update' => 'select',
  96. 'option' => $province,
  97. 'list' => true,
  98. ),
  99. 'level_id' => array
  100. (
  101. 'type' => 'int-11',
  102. 'name' => '城市等级',
  103. 'default' => '1000',
  104. 'desc' => '城市等级',
  105. 'match' => 'is_numeric',
  106. 'search' => 'select',
  107. 'update' => 'select',
  108. 'option' => $level,
  109. 'list' => true,
  110. 'edit' => true,
  111. ),
  112. 'price' => array
  113. (
  114. 'type' => 'varchar-15',
  115. 'name' => '城市价值-城市代理价格,以万为单位,负数表示继承城市等级里的价值规则',
  116. 'default' => '-1',
  117. 'desc' => '城市价值',
  118. 'match' => 'is_string',
  119. 'update' => 'text',
  120. 'list' => true,
  121. 'edit' => true,
  122. ),
  123. 'reorder' => array
  124. (
  125. 'type' => 'int-11',
  126. 'name' => '排序(数值越大越靠前)',
  127. 'default' => '1',
  128. 'desc' => '请输入排序',
  129. 'match' => 'option',
  130. 'update' => 'text',
  131. 'search' => 'order',
  132. 'list_name' => '排序',
  133. 'list' => true,
  134. 'order' => 'desc',
  135. 'edit' => true,
  136. ),
  137. 'status' => array
  138. (
  139. 'type' => 'tinyint-1',
  140. 'name' => '状态',
  141. 'default' => '1',
  142. 'desc' => '请选择状态',
  143. 'match' => 'is_numeric',
  144. 'list' => true,
  145. 'edit' => true,
  146. 'search' => 'select',
  147. 'option' => $status,
  148. ),
  149. 'state' => array
  150. (
  151. 'type' => 'tinyint-1',
  152. 'name' => '状态',
  153. 'default' => '1',
  154. 'desc' => '请选择状态',
  155. 'match' => 'is_numeric',
  156. ),
  157. 'cdate' => array
  158. (
  159. 'type' => 'int-11',
  160. 'name' => '录入时间',
  161. 'match' => array('is_numeric', time()),
  162. 'desc' => '',
  163. # 只有insert时才生效
  164. 'insert' => true,
  165. 'search' => 'date',
  166. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  167. ),
  168. ),
  169. 'manage' => array
  170. (
  171. 'excel' => array
  172. (
  173. array('数据导出', '城市列表', 'area/lib/manage.outCity'),
  174. ),
  175. ),
  176. 'request' => array
  177. (
  178. 'getAll' => array
  179. (
  180. # 匹配的正则或函数 选填项
  181. 'option' => array
  182. (
  183. 'province_id' => 'yes',
  184. 'level_id' => array('yes', '<'),
  185. 'price' => array('yes', '>'),
  186. 'noid' => array('yes-id', 'not in'),
  187. 'no_level_id' => array('yes-level_id', 'not in'),
  188. 'status' => 'yes',
  189. 'state' => 1,
  190. ),
  191. 'type' => 'all',
  192. 'order' => array('pinyin_first' => 'asc', 'reorder' => 'desc', 'id' => 'asc'),
  193. 'col' => 'id,id as value, name, pinyin, pinyin_first',
  194. ),
  195. 'getData' => array
  196. (
  197. # 匹配的正则或函数 选填项
  198. 'option' => array
  199. (
  200. 'province_id' => 'yes',
  201. 'level_id' => array('yes', '<'),
  202. 'state' => 1,
  203. ),
  204. 'type' => 'all',
  205. 'order' => array('pinyin_first' => 'asc', 'reorder' => 'desc', 'id' => 'asc'),
  206. 'col' => 'id, name, pinyin, pinyin_first|id',
  207. ),
  208. 'getOne' => array
  209. (
  210. # 匹配的正则或函数 选填项
  211. 'option' => array
  212. (
  213. 'name' => array('yes', 'like'),
  214. 'province_id' => 'yes',
  215. 'state' => 1,
  216. ),
  217. 'type' => 'one',
  218. 'col' => '*',
  219. ),
  220. 'getDatas' => array
  221. (
  222. # 匹配的正则或函数 选填项
  223. 'option' => array
  224. (
  225. 'name' => array('yes', 'like'),
  226. 'province_id' => 'yes',
  227. 'state' => 1,
  228. ),
  229. 'type' => 'all',
  230. 'col' => '*',
  231. ),
  232. 'updateLevel' => array
  233. (
  234. 'where' => array
  235. (
  236. 'level_id' => 'yes',
  237. ),
  238. 'set' => array
  239. (
  240. 'level_id' => 'yes',
  241. ),
  242. 'type' => 'update',
  243. ),
  244. 'getLike' => array
  245. (
  246. # 匹配的正则或函数 选填项
  247. 'option' => array
  248. (
  249. 'province_id' => 'yes',
  250. 'name' => array('yes', 'like'),
  251. 'state' => 1,
  252. ),
  253. 'type' => 'one',
  254. 'col' => '*',
  255. ),
  256. )
  257. );