user.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. #1代理商,期权账户,小程序用户,
  3. $type = array
  4. (
  5. 1 => '代理商',
  6. 2 => '期权账户',
  7. 3 => '小程序用户',
  8. 4 => '客服系统用户',
  9. );
  10. return array
  11. (
  12. # 表名
  13. 'name' => 'user',
  14. # 显示给用户看的名称
  15. 'lang' => '客户列表',
  16. # 后台菜单排序
  17. 'order' => 2,
  18. 'menu' => false,
  19. # 数据结构
  20. 'struct' => array
  21. (
  22. 'id' => array
  23. (
  24. 'type' => 'int-11',
  25. 'name' => 'ID',
  26. 'default' => '',
  27. 'desc' => '',
  28. 'match' => 'is_numeric',
  29. 'search' => 'order',
  30. 'list' => true,
  31. 'order' => 'desc',
  32. ),
  33. 'company_id' => array
  34. (
  35. 'type' => 'int-11',
  36. 'name' => '所属公司',
  37. 'default' => '1',
  38. 'desc' => '所属公司',
  39. 'match' => 'is_numeric',
  40. 'update' => 'hidden',
  41. //'search' => $company ? 'select' : false,
  42. //'list' => true,
  43. ),
  44. 'agent_uid' => array
  45. (
  46. 'type' => 'int-11',
  47. 'name' => '代理商姓名/手机号',
  48. 'default' => '-1',
  49. 'desc' => '代理商',
  50. 'match' => 'is_string',
  51. // 'update' => 'text',
  52. // 'search' => array
  53. // (
  54. // 'api' => 'agent/member-getSearch',
  55. // 'col' => 'col',
  56. // 'result' => 'id',
  57. // 'search' => 'mid',
  58. // ),
  59. // 'list_name' => '代理商信息',
  60. // 'list' => 'Dever::load("agent/lib/member.getOne", {mid}, "agent/member", true)',
  61. ),
  62. 'option_uid' => array
  63. (
  64. 'type' => 'int-11',
  65. 'name' => '期权账户/手机号',
  66. 'default' => '-1',
  67. 'desc' => '代理商',
  68. 'match' => 'is_string',
  69. // 'update' => 'text',
  70. // 'search' => array
  71. // (
  72. // 'api' => 'agent/member-getSearch',
  73. // 'col' => 'col',
  74. // 'result' => 'id',
  75. // 'search' => 'mid',
  76. // ),
  77. // 'list_name' => '代理商信息',
  78. // 'list' => 'Dever::load("agent/lib/member.getOne", {mid}, "agent/member", true)',
  79. ),
  80. 'passport_uid' => array
  81. (
  82. 'type' => 'int-11',
  83. 'name' => '小程序姓名/手机号',
  84. 'default' => '-1',
  85. 'desc' => '代理商',
  86. 'match' => 'is_string',
  87. // 'update' => 'text',
  88. // 'search' => array
  89. // (
  90. // 'api' => 'agent/member-getSearch',
  91. // 'col' => 'col',
  92. // 'result' => 'id',
  93. // 'search' => 'mid',
  94. // ),
  95. // 'list_name' => '代理商信息',
  96. // 'list' => 'Dever::load("agent/lib/member.getOne", {mid}, "agent/member", true)',
  97. ),
  98. 'name' => array
  99. (
  100. 'type' => 'varchar-200',
  101. 'name' => '名称',
  102. 'default' => '',
  103. 'desc' => '名称',
  104. 'match' => 'is_string',
  105. 'update' => 'text',
  106. 'search' => 'fulltext',
  107. 'list' => true,
  108. ),
  109. 'mobile' => array
  110. (
  111. 'type' => 'bigint-11',
  112. 'name' => '手机号',
  113. 'default' => '',
  114. 'desc' => '请输入手机号',
  115. 'match' => Dever::rule('mobile'),
  116. 'update' => 'text',
  117. //'search' => 'fulltext',
  118. 'list' => true,
  119. ),
  120. 'idcard' => array
  121. (
  122. 'type' => 'varchar-32',
  123. 'name' => '身份证号码',
  124. 'default' => '',
  125. 'desc' => '身份证号码',
  126. 'match' => Dever::rule('idcard'),
  127. 'update' => 'text',
  128. ),
  129. 'username' => array
  130. (
  131. 'type' => 'varchar-200',
  132. 'name' => '昵称',
  133. 'default' => '',
  134. 'desc' => '昵称',
  135. 'match' => 'is_string',
  136. 'update' => 'text',
  137. 'search' => 'fulltext',
  138. 'list' => true,
  139. ),
  140. 'avatar' => array
  141. (
  142. 'type' => 'varchar-150',
  143. 'name' => '头像',
  144. 'default' => '',
  145. 'desc' => '请选择头像',
  146. 'match' => 'option',
  147. 'update' => 'image',
  148. 'key' => '1',
  149. //'place' => '150',
  150. ),
  151. 'type' => array
  152. (
  153. 'type' => 'tinyint-1',
  154. 'name' => '类型',
  155. 'default' => '1',
  156. 'desc' => '类型',
  157. 'match' => 'is_numeric',
  158. 'update' => 'radio',
  159. 'option' => $type,
  160. // 'search' => 'select',
  161. 'list' => true,
  162. ),
  163. 'reorder' => array
  164. (
  165. 'type' => 'int-11',
  166. 'name' => '排序-数值越大越靠前',
  167. 'default' => '1',
  168. 'desc' => '请输入排序',
  169. 'match' => 'option',
  170. 'update' => 'text',
  171. 'search' => 'order',
  172. 'list' => true,
  173. 'order' => 'desc',
  174. 'edit' => true,
  175. ),
  176. 'state' => array
  177. (
  178. 'type' => 'tinyint-1',
  179. 'name' => '状态',
  180. 'default' => '1',
  181. 'desc' => '请选择状态',
  182. 'match' => 'is_numeric',
  183. ),
  184. 'cdate' => array
  185. (
  186. 'type' => 'int-11',
  187. 'name' => '创建时间',
  188. 'match' => array('is_numeric', time()),
  189. 'desc' => '',
  190. # 只有insert时才生效
  191. 'insert' => true,
  192. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  193. ),
  194. ),
  195. 'manage' => array
  196. (
  197. 'insert' => false,
  198. 'delete' => false,
  199. 'edit' => false,
  200. # 设置公司权限
  201. 'company' => 'company_id',
  202. ),
  203. 'request' => array
  204. (
  205. 'getSearch' => array
  206. (
  207. # 匹配的正则或函数 选填项
  208. 'option' => array
  209. (
  210. 'col' => array('yes-mobile,name', 'like'),
  211. ),
  212. 'type' => 'all',
  213. 'col' => '*|id',
  214. ),
  215. ),
  216. );