info.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. <?php
  2. $status = array
  3. (
  4. 1 => '全部可购',
  5. 2 => '仅代理商可购',
  6. //3 => '非代理商可购',
  7. );
  8. $act_status = array
  9. (
  10. 1 => '未开始',
  11. 2 => '报名中',
  12. 3 => '报名结束',
  13. 4 => '活动开始',
  14. 5 => '活动结束',
  15. );
  16. $type = array
  17. (
  18. //1 => '商品预售',
  19. 2 => '活动门票',
  20. );
  21. $online = array
  22. (
  23. 1 => '发布',
  24. 2 => '未发布',
  25. );
  26. $cost_type = array
  27. (
  28. //1 => '押金报名',
  29. 2 => '缴费报名',
  30. );
  31. $col_set = array
  32. (
  33. 'idcard' => '身份证号',
  34. );
  35. $refund_type = array
  36. (
  37. 1 => '不可以退款',
  38. 2 => '可以退款',
  39. );
  40. $sit_type = array
  41. (
  42. 1 => '不显示',
  43. 2 => '显示',
  44. );
  45. $role = function()
  46. {
  47. $array = array();
  48. $data = Dever::load('setting/lib/manage.role');
  49. if($data)
  50. {
  51. $array += $data;
  52. }
  53. return $array;
  54. };
  55. #权限:1=活动列表,2=核销管理
  56. $search_auth = Dever::input('search_option_dever_auth',1);
  57. $insert = false;
  58. $edit = false;
  59. $button = array();
  60. $list_button = array();
  61. if ($search_auth == 1) {
  62. $insert = true;
  63. $edit = true;
  64. if (Dever::load('manage/auth')->checkFunc('active.info', 'editworld', '自定义字段设置')) {
  65. $list_button['list1'] = array('自定义字段设置', '"info_field&search_option_active_id={id}&oper_table=info"');
  66. }
  67. if (Dever::load('manage/auth')->checkFunc('active.info', 'editcode', '生成核销码')) {
  68. $list_button['fast_add'] = array('生成核销码', '"create_code&search_option_active_id={id}"');
  69. }
  70. } else {
  71. if (Dever::load('manage/auth')->checkFunc('active.info_1', 'editOff', '核销活动')) {
  72. // $button['核销活动'] = array('fast',1,'info_code');
  73. $list_button['fast_add'] = array('手动核销', 'info_code&search_option_active_id={id}');
  74. $list_button['location'] = array('扫码核销',Dever::url('lib/manage.code','active'));
  75. }
  76. }
  77. $off = function() use($search_auth)
  78. {
  79. $array = array();
  80. $data = Dever::load('active/info_off-getData', array('id' => 1));
  81. if($data)
  82. {
  83. $array += $data;
  84. }
  85. return $array;
  86. };
  87. $col = Dever::input('col');
  88. if (!$col) {
  89. $tab = array('基础设置', '时间设置', '购买设置', '其他设置');
  90. } else {
  91. $tab = '';
  92. }
  93. $attr = function()
  94. {
  95. $auth = Dever::load('active/lib/manage.get',false);
  96. // $auth = Dever::load('attr/api.get', false);
  97. return $auth;
  98. };
  99. return array
  100. (
  101. # 表名
  102. 'name' => 'info',
  103. # 显示给用户看的名称
  104. 'lang' => '活动列表',
  105. # 后台菜单排序
  106. 'order' => 2,
  107. 'config_act_status' => $act_status,
  108. # 数据结构
  109. 'struct' => array
  110. (
  111. 'id' => array
  112. (
  113. 'type' => 'int-11',
  114. 'name' => 'ID',
  115. 'default' => '',
  116. 'desc' => '',
  117. 'match' => 'is_numeric',
  118. 'search' => 'order',
  119. 'list' => true,
  120. 'order' => 'desc',
  121. ),
  122. 'name' => array
  123. (
  124. 'type' => 'varchar-200',
  125. 'name' => '活动名称',
  126. 'default' => '',
  127. 'desc' => '活动名称',
  128. 'match' => 'is_string',
  129. 'update' => 'text',
  130. 'search' => 'fulltext',
  131. 'list' => true,
  132. ),
  133. 'address' => array
  134. (
  135. 'type' => 'varchar-200',
  136. 'name' => '活动地址',
  137. 'default' => '',
  138. 'desc' => '活动地址',
  139. 'match' => 'option',
  140. 'update' => 'text',
  141. // 'search' => 'fulltext',
  142. // 'list' => true,
  143. ),
  144. 'banner' => array
  145. (
  146. 'type' => 'text-255',
  147. 'name' => '详情顶部图片-建议上传图片尺寸宽度750,高度不限,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  148. 'default' => '',
  149. 'desc' => '顶部图片',
  150. 'match' => 'is_string',
  151. 'update' => 'image',
  152. 'key' => '1',
  153. // 'place' => '759*562',
  154. ),
  155. 'sign_start' => array
  156. (
  157. 'type' => 'int-11',
  158. 'name' => '报名开始时间',
  159. 'match' => 'option',
  160. 'default' => '0',
  161. 'desc' => '',
  162. 'match' => 'option',
  163. 'update' => 'date',
  164. 'search' => $search_auth == 1 ? 'date_start' : false,
  165. 'callback' => 'maketime',
  166. 'tab' => 1,
  167. // 'list' => '{buy_date} > 0 ? date("Y-m-d H:i", {buy_date}) : "无"',
  168. ),
  169. 'sign_end' => array
  170. (
  171. 'type' => 'int-11',
  172. 'name' => '报名结束时间',
  173. 'match' => 'option',
  174. 'default' => '0',
  175. 'desc' => '',
  176. 'match' => 'option',
  177. 'update' => 'date',
  178. 'search' => $search_auth == 1 ? 'date_end' : false,
  179. 'callback' => 'maketime',
  180. 'tab' => 1,
  181. // 'list' => '{buy_date} > 0 ? date("Y-m-d H:i", {buy_date}) : "无"',
  182. ),
  183. 'act_start' => array
  184. (
  185. 'type' => 'int-11',
  186. 'name' => '活动开始时间',
  187. 'match' => 'option',
  188. 'default' => '0',
  189. 'desc' => '',
  190. 'match' => 'is_numeric',
  191. 'update' => 'date',
  192. 'search' => $search_auth == 1 ? 'date_start' : false,
  193. 'callback' => 'maketime',
  194. 'list' => $search_auth == 2 ? 'date("Y-m-d H:i", {act_start})' : false,
  195. 'tab' => 1,
  196. ),
  197. 'act_end' => array
  198. (
  199. 'type' => 'int-11',
  200. 'name' => '活动结束时间',
  201. 'match' => 'option',
  202. 'default' => '0',
  203. 'desc' => '',
  204. 'match' => 'is_numeric',
  205. 'update' => 'date',
  206. 'search' => $search_auth == 1 ? 'date_end' : false,
  207. 'callback' => 'maketime',
  208. 'list' => $search_auth == 2 ? 'date("Y-m-d H:i", {act_end})' : false,
  209. 'tab' => 1,
  210. ),
  211. 'status' => array
  212. (
  213. 'type' => 'tinyint-1',
  214. 'name' => '报名限制',
  215. 'default' => '1',
  216. 'desc' => '报名限制',
  217. 'match' => 'is_numeric',
  218. 'update' => 'radio',
  219. 'option' => $status,
  220. // 'search' => 'select',
  221. 'list_name' => $search_auth == 2 ? '待核销数量' : false,
  222. 'list' => $search_auth == 2 ? "Dever::load('active/lib/manage.dOff',{id})" : false,
  223. 'tab' => 2,
  224. ),
  225. 'type' => array
  226. (
  227. 'type' => 'tinyint-1',
  228. 'name' => '活动类型',
  229. 'default' => '2',
  230. 'desc' => '活动类型',
  231. 'match' => 'is_numeric',
  232. 'update' => 'radio',
  233. 'option' => $type,
  234. // 'search' => 'select',
  235. // 'list' => $search_auth == 1 ? true : false,
  236. 'tab' => 2,
  237. ),
  238. 'act_status' => array
  239. (
  240. 'type' => 'tinyint-1',
  241. 'name' => '活动状态',
  242. 'default' => '1',
  243. 'desc' => '活动状态',
  244. 'match' => 'is_numeric',
  245. // 'update' => 'radio',
  246. 'option' => $act_status,
  247. 'search' => 'select',
  248. 'list' => $search_auth == 1 ? true : false,
  249. 'tab' => 1,
  250. ),
  251. 'online' => array
  252. (
  253. 'type' => 'tinyint-1',
  254. 'name' => '状态',
  255. 'default' => '1',
  256. 'desc' => '状态',
  257. 'match' => 'is_numeric',
  258. // 'update' => 'radio',
  259. 'option' => $online,
  260. // 'search' => 'select',
  261. 'list' => $search_auth == 1 ? true : false,
  262. 'edit' => true,
  263. 'tab' => 2,
  264. ),
  265. 'num' => array
  266. (
  267. 'type' => 'int-11',
  268. 'name' => '限购数量-单位:张',
  269. 'default' => '0',
  270. 'desc' => '限购数量',
  271. 'match' => 'option',
  272. 'update' => 'text',
  273. // 'search' => 'fulltext',
  274. // 'list' => true,
  275. 'tab' => 2,
  276. ),
  277. 'attr' => array
  278. (
  279. 'type' => 'varchar-800',
  280. 'name' => '头衔购买数量设置',
  281. 'default' => '',
  282. 'desc' => '属性设置',
  283. 'match' => 'option',
  284. 'update' => 'checkbox',
  285. 'option' => $attr,
  286. 'update_input' => '',
  287. 'update_input_default' => '',
  288. 'update_parent' => 'checkbox',
  289. // 'list' => 'Dever::load("attr/api.string", "{attr}", "{attr_input}")',
  290. 'tab' => 2,
  291. ),
  292. 'attr_input' => array
  293. (
  294. 'type' => 'text-255',
  295. 'name' => '属性值设置',
  296. 'default' => '',
  297. 'desc' => '属性值设置',
  298. 'match' => 'option',
  299. 'updte' => 'textarea',
  300. 'tab' => 2,
  301. ),
  302. // 'title' => array
  303. // (
  304. // 'type' => 'text-1000',
  305. // 'name' => '头衔购买数量',
  306. // 'default' => '',
  307. // 'desc' => '头衔购买数量',
  308. // 'match' => 'option',
  309. // 'update' => array
  310. // (
  311. // array
  312. // (
  313. // 'col' => 'title',
  314. // 'name' => '头衔名称',
  315. // 'default' => '',
  316. // 'desc' => '头衔名称',
  317. // 'match' => 'is_string',
  318. // 'update' => 'select',
  319. // 'option' => $role,
  320. // 'tab' => 2,
  321. // ),
  322. // array
  323. // (
  324. // 'col' => 'num',
  325. // 'name' => '限购数量-单位:张',
  326. // 'default' => '0',
  327. // 'desc' => '限购数量',
  328. // 'match' => 'is_string',
  329. // 'update' => 'text',
  330. // 'search' => 'fulltext',
  331. // 'tab' => 2,
  332. // ),
  333. // ),
  334. // 'tab' => 2,
  335. // ),
  336. 'price' => array
  337. (
  338. 'type' => 'decimal-11,2',
  339. 'name' => '票价-单位:元',
  340. 'default' => '0',
  341. 'desc' => '票价-单位:元',
  342. 'match' => 'option',
  343. 'update' => 'text',
  344. 'list' => $search_auth == 1 ? true : false,
  345. 'list_order' => '3',
  346. 'tab' => 2,
  347. ),
  348. 'cost_type' => array
  349. (
  350. 'type' => 'tinyint-1',
  351. 'name' => '费用类型',
  352. 'default' => '2',
  353. 'desc' => '费用类型',
  354. 'match' => 'is_numeric',
  355. 'update' => 'radio',
  356. 'option' => $cost_type,
  357. // 'search' => 'select',
  358. // 'list' => true,
  359. 'tab' => 2,
  360. ),
  361. 'cover' => array
  362. (
  363. 'type' => 'text-255',
  364. 'name' => '列表封面图片-建议上传图片尺寸686*288px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  365. 'default' => '',
  366. 'desc' => '列表封面图片',
  367. 'match' => 'option',
  368. 'update' => 'image',
  369. 'key' => '1',
  370. // 'place' => '759*562',
  371. // 'tab' => 3,
  372. ),
  373. 'pic' => array
  374. (
  375. 'type' => 'text-255',
  376. 'name' => '购买成功后的背景图',
  377. 'default' => '',
  378. 'desc' => '购买成功后的背景图',
  379. 'match' => 'option',
  380. //'update' => 'image',
  381. 'key' => '1',
  382. // 'place' => '759*562',
  383. 'tab' => 3,
  384. ),
  385. 'col' => array
  386. (
  387. 'type' => 'varchar-300',
  388. 'name' => '字段设置',
  389. 'default' => 'idcard',
  390. 'desc' => '字段设置',
  391. 'match' => 'option',
  392. 'update' => 'checkbox',
  393. 'option' => $col_set,
  394. 'tab' => 3,
  395. ),
  396. 'mobile' => array
  397. (
  398. 'type' => 'bigint-11',
  399. 'name' => '客服电话',
  400. 'default' => '',
  401. 'desc' => '请输入客服电话',
  402. 'match' => 'option',
  403. 'update' => 'text',
  404. //'search' => 'fulltext',
  405. // 'list' => true,
  406. 'tab' => 3,
  407. ),
  408. 'share_name' => array
  409. (
  410. 'type' => 'varchar-300',
  411. 'name' => '分享内容-{member}代表分享人的名称,{active}代表活动名称,比如:您的好友{member},分享给你一个核销码,欢迎您参加:{active}活动名称,请点击链接填写资料认领',
  412. 'default' => '',
  413. 'desc' => '分享内容',
  414. 'match' => 'is_string',
  415. 'update' => 'textarea',
  416. 'tab' => 3,
  417. ),
  418. 'share_pic' => array
  419. (
  420. 'type' => 'text-255',
  421. 'name' => '分享图片',
  422. 'default' => '',
  423. 'desc' => '分享图片',
  424. 'match' => 'option',
  425. 'update' => 'image',
  426. 'key' => '1',
  427. // 'place' => '759*562',
  428. 'tab' => 3,
  429. ),
  430. 'refund_type' => array
  431. (
  432. 'type' => 'tinyint-1',
  433. 'name' => '是否可以退款',
  434. 'default' => '1',
  435. 'desc' => '是否可以退款',
  436. 'match' => 'is_numeric',
  437. 'update' => 'radio',
  438. 'option' => $refund_type,
  439. // 'search' => 'select',
  440. // 'list' => true,
  441. 'tab' => 3,
  442. ),
  443. 'off_type' => array
  444. (
  445. 'type' => 'tinyint-1',
  446. 'name' => '已核销是否可以退款',
  447. 'default' => '1',
  448. 'desc' => '是否可以退款',
  449. 'match' => 'is_numeric',
  450. 'update' => 'radio',
  451. 'option' => $refund_type,
  452. // 'search' => 'select',
  453. // 'list' => true,
  454. 'tab' => 3,
  455. ),
  456. 'refundagin_type' => array
  457. (
  458. 'type' => 'tinyint-1',
  459. 'name' => '退款后是否可以再次退款',
  460. 'default' => '1',
  461. 'desc' => '是否可以退款',
  462. 'match' => 'is_numeric',
  463. 'update' => 'radio',
  464. 'option' => $refund_type,
  465. // 'search' => 'select',
  466. // 'list' => true,
  467. 'tab' => 3,
  468. ),
  469. 'sit_type' => array
  470. (
  471. 'type' => 'tinyint-1',
  472. 'name' => '是否显示座位号',
  473. 'default' => '1',
  474. 'desc' => '是否显示座位号',
  475. 'match' => 'is_numeric',
  476. 'update' => 'radio',
  477. 'option' => $sit_type,
  478. // 'search' => 'select',
  479. // 'list' => true,
  480. 'tab' => 3,
  481. ),
  482. 'desc' => array
  483. (
  484. 'type' => 'text-1000',
  485. 'name' => '活动说明',
  486. 'default' => '',
  487. 'desc' => '活动说明',
  488. 'match' => 'is_string',
  489. 'update' => 'editor',
  490. //'search' => 'fulltext',
  491. //'list' => true,
  492. 'tab' => 0,
  493. ),
  494. 'off_id' => array
  495. (
  496. 'type' => 'varchar-2000',
  497. 'name' => '核销人员',
  498. 'default' => '1',
  499. 'desc' => '核销人员',
  500. 'match' => 'option',
  501. // 'search' => 'selects',
  502. 'update' => 'checkbox',
  503. 'option' => $off,
  504. // 'list' => $search_auth == 2 ? true : false,
  505. ),
  506. 'reorder' => array
  507. (
  508. 'type' => 'int-11',
  509. 'name' => '排序-数值越大越靠前',
  510. 'default' => '1',
  511. 'desc' => '请输入排序',
  512. 'match' => 'option',
  513. 'update' => 'text',
  514. 'search' => 'order',
  515. // 'list' => true,
  516. // 'order' => 'desc',
  517. // 'edit' => true,
  518. ),
  519. 'state' => array
  520. (
  521. 'type' => 'tinyint-1',
  522. 'name' => '状态',
  523. 'default' => '1',
  524. 'desc' => '请选择状态',
  525. 'match' => 'is_numeric',
  526. ),
  527. 'cdate' => array
  528. (
  529. 'type' => 'int-11',
  530. 'name' => '创建时间',
  531. 'match' => array('is_numeric', time()),
  532. 'desc' => '',
  533. # 只有insert时才生效
  534. 'insert' => true,
  535. 'list' => $search_auth == 1 ? 'date("Y-m-d H:i:s", {cdate})' : false,
  536. ),
  537. ),
  538. 'alter' => array
  539. (
  540. 2 => array
  541. (
  542. array('update', 'desc', 'desc', 'text-1000 活动说明'),
  543. ),
  544. 3 => array
  545. (
  546. array('update', 'mobile', 'mobile', 'varchar-100 客服电话'),
  547. ),
  548. 4 => array
  549. (
  550. array('update', 'off_id','off_id','varchar-2000 核销人员'),
  551. ),
  552. 'version' => 4,
  553. ),
  554. 'manage' => array
  555. (
  556. 'insert' => $insert,
  557. 'delete' => false,
  558. 'edit' => $edit,
  559. 'list_button' => $list_button,
  560. 'button' => $button,
  561. 'tab' => $tab,
  562. ),
  563. 'request' => array
  564. (
  565. 'getSearch' => array
  566. (
  567. # 匹配的正则或函数 选填项
  568. 'option' => array
  569. (
  570. 'col' => array('yes-name', 'like'),
  571. ),
  572. 'type' => 'all',
  573. 'col' => '*|id',
  574. ),
  575. 'getAll' => array
  576. (
  577. # 匹配的正则或函数 选填项
  578. 'option' => array
  579. (
  580. 'off_id' => array('yes','like'),
  581. 'online' => 1,
  582. 'state' => 1,
  583. ),
  584. 'type' => 'all',
  585. 'order' => array('reorder' => 'desc', 'act_status' => 'asc'),
  586. 'col' => 'id,name,banner,act_status,sign_end,act_start,act_end,sign_start,cdate,cover',
  587. ),
  588. ),
  589. );