tabbar.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <?php
  2. /**
  3. * tester
  4. */
  5. $template = function()
  6. {
  7. $array = array();
  8. $info = Dever::load('component_applet/template-state');
  9. if($info)
  10. {
  11. $array += $info;
  12. }
  13. return $array;
  14. };
  15. $page = function()
  16. {
  17. $array = array();
  18. $info = Dever::load('component_applet/page-state');
  19. if($info)
  20. {
  21. $array += $info;
  22. }
  23. return $array;
  24. };
  25. return array
  26. (
  27. # 表名
  28. 'name' => 'tabbar',
  29. # 显示给用户看的名称
  30. 'lang' => '底部菜单',
  31. 'order' => 93,
  32. # 数据结构
  33. 'struct' => array
  34. (
  35. 'id' => array
  36. (
  37. 'type' => 'int-11',
  38. 'name' => 'ID',
  39. 'default' => '',
  40. 'desc' => '',
  41. 'match' => 'is_numeric',
  42. 'search' => 'order',
  43. 'list' => true,
  44. ),
  45. 'project_id' => array
  46. (
  47. 'type' => 'int-11',
  48. 'name' => '项目',
  49. 'default' => '',
  50. 'desc' => '请输入项目',
  51. 'match' => 'is_numeric',
  52. ),
  53. 'name' => array
  54. (
  55. 'type' => 'varchar-60',
  56. 'name' => '菜单名',
  57. 'default' => '',
  58. 'desc' => '菜单名',
  59. 'match' => 'is_string',
  60. 'update' => 'text',
  61. 'list' => true,
  62. 'edit' => true,
  63. ),
  64. 'template_id' => array
  65. (
  66. 'type' => 'int-11',
  67. 'name' => '小程序模板',
  68. 'default' => '1',
  69. 'desc' => '小程序模板',
  70. 'match' => 'is_numeric',
  71. 'update' => 'select',
  72. 'search' => 'select',
  73. 'option' => $template,
  74. 'list' => true,
  75. 'edit' => true,
  76. 'control' => 'template_id',
  77. ),
  78. /*
  79. 'pagepath' => array
  80. (
  81. 'type' => 'varchar-60',
  82. 'name' => '菜单路径',
  83. 'default' => '',
  84. 'desc' => '菜单路径',
  85. 'match' => 'is_string',
  86. 'update' => 'text',
  87. 'list' => true,
  88. ),
  89. */
  90. 'page_id' => array
  91. (
  92. 'type' => 'int-11',
  93. 'name' => '菜单页面',
  94. 'default' => '1',
  95. 'desc' => '菜单页面',
  96. 'match' => 'is_numeric',
  97. 'update' => 'select',
  98. 'search' => 'select',
  99. 'option' => $page,
  100. 'list' => true,
  101. 'edit' => true,
  102. 'show' => 'template_id=component/Core.getPageByTemplate?template=',
  103. ),
  104. 'iconpath' => array
  105. (
  106. 'type' => 'varchar-60',
  107. 'name' => '图标路径',
  108. 'default' => '',
  109. 'desc' => '图标路径',
  110. 'match' => 'is_string',
  111. 'update' => 'text',
  112. //'list' => true,
  113. ),
  114. 'selectediconpath' => array
  115. (
  116. 'type' => 'varchar-60',
  117. 'name' => '选中图标路径',
  118. 'default' => '',
  119. 'desc' => '选中图标路径',
  120. 'match' => 'is_string',
  121. 'update' => 'text',
  122. //'list' => true,
  123. ),
  124. 'reorder' => array
  125. (
  126. 'type' => 'int-11',
  127. 'name' => '排序(数值越大越靠前)',
  128. 'default' => '1',
  129. 'desc' => '请输入排序',
  130. 'match' => 'option',
  131. 'update' => 'text',
  132. 'search' => 'order',
  133. 'list_name' => '排序',
  134. 'list' => true,
  135. 'order' => 'desc',
  136. 'edit' => true,
  137. ),
  138. 'state' => array
  139. (
  140. 'type' => 'tinyint-1',
  141. 'name' => '状态',
  142. 'default' => '1',
  143. 'desc' => '请选择状态',
  144. 'match' => 'is_numeric',
  145. ),
  146. 'cdate' => array
  147. (
  148. 'type' => 'int-11',
  149. 'name' => '录入时间',
  150. 'match' => array('is_numeric', time()),
  151. 'desc' => '',
  152. # 只有insert时才生效
  153. 'insert' => true,
  154. ),
  155. ),
  156. 'top' => Dever::config('base', 'component')->top,
  157. 'manage' => array
  158. (
  159. ),
  160. );