member.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. <?php
  2. $role = function()
  3. {
  4. $array = array();
  5. $data = Dever::load('setting/role-state');
  6. if($data)
  7. {
  8. $array += $data;
  9. }
  10. return $array;
  11. };
  12. $status = array
  13. (
  14. 1 => '申请中',
  15. 2 => '正常',
  16. 3 => '驳回',
  17. 4 => '已删除',
  18. 5 => '已禁用',
  19. );
  20. $type = array
  21. (
  22. 1 => '个人',
  23. 2 => '公司',
  24. );
  25. $level = function()
  26. {
  27. $array = array
  28. (
  29. -1 => array
  30. (
  31. 'id' => -1,
  32. 'name' => '普通',
  33. ),
  34. );
  35. $data = Dever::load('setting/level-state');
  36. if($data)
  37. {
  38. $array += $data;
  39. }
  40. return $array;
  41. };
  42. return array
  43. (
  44. # 表名
  45. 'name' => 'member',
  46. # 显示给用户看的名称
  47. 'lang' => '代理商管理',
  48. 'order' => 100,
  49. 'auto' => 1000000,
  50. 'config_type' => $type,
  51. 'config_status' => $status,
  52. # 数据结构
  53. 'struct' => array
  54. (
  55. 'id' => array
  56. (
  57. 'type' => 'int-11',
  58. 'name' => 'ID',
  59. 'default' => '',
  60. 'desc' => '',
  61. 'match' => 'is_numeric',
  62. 'search' => 'order',
  63. //'list' => true,
  64. ),
  65. 'name' => array
  66. (
  67. 'type' => 'varchar-100',
  68. 'name' => '姓名',
  69. 'default' => '',
  70. 'desc' => '姓名',
  71. 'match' => 'is_string',
  72. 'update' => 'text',
  73. 'search' => 'fulltext',
  74. 'list' => true,
  75. ),
  76. 'rdate' => array
  77. (
  78. 'type' => 'int-11',
  79. 'name' => '认证时间',
  80. 'match' => 'option',
  81. 'default' => '0',
  82. 'desc' => '',
  83. 'update' => 'date',
  84. 'callback' => 'maketime',
  85. 'list' => '{rdate} > 0 ? date("Y-m-d H:i", {rdate}) : "无"',
  86. ),
  87. 'avatar' => array
  88. (
  89. 'type' => 'varchar-150',
  90. 'name' => '头像',
  91. 'default' => '',
  92. 'desc' => '请选择头像',
  93. 'match' => 'option',
  94. 'update' => 'image',
  95. 'key' => '1',
  96. 'place' => '150',
  97. ),
  98. 'mobile' => array
  99. (
  100. 'type' => 'bigint-11',
  101. 'name' => '手机号',
  102. 'default' => '',
  103. 'desc' => '请输入手机号',
  104. 'match' => Dever::rule('mobile'),
  105. 'update' => 'text',
  106. 'search' => 'fulltext',
  107. 'list' => true,
  108. ),
  109. 'password' => array
  110. (
  111. 'type' => 'varchar-50',
  112. 'name' => '密码',
  113. 'default' => '',
  114. 'desc' => '请输入密码',
  115. 'match' => 'option',
  116. 'update' => 'password',
  117. 'callback' => 'sha1',
  118. ),
  119. 'parent_mid' => array
  120. (
  121. 'type' => 'int-11',
  122. 'name' => '邀请人',
  123. 'default' => '-1',
  124. 'desc' => '邀请人',
  125. 'match' => 'is_string',
  126. 'update' => 'text',
  127. 'search' => array
  128. (
  129. 'api' => 'agent/member-select',
  130. 'col' => 'name',
  131. 'result' => 'id',
  132. ),
  133. 'list' => 'Dever::load("agent/member-find#name", {parent_mid})',
  134. ),
  135. 'code' => array
  136. (
  137. 'type' => 'varchar-50',
  138. 'name' => '邀请码',
  139. 'default' => '',
  140. 'desc' => '邀请码',
  141. 'match' => 'option',
  142. //'update' => 'text',
  143. 'list' => 'Dever::load("invite/api.code", {id})',
  144. ),
  145. 'role' => array
  146. (
  147. 'type' => 'int-11',
  148. 'name' => '代理角色',
  149. 'default' => '',
  150. 'desc' => '代理角色',
  151. 'match' => 'is_numeric',
  152. 'search' => 'select',
  153. 'update' => 'checkbox',
  154. 'option' => $role,
  155. 'list' => true,
  156. ),
  157. 'level_id' => array
  158. (
  159. 'type' => 'int-11',
  160. 'name' => '代理商等级',
  161. 'default' => '-1',
  162. 'desc' => '代理商等级',
  163. 'match' => 'is_numeric',
  164. 'search' => 'select',
  165. 'update' => 'select',
  166. 'option' => $level,
  167. 'list' => true,
  168. ),
  169. 'area' => array
  170. (
  171. 'type' => 'varchar-500',
  172. 'name' => '区域',
  173. 'default' => '',
  174. 'desc' => '区域',
  175. 'match' => 'option',
  176. 'search' => 'linkage',
  177. 'update' => 'linkage',
  178. 'option' => Dever::url('api.get?level_total=4', 'area'),
  179. 'list' => 'Dever::load("area/api.string", "{area}")',
  180. ),
  181. 'shop_id' => array
  182. (
  183. 'type' => 'int-11',
  184. 'name' => '所属门店',
  185. 'default' => '',
  186. 'desc' => '所属门店',
  187. 'match' => 'is_numeric',
  188. 'update' => 'select',
  189. 'list' => 'Dever::load("shop/info-one#name", {shop_id})',
  190. ),
  191. 'type' => array
  192. (
  193. 'type' => 'tinyint-1',
  194. 'name' => '类型',
  195. 'default' => '1',
  196. 'desc' => '类型',
  197. 'match' => 'is_numeric',
  198. 'option' => $type,
  199. ),
  200. 'sign' => array
  201. (
  202. 'type' => 'varchar-150',
  203. 'name' => '手写签名',
  204. 'default' => '',
  205. 'desc' => '手写签名',
  206. 'match' => 'option',
  207. 'update' => 'image',
  208. 'key' => '7',
  209. ),
  210. 'idcard' => array
  211. (
  212. 'type' => 'varchar-32',
  213. 'name' => '身份证号码',
  214. 'default' => '',
  215. 'desc' => '身份证号码',
  216. 'match' => 'is_string',
  217. 'update' => 'text',
  218. ),
  219. 'idcard_front' => array
  220. (
  221. 'type' => 'varchar-150',
  222. 'name' => '身份证正面',
  223. 'default' => '',
  224. 'desc' => '身份证正面',
  225. 'match' => 'option',
  226. 'update' => 'image',
  227. 'key' => '8',
  228. 'place' => '660*660',
  229. ),
  230. 'idcard_back' => array
  231. (
  232. 'type' => 'varchar-150',
  233. 'name' => '身份证背面',
  234. 'default' => '',
  235. 'desc' => '身份证背面',
  236. 'match' => 'option',
  237. 'update' => 'image',
  238. 'key' => '8',
  239. 'place' => '660*660',
  240. ),
  241. 'company_name' => array
  242. (
  243. 'type' => 'varchar-100',
  244. 'name' => '公司名称',
  245. 'default' => '',
  246. 'desc' => '公司名称',
  247. 'match' => 'is_string',
  248. 'update' => 'text',
  249. //'search' => 'fulltext',
  250. //'list' => true,
  251. ),
  252. 'company_pic' => array
  253. (
  254. 'type' => 'varchar-150',
  255. 'name' => '营业执照',
  256. 'default' => '',
  257. 'desc' => '营业执照',
  258. 'match' => 'option',
  259. 'update' => 'image',
  260. 'key' => '8',
  261. 'place' => '660*660',
  262. ),
  263. 'company_number' => array
  264. (
  265. 'type' => 'varchar-80',
  266. 'name' => '营业执照号码',
  267. 'default' => '',
  268. 'desc' => '营业执照号码',
  269. 'match' => 'is_string',
  270. 'update' => 'text',
  271. ),
  272. 'cash' => array
  273. (
  274. 'type' => 'varchar-500',
  275. 'name' => '余额',
  276. 'default' => '0',
  277. 'desc' => '余额',
  278. 'match' => 'is_string',
  279. 'update' => 'text',
  280. ),
  281. 'sell' => array
  282. (
  283. 'type' => 'varchar-500',
  284. 'name' => '销售业绩-直推业绩',
  285. 'default' => '0',
  286. 'desc' => '销售业绩',
  287. 'match' => 'is_string',
  288. 'update' => 'text',
  289. ),
  290. 'group_sell' => array
  291. (
  292. 'type' => 'varchar-500',
  293. 'name' => '团队销售业绩',
  294. 'default' => '0',
  295. 'desc' => '团队销售业绩',
  296. 'match' => 'is_string',
  297. 'update' => 'text',
  298. ),
  299. 'status' => array
  300. (
  301. 'type' => 'tinyint-1',
  302. 'name' => '状态',
  303. 'default' => '1',
  304. 'desc' => '状态',
  305. 'match' => 'is_numeric',
  306. 'option' => $status,
  307. 'search' => 'select',
  308. 'list' => true,
  309. ),
  310. 'state' => array
  311. (
  312. 'type' => 'tinyint-1',
  313. 'name' => '状态',
  314. 'default' => '1',
  315. 'desc' => '请选择状态',
  316. 'match' => 'is_numeric',
  317. ),
  318. 'cdate' => array
  319. (
  320. 'type' => 'int-11',
  321. 'name' => '创建时间',
  322. 'match' => array('is_numeric', time()),
  323. 'desc' => '',
  324. # 只有insert时才生效
  325. //'insert' => true,
  326. 'search' => 'date',
  327. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  328. ),
  329. ),
  330. 'manage' => array
  331. (
  332. 'insert' => false,
  333. 'delete' => false,
  334. 'edit' => false,
  335. 'list_button' => array
  336. (
  337. 'list' => array('查看详情', '"member_area&mid={id}&page_type=1"'),
  338. //'edit' => array('退款', 'status,tk_time,tk_pic,tk_desc,tk_admin,tk_status', '{status} == 6'),
  339. //'delete' => array('删除', '', '{status} == 1'),
  340. ),
  341. ),
  342. 'request' => array
  343. (
  344. 'upSell' => array
  345. (
  346. 'type' => 'update',
  347. 'where' => array
  348. (
  349. 'id' => 'yes',
  350. ),
  351. 'set' => array
  352. (
  353. 'cash' => array('yes', '+='),
  354. 'upcol' => array('yes-sell', '+='),
  355. 'level_id' => 'yes',
  356. ),
  357. ),
  358. 'upGroupSell' => array
  359. (
  360. 'type' => 'update',
  361. 'where' => array
  362. (
  363. 'id' => 'yes',
  364. ),
  365. 'set' => array
  366. (
  367. 'cash' => array('yes', '+='),
  368. 'upcol' => array('yes-group_sell', '+='),
  369. 'level_id' => 'yes',
  370. ),
  371. ),
  372. ),
  373. );