address.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <?php
  2. $type = array
  3. (
  4. 1 => '普通地址',
  5. 2 => '默认地址',
  6. );
  7. $sex = Dever::db('passport/user')->config['sex'];
  8. $tag = array
  9. (
  10. 1 => '公司',
  11. 2 => '家',
  12. 3 => '学校',
  13. //4 => '其他',
  14. );
  15. return array
  16. (
  17. # 表名
  18. 'name' => 'address',
  19. # 显示给用户看的名称
  20. 'lang' => '用户地址库',
  21. 'end' => array
  22. (
  23. 'insert' => 'passport/lib/manage.updateAddress',
  24. 'update' => 'passport/lib/manage.updateAddress',
  25. ),
  26. 'menu' => false,
  27. # 数据结构
  28. 'struct' => array
  29. (
  30. 'id' => array
  31. (
  32. 'type' => 'int-11',
  33. 'name' => 'ID',
  34. 'default' => '',
  35. 'desc' => '',
  36. 'match' => 'is_numeric',
  37. 'search' => 'order',
  38. 'update' => 'hidden',
  39. //'list' => true,
  40. ),
  41. 'uid' => array
  42. (
  43. 'type' => 'int-11',
  44. 'name' => '用户名',
  45. 'default' => '0',
  46. 'desc' => '请选择用户',
  47. 'match' => 'is_numeric',
  48. 'update' => 'text',
  49. //'search' => 'select',
  50. 'search' => array
  51. (
  52. 'api' => 'passport/user-all',
  53. 'col' => 'username',
  54. 'result' => 'id',
  55. ),
  56. 'list' => '{uid} > 0 ? Dever::load("passport/user-one#username", {uid}) : "匿名用户"',
  57. ),
  58. 'type' => array
  59. (
  60. 'type' => 'tinyint-1',
  61. 'name' => '类型',
  62. 'default' => '2',
  63. 'desc' => '类型',
  64. 'match' => 'is_numeric',
  65. 'option' => $type,
  66. 'update' => 'select',
  67. //'list' => true,
  68. ),
  69. 'contact' => array
  70. (
  71. 'type' => 'varchar-100',
  72. 'name' => '联系人',
  73. 'default' => '',
  74. 'desc' => '联系人',
  75. 'match' => 'option',
  76. 'search' => 'fulltext',
  77. 'update' => 'text',
  78. //'list' => true,
  79. ),
  80. 'sex' => array
  81. (
  82. 'type' => 'tinyint-1',
  83. 'name' => '性别',
  84. 'default' => '3',
  85. 'desc' => '性别',
  86. 'match' => 'is_numeric',
  87. 'option' => $sex,
  88. 'update' => 'radio',
  89. //'list' => true,
  90. ),
  91. 'mobile' => array
  92. (
  93. 'type' => 'varchar-100',
  94. 'name' => '联系电话',
  95. 'default' => '',
  96. 'desc' => '联系电话',
  97. 'match' => 'option',
  98. 'search' => 'fulltext',
  99. 'update' => 'text',
  100. //'list' => true,
  101. ),
  102. 'country' => array
  103. (
  104. 'type' => 'varchar-100',
  105. 'name' => '国家',
  106. 'default' => '',
  107. 'desc' => '国家',
  108. 'match' => 'option',
  109. //'update' => 'text',
  110. ),
  111. 'province' => array
  112. (
  113. 'type' => 'int-11',
  114. 'name' => '省份',
  115. 'default' => '',
  116. 'desc' => '省份',
  117. 'match' => 'option',
  118. //'update' => 'text',
  119. ),
  120. 'city' => array
  121. (
  122. 'type' => 'int-11',
  123. 'name' => '城市',
  124. 'default' => '',
  125. 'desc' => '城市',
  126. 'match' => 'option',
  127. //'update' => 'text',
  128. ),
  129. 'county' => array
  130. (
  131. 'type' => 'int-11',
  132. 'name' => '县区',
  133. 'default' => '',
  134. 'desc' => '县区',
  135. 'match' => 'option',
  136. //'update' => 'text',
  137. ),
  138. 'town' => array
  139. (
  140. 'type' => 'int-11',
  141. 'name' => '街道',
  142. 'default' => '',
  143. 'desc' => '街道',
  144. 'match' => 'option',
  145. //'update' => 'text',
  146. ),
  147. 'area' => array
  148. (
  149. 'type' => 'varchar-800',
  150. 'name' => '收货地址',
  151. 'default' => '',
  152. 'desc' => '收货地址',
  153. 'match' => 'is_string',
  154. 'search' => 'linkage',
  155. 'update' => 'linkage',
  156. 'option' => Dever::url('api.get?level_total=4', 'area'),
  157. 'list' => 'Dever::load("area/api.string", "{area}")',
  158. ),
  159. 'address' => array
  160. (
  161. 'type' => 'varchar-1000',
  162. 'name' => '详细地址',
  163. 'default' => '',
  164. 'desc' => '详细地址',
  165. 'match' => 'option',
  166. //'update' => 'text',
  167. //'list' => true,
  168. ),
  169. 'house_number' => array
  170. (
  171. 'type' => 'varchar-500',
  172. 'name' => '门牌号',
  173. 'default' => '',
  174. 'desc' => '门牌号',
  175. 'match' => 'option',
  176. 'update' => 'text',
  177. //'list' => true,
  178. ),
  179. 'tag' => array
  180. (
  181. 'type' => 'tinyint-1',
  182. 'name' => '标签',
  183. 'default' => '1',
  184. 'desc' => '标签',
  185. 'match' => 'is_numeric',
  186. 'option' => $tag,
  187. 'update' => 'radio',
  188. //'list' => true,
  189. ),
  190. 'state' => array
  191. (
  192. 'type' => 'tinyint-1',
  193. 'name' => '状态',
  194. 'default' => '1',
  195. 'desc' => '请选择状态',
  196. 'match' => 'is_numeric',
  197. ),
  198. 'cdate' => array
  199. (
  200. 'type' => 'int-11',
  201. 'name' => '操作时间',
  202. 'match' => array('is_numeric', time()),
  203. 'desc' => '',
  204. # 只有insert时才生效
  205. //'insert' => true,
  206. 'search' => 'date',
  207. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  208. ),
  209. ),
  210. 'manage' => array
  211. (
  212. ),
  213. 'request' => array
  214. (
  215. 'getList' => array
  216. (
  217. # 匹配的正则或函数 选填项
  218. 'option' => array
  219. (
  220. 'uid' => 'yes',
  221. 'state' => 1,
  222. ),
  223. 'type' => 'all',
  224. 'order' => array('type' => 'desc','id' => 'desc'),
  225. 'page' => array(10, 'list'),
  226. 'col' => '*',
  227. ),
  228. 'updateType' => array
  229. (
  230. 'set' => array
  231. (
  232. 'type' => 'yes',
  233. ),
  234. 'where' => array
  235. (
  236. 'type' => 'yes',
  237. ),
  238. 'type' => 'update',
  239. ),
  240. ),
  241. );