info.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. # 定义几个常用的选项
  3. $option = array
  4. (
  5. 1 => '正常',
  6. 2 => '冻结',
  7. );
  8. return array
  9. (
  10. # 表名
  11. 'name' => 'info',
  12. # 显示给用户看的名称
  13. 'lang' => '公司设置',
  14. 'menu' => 'manage',
  15. # 后台菜单排序
  16. 'order' => 120,
  17. 'end' => array
  18. (
  19. 'insert' => 'manage/top.sync',
  20. 'update' => 'manage/top.sync',
  21. ),
  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. 'name' => array
  36. (
  37. 'type' => 'varchar-80',
  38. 'name' => '公司名称',
  39. 'default' => '',
  40. 'desc' => '请输入公司名称',
  41. 'match' => 'is_string',
  42. 'update' => 'text',
  43. 'search' => 'fulltext',
  44. 'list' => true,
  45. ),
  46. 'site' => array
  47. (
  48. 'type' => 'varchar-100',
  49. 'name' => '公司网址',
  50. 'default' => '',
  51. 'desc' => '请输入公司网址',
  52. 'match' => 'option',
  53. 'update' => 'text',
  54. //'list' => true,
  55. ),
  56. 'info' => array
  57. (
  58. 'type' => 'varchar-255',
  59. 'name' => '公司简介',
  60. 'default' => '',
  61. 'desc' => '请输入公司简介',
  62. 'match' => 'option',
  63. 'update' => 'textarea',
  64. //'list' => true,
  65. ),
  66. 'state' => array
  67. (
  68. 'type' => 'tinyint-1',
  69. 'name' => '状态',
  70. 'default' => '1',
  71. 'desc' => '请选择状态',
  72. 'match' => 'is_numeric',
  73. 'option' => $option,
  74. 'update' => 'radio',
  75. 'list' => true,
  76. ),
  77. 'cdate' => array
  78. (
  79. 'type' => 'int-11',
  80. 'name' => '录入时间',
  81. 'match' => array('is_numeric', time()),
  82. 'desc' => '',
  83. # 只有insert时才生效
  84. 'insert' => true,
  85. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  86. ),
  87. ),
  88. # 权限精细控制 加入到头部右侧可选菜单中
  89. 'auth' => array
  90. (
  91. # 数据来源
  92. 'data' => 'getAll',
  93. # 菜单名
  94. 'name' => '公司选择',
  95. # 默认值
  96. 'value' => 1,
  97. # 对应的字段值,设置这个之后,所有设置auth等于这个值的字段,都要遵循这个权限的控制
  98. 'key' => 'company',
  99. # 本表中代表名称的字段
  100. 'col' => 'name',
  101. ),
  102. 'manage' => array
  103. (
  104. ),
  105. # request 请求接口定义
  106. 'request' => array
  107. (
  108. 'getAll' => array
  109. (
  110. 'where' => array
  111. (
  112. 'state' => 1,
  113. ),
  114. 'type' => 'all',
  115. 'order' => array('id', 'desc'),
  116. 'col' => '*|id',
  117. ),
  118. ),
  119. );