member.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596
  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. $source_id = function()
  26. {
  27. $array = array
  28. (
  29. -1 => array
  30. (
  31. 'id' => '-1',
  32. 'name' => '无来源',
  33. ),
  34. );
  35. $data = Dever::load('setting/source-state');
  36. if($data)
  37. {
  38. $array += $data;
  39. }
  40. return $array;
  41. };
  42. $level = function()
  43. {
  44. $array = array
  45. (
  46. -1 => array
  47. (
  48. 'id' => -1,
  49. 'name' => '普通',
  50. ),
  51. );
  52. $data = Dever::load('setting/level-state');
  53. if($data)
  54. {
  55. $array += $data;
  56. }
  57. return $array;
  58. };
  59. $info = '';
  60. $button = array();
  61. $getInfo = Dever::input('getInfo');
  62. $pmid = Dever::input('search_option_pmid');
  63. $parent_mid = Dever::input('search_option_parent_mid');
  64. $search_api_parent_mid = Dever::input('search_api_parent_mid');
  65. if ($search_api_parent_mid && $getInfo != 1) {
  66. Dever::setInput('search_api_parent_mid', 0);
  67. $parent = Dever::db('agent/member')->find(array('mobile' => $search_api_parent_mid));
  68. Dever::setInput('search_api_parent_mid', $search_api_parent_mid);
  69. Dever::setInput('search_option_parent_mid', $parent['id']);
  70. if ($parent) {
  71. $info = '上级' . Dever::load('agent/lib/member')->getInfoString($parent) . ', 以下为直推列表:';
  72. }
  73. } elseif ($parent_mid && $parent_mid > 0 && $getInfo != 1) {
  74. $info = '上级' . Dever::load('agent/lib/member')->getInfoString($parent_mid) . ', 以下为直推列表:';
  75. $button = array
  76. (
  77. '返回上一页' => array('location', 'l=project/database/list&project=agent&table=member_area&page_type=1&mid=' . $parent_mid),
  78. );
  79. }
  80. return array
  81. (
  82. # 表名
  83. 'name' => 'member',
  84. # 显示给用户看的名称
  85. 'lang' => '代理商管理',
  86. 'order' => 100,
  87. 'auto' => 1000000,
  88. 'config_type' => $type,
  89. 'config_status' => $status,
  90. 'info' => $info,
  91. 'start' => array
  92. (
  93. 'update' => 'agent/lib/manage.updateArea',
  94. ),
  95. # 数据结构
  96. 'struct' => array
  97. (
  98. 'id' => array
  99. (
  100. 'type' => 'int-11',
  101. 'name' => 'ID',
  102. 'default' => '',
  103. 'desc' => '',
  104. 'match' => 'is_numeric',
  105. 'search' => 'order',
  106. //'list' => true,
  107. ),
  108. 'name' => array
  109. (
  110. 'type' => 'varchar-100',
  111. 'name' => '姓名',
  112. 'default' => '',
  113. 'desc' => '姓名',
  114. 'match' => 'is_string',
  115. 'update' => 'text',
  116. 'search' => ($parent_mid || $pmid) ? 'hidden' : 'fulltext',
  117. 'list' => 'Dever::load("agent/lib/member.getOne", {id})',
  118. ),
  119. 'rdate' => array
  120. (
  121. 'type' => 'int-11',
  122. 'name' => '认证时间',
  123. 'match' => 'option',
  124. 'default' => '0',
  125. 'desc' => '',
  126. 'update' => 'date',
  127. 'callback' => 'maketime',
  128. 'list' => '{rdate} > 0 ? date("Y-m-d H:i", {rdate}) : "无"',
  129. ),
  130. 'avatar' => array
  131. (
  132. 'type' => 'varchar-150',
  133. 'name' => '头像',
  134. 'default' => '',
  135. 'desc' => '请选择头像',
  136. 'match' => 'option',
  137. 'update' => 'image',
  138. 'key' => '1',
  139. 'place' => '150',
  140. ),
  141. 'mobile' => array
  142. (
  143. 'type' => 'bigint-11',
  144. 'name' => '手机号',
  145. 'default' => '',
  146. 'desc' => '请输入手机号',
  147. 'match' => Dever::rule('mobile'),
  148. 'update' => 'text',
  149. 'search' => ($parent_mid || $pmid) ? 'hidden' : 'fulltext',
  150. //'list' => true,
  151. ),
  152. 'email' => array
  153. (
  154. 'type' => 'varchar-150',
  155. 'name' => '邮箱',
  156. 'default' => '',
  157. 'desc' => '请输入邮箱',
  158. 'match' => 'option||' . Dever::rule('email'),
  159. 'update' => 'text',
  160. ),
  161. 'username' => array
  162. (
  163. 'type' => 'varchar-100',
  164. 'name' => '昵称',
  165. 'default' => '',
  166. 'desc' => '昵称',
  167. 'match' => 'is_string',
  168. 'update' => 'text',
  169. ),
  170. 'birthday' => array
  171. (
  172. 'type' => 'int-11',
  173. 'name' => '生日',
  174. 'default' => '',
  175. 'match' => 'option',
  176. 'desc' => '生日',
  177. 'update' => 'time',
  178. 'callback' => 'maketime',
  179. ),
  180. 'password' => array
  181. (
  182. 'type' => 'varchar-50',
  183. 'name' => '密码',
  184. 'default' => '',
  185. 'desc' => '请输入密码',
  186. 'match' => 'option',
  187. 'update' => 'password',
  188. 'callback' => 'sha1',
  189. ),
  190. 'parent_mid' => array
  191. (
  192. 'type' => 'int-11',
  193. 'name' => '邀请人手机号',
  194. 'default' => '-1',
  195. 'desc' => '邀请人',
  196. 'match' => 'is_string',
  197. 'update' => 'text',
  198. 'search' => $parent_mid ? 'hidden' : array
  199. (
  200. 'api' => 'agent/member-find',
  201. 'col' => 'mobile',
  202. 'result' => 'id',
  203. 'col' => 'parent_mid',
  204. ),
  205. 'list_name' => '邀请人',
  206. 'list' => ($parent_mid || $pmid) ? false : 'Dever::load("agent/lib/member.getOne", {parent_mid})',
  207. ),
  208. 'source_id' => array
  209. (
  210. 'type' => 'int-11',
  211. 'name' => '注册来源',
  212. 'default' => '-1',
  213. 'desc' => '注册来源',
  214. 'match' => 'is_numeric',
  215. 'search' => 'select',
  216. 'update' => 'checkbox',
  217. 'option' => $source_id,
  218. 'list' => true,
  219. ),
  220. 'pmid' => array
  221. (
  222. 'type' => 'int-11',
  223. 'name' => '邀请人id-废弃无用处',
  224. 'default' => '-1',
  225. 'desc' => '邀请人',
  226. 'match' => 'is_string',
  227. 'update' => 'text',
  228. 'search' => 'hidden',
  229. ),
  230. 'code' => array
  231. (
  232. 'type' => 'varchar-50',
  233. 'name' => '邀请码',
  234. 'default' => '',
  235. 'desc' => '邀请码',
  236. 'match' => 'option',
  237. //'update' => 'text',
  238. 'list' => ($parent_mid || $pmid) ? false : 'Dever::load("invite/api.code", {id})',
  239. ),
  240. 'role' => array
  241. (
  242. 'type' => 'int-11',
  243. 'name' => '代理角色',
  244. 'default' => '',
  245. 'desc' => '代理角色',
  246. 'match' => 'is_numeric',
  247. 'search' => 'select',
  248. 'update' => 'select',
  249. 'option' => $role,
  250. //'list' => true,
  251. ),
  252. 'level_id' => array
  253. (
  254. 'type' => 'int-11',
  255. 'name' => '代理商等级',
  256. 'default' => '-1',
  257. 'desc' => '代理商等级',
  258. 'match' => 'is_numeric',
  259. 'search' => 'select',
  260. 'update' => 'select',
  261. 'option' => $level,
  262. //'list' => true,
  263. ),
  264. 'area' => array
  265. (
  266. 'type' => 'varchar-500',
  267. 'name' => '区域',
  268. 'default' => '',
  269. 'desc' => '区域',
  270. 'match' => 'option',
  271. 'search' => 'linkage',
  272. 'update' => 'linkage',
  273. 'option' => Dever::url('api.get?level_total=4', 'area'),
  274. 'list' => 'Dever::load("area/api.string", "{area}")',
  275. ),
  276. 'shop_id' => array
  277. (
  278. 'type' => 'int-11',
  279. 'name' => '所属门店',
  280. 'default' => '',
  281. 'desc' => '所属门店',
  282. 'match' => 'is_numeric',
  283. 'update' => 'select',
  284. 'update_search' => 'shop/lib/manage.search',
  285. 'list' => ($parent_mid || $pmid) ? false : '{shop_id} > 0 ? Dever::load("shop/info-one#name", {shop_id}) : "无"',
  286. ),
  287. 'type' => array
  288. (
  289. 'type' => 'tinyint-1',
  290. 'name' => '类型',
  291. 'default' => '1',
  292. 'desc' => '类型',
  293. 'match' => 'is_numeric',
  294. 'option' => $type,
  295. 'update' => 'radio',
  296. 'control' => 'type',
  297. ),
  298. 'sign' => array
  299. (
  300. 'type' => 'varchar-150',
  301. 'name' => '手写签名',
  302. 'default' => '',
  303. 'desc' => '手写签名',
  304. 'match' => 'option',
  305. 'update' => 'image',
  306. 'key' => '7',
  307. ),
  308. 'idcard' => array
  309. (
  310. 'type' => 'varchar-32',
  311. 'name' => '身份证号码',
  312. 'default' => '',
  313. 'desc' => '身份证号码',
  314. 'match' => Dever::rule('idcard'),
  315. 'update' => 'text',
  316. ),
  317. 'idcard_front' => array
  318. (
  319. 'type' => 'varchar-150',
  320. 'name' => '身份证正面',
  321. 'default' => '',
  322. 'desc' => '身份证正面',
  323. 'match' => 'option',
  324. 'update' => 'image',
  325. 'key' => '8',
  326. 'place' => '660*660',
  327. ),
  328. 'idcard_back' => array
  329. (
  330. 'type' => 'varchar-150',
  331. 'name' => '身份证背面',
  332. 'default' => '',
  333. 'desc' => '身份证背面',
  334. 'match' => 'option',
  335. 'update' => 'image',
  336. 'key' => '8',
  337. 'place' => '660*660',
  338. ),
  339. 'company_name' => array
  340. (
  341. 'type' => 'varchar-100',
  342. 'name' => '公司名称',
  343. 'default' => '',
  344. 'desc' => '公司名称',
  345. 'match' => 'is_string',
  346. 'update' => 'text',
  347. //'search' => 'fulltext',
  348. //'list' => true,
  349. 'show' => 'type=2',
  350. ),
  351. 'company_pic' => array
  352. (
  353. 'type' => 'varchar-150',
  354. 'name' => '营业执照',
  355. 'default' => '',
  356. 'desc' => '营业执照',
  357. 'match' => 'option',
  358. 'update' => 'image',
  359. 'key' => '8',
  360. 'place' => '660*660',
  361. 'show' => 'type=2',
  362. ),
  363. 'company_number' => array
  364. (
  365. 'type' => 'varchar-80',
  366. 'name' => '营业执照号码',
  367. 'default' => '',
  368. 'desc' => '营业执照号码',
  369. 'match' => 'is_string',
  370. 'update' => 'text',
  371. 'show' => 'type=2',
  372. ),
  373. 'address' => array
  374. (
  375. 'type' => 'varchar-800',
  376. 'name' => '地址',
  377. 'default' => '',
  378. 'desc' => '地址',
  379. 'match' => 'is_string',
  380. 'update' => 'text',
  381. ),
  382. 'cash' => array
  383. (
  384. 'type' => 'float-11,2',
  385. 'name' => '余额',
  386. 'default' => '0',
  387. 'desc' => '余额',
  388. 'match' => 'is_numeric',
  389. 'update' => 'text',
  390. 'list' => true,
  391. ),
  392. 'sell' => array
  393. (
  394. 'type' => 'float-11,2',
  395. 'name' => '直推业绩',
  396. 'default' => '0',
  397. 'desc' => '销售业绩',
  398. 'match' => 'is_numeric',
  399. 'update' => 'text',
  400. //'list' => ($parent_mid || $pmid) ? true : false,
  401. ),
  402. 'group_sell' => array
  403. (
  404. 'type' => 'float-11,2',
  405. 'name' => '团队业绩',
  406. 'default' => '0',
  407. 'desc' => '团队销售业绩',
  408. 'match' => 'is_numeric',
  409. 'update' => 'text',
  410. 'list' => ($parent_mid || $pmid) ? true : false,
  411. ),
  412. 'status' => array
  413. (
  414. 'type' => 'tinyint-1',
  415. 'name' => '状态',
  416. 'default' => '1',
  417. 'desc' => '状态',
  418. 'match' => 'is_numeric',
  419. 'option' => $status,
  420. 'search' => 'select',
  421. 'list' => true,
  422. ),
  423. 'state' => array
  424. (
  425. 'type' => 'tinyint-1',
  426. 'name' => '状态',
  427. 'default' => '1',
  428. 'desc' => '请选择状态',
  429. 'match' => 'is_numeric',
  430. ),
  431. 'cdate' => array
  432. (
  433. 'type' => 'int-11',
  434. 'name' => '加入日期',
  435. 'match' => array('is_numeric', time()),
  436. 'desc' => '',
  437. # 只有insert时才生效
  438. //'insert' => true,
  439. //'search' => 'date',
  440. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  441. ),
  442. ),
  443. 'alter' => array
  444. (
  445. 3 => array
  446. (
  447. array('update', 'cash', 'cash', 'float-11,2 0 余额'),
  448. array('update', 'sell', 'sell', 'float-11,2 0 直推业绩-已废弃'),
  449. array('update', 'group_sell', 'group_sell', 'float-11,2 0 团队业绩'),
  450. ),
  451. 'version' => 3,
  452. ),
  453. 'manage' => array
  454. (
  455. 'insert' => false,
  456. 'delete' => false,
  457. 'edit' => false,
  458. 'button' => $button,
  459. 'list_button' => array
  460. (
  461. 'list' => array('查看详情', '"member_area&mid={id}&page_type=1"'),
  462. //'edit' => array('退款', 'status,tk_time,tk_pic,tk_desc,tk_admin,tk_status', '{status} == 6'),
  463. //'delete' => array('删除', '', '{status} == 1'),
  464. ),
  465. ),
  466. 'request' => array
  467. (
  468. 'getInfo' => array
  469. (
  470. # 匹配的正则或函数 选填项
  471. 'option' => array
  472. (
  473. 'status' => 2,
  474. 'state' => 1,
  475. ),
  476. 'order' => array('id' => 'desc'),
  477. 'type' => 'one',
  478. 'col' => '*',
  479. ),
  480. 'getData' => array
  481. (
  482. # 匹配的正则或函数 选填项
  483. 'option' => array
  484. (
  485. 'idcard' => 'yes',
  486. 'id' => array('yes', '!='),
  487. 'status' => 2,
  488. 'state' => 1,
  489. ),
  490. 'order' => array('id' => 'desc'),
  491. 'type' => 'all',
  492. 'page' => array(20, 'list'),
  493. 'col' => '*',
  494. ),
  495. 'upCash' => array
  496. (
  497. 'type' => 'update',
  498. 'where' => array
  499. (
  500. 'id' => 'yes',
  501. ),
  502. 'set' => array
  503. (
  504. 'cash' => array('yes', '+='),
  505. ),
  506. ),
  507. 'upSell' => array
  508. (
  509. 'type' => 'update',
  510. 'where' => array
  511. (
  512. 'id' => 'yes',
  513. ),
  514. 'set' => array
  515. (
  516. 'cash' => array('yes', '+='),
  517. 'upcol' => array('yes-sell', '+='),
  518. 'level_id' => 'yes',
  519. ),
  520. ),
  521. 'upGroupSell' => array
  522. (
  523. 'type' => 'update',
  524. 'where' => array
  525. (
  526. 'id' => 'yes',
  527. ),
  528. 'set' => array
  529. (
  530. 'cash' => array('yes', '+='),
  531. 'upcol' => array('yes-group_sell', '+='),
  532. 'level_id' => 'yes',
  533. ),
  534. ),
  535. 'upGroupSellOne' => array
  536. (
  537. 'type' => 'update',
  538. 'where' => array
  539. (
  540. 'id' => 'yes',
  541. ),
  542. 'set' => array
  543. (
  544. 'group_sell' => array('yes', '+='),
  545. ),
  546. ),
  547. ),
  548. );