link.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. $type = array
  3. (
  4. 1 => 'H5',
  5. 2 => '小程序',
  6. );
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'link',
  11. # 显示给用户看的名称
  12. 'lang' => '推广链接管理',
  13. 'order' => 1,
  14. # 数据结构
  15. 'struct' => array
  16. (
  17. 'id' => array
  18. (
  19. 'type' => 'int-11',
  20. 'name' => 'ID',
  21. 'default' => '',
  22. 'desc' => '',
  23. 'match' => 'is_numeric',
  24. ),
  25. 'name' => array
  26. (
  27. 'type' => 'varchar-80',
  28. 'name' => '名称',
  29. 'default' => '',
  30. 'desc' => '请输入名称',
  31. 'match' => 'is_string',
  32. 'update' => 'text',
  33. 'search' => 'fulltext',
  34. 'list' => true,
  35. ),
  36. 'type' => array
  37. (
  38. 'type' => 'int-11',
  39. 'name' => '类型',
  40. 'default' => '1',
  41. 'desc' => '类型',
  42. 'match' => 'is_numeric',
  43. 'update' => 'select',
  44. 'option' => $type,
  45. 'search' => 'select',
  46. 'list' => true,
  47. ),
  48. 'link' => array
  49. (
  50. 'type' => 'varchar-500',
  51. 'name' => '链接或路径-填写完整的h5链接或者小程序路径',
  52. 'default' => '',
  53. 'desc' => '链接或路径',
  54. 'match' => 'is_string',
  55. 'update' => 'text',
  56. 'search' => 'fulltext',
  57. 'list' => true,
  58. ),
  59. 'state' => array
  60. (
  61. 'type' => 'tinyint-1',
  62. 'name' => '状态',
  63. 'default' => '1',
  64. 'desc' => '请选择状态',
  65. 'match' => 'is_numeric',
  66. ),
  67. 'cdate' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '录入时间',
  71. 'match' => array('is_numeric', time()),
  72. 'desc' => '',
  73. # 只有insert时才生效
  74. 'insert' => true,
  75. ),
  76. ),
  77. 'manage' => array
  78. (
  79. 'delete' => false,
  80. 'edit' => false,
  81. # 列表
  82. 'list_button' => array
  83. (
  84. 'list' => array('渠道列表', '"info&search_option_link_id={id}&oper_parent=link"'),
  85. ),
  86. ),
  87. );