page.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. return array
  16. (
  17. # 表名
  18. 'name' => 'page',
  19. # 显示给用户看的名称
  20. 'lang' => '页面列表',
  21. 'order' => 93,
  22. # 数据结构
  23. 'struct' => array
  24. (
  25. 'id' => array
  26. (
  27. 'type' => 'int-11',
  28. 'name' => 'ID',
  29. 'default' => '',
  30. 'desc' => '',
  31. 'match' => 'is_numeric',
  32. 'search' => 'order',
  33. 'list' => true,
  34. ),
  35. 'project_id' => array
  36. (
  37. 'type' => 'int-11',
  38. 'name' => '项目',
  39. 'default' => '',
  40. 'desc' => '请输入项目',
  41. 'match' => 'is_numeric',
  42. ),
  43. 'name' => array
  44. (
  45. 'type' => 'varchar-60',
  46. 'name' => '页面名',
  47. 'default' => '',
  48. 'desc' => '页面名',
  49. 'match' => 'is_string',
  50. 'update' => 'text',
  51. 'list' => true,
  52. ),
  53. 'template_id' => array
  54. (
  55. 'type' => 'varchar-500',
  56. 'name' => '小程序模板',
  57. 'default' => '',
  58. 'desc' => '小程序模板',
  59. 'match' => 'is_string',
  60. 'update' => 'checkbox',
  61. 'search' => 'select',
  62. 'option' => $template,
  63. 'list' => true,
  64. ),
  65. 'pagepath' => array
  66. (
  67. 'type' => 'varchar-60',
  68. 'name' => '页面路径',
  69. 'default' => '',
  70. 'desc' => '页面路径',
  71. 'match' => 'is_string',
  72. 'update' => 'text',
  73. 'list' => true,
  74. ),
  75. 'reorder' => array
  76. (
  77. 'type' => 'int-11',
  78. 'name' => '排序(数值越大越靠前)',
  79. 'default' => '1',
  80. 'desc' => '请输入排序',
  81. 'match' => 'option',
  82. 'update' => 'text',
  83. 'search' => 'order',
  84. 'list_name' => '排序',
  85. 'list' => true,
  86. 'order' => 'desc',
  87. 'edit' => true,
  88. ),
  89. 'state' => array
  90. (
  91. 'type' => 'tinyint-1',
  92. 'name' => '状态',
  93. 'default' => '1',
  94. 'desc' => '请选择状态',
  95. 'match' => 'is_numeric',
  96. ),
  97. 'cdate' => array
  98. (
  99. 'type' => 'int-11',
  100. 'name' => '录入时间',
  101. 'match' => array('is_numeric', time()),
  102. 'desc' => '',
  103. # 只有insert时才生效
  104. 'insert' => true,
  105. ),
  106. ),
  107. # 更新表结构
  108. 'alter' => array
  109. (
  110. 2 => array
  111. (
  112. array('update', 'template_id', 'template_id', 'varchar-500 1 小程序模板'),
  113. //array('add', 'config', 'config', 'int-11 1 配置'),
  114. ),
  115. 'version' => 2,
  116. ),
  117. 'top' => Dever::config('base', 'component')->top,
  118. 'manage' => array
  119. (
  120. ),
  121. # request 请求接口定义
  122. 'request' => array
  123. (
  124. 'getAll' => array
  125. (
  126. # 匹配的正则或函数 选填项
  127. 'option' => array
  128. (
  129. 'template_id' => array('yes', 'like'),
  130. 'state' => 1,
  131. ),
  132. 'type' => 'all',
  133. 'order' => array('reorder' => 'desc', 'cdate' => 'desc'),
  134. 'col' => '*',
  135. ),
  136. 'getOne' => array
  137. (
  138. # 匹配的正则或函数 选填项
  139. 'option' => array
  140. (
  141. 'template_id' => array('yes', 'like'),
  142. 'state' => 1,
  143. ),
  144. 'type' => 'one',
  145. 'order' => array('reorder' => 'desc', 'cdate' => 'desc'),
  146. ),
  147. )
  148. );