sale_status.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'sale_status',
  6. # 显示给用户看的名称
  7. 'lang' => '线索状态设置',
  8. # 后台菜单排序
  9. 'order' => 4,
  10. 'menu' => false,
  11. // 'auto' => 100000,
  12. # 数据结构
  13. 'struct' => array
  14. (
  15. 'id' => array
  16. (
  17. 'type' => 'int-11',
  18. 'name' => 'ID',
  19. 'default' => '',
  20. 'desc' => '',
  21. 'match' => 'is_numeric',
  22. 'search' => 'order',
  23. // 'list' => true,
  24. // 'order' => 'desc',
  25. ),
  26. 'name' => array
  27. (
  28. 'type' => 'varchar-200',
  29. 'name' => '名称',
  30. 'default' => '',
  31. 'desc' => '名称',
  32. 'match' => 'is_string',
  33. 'update' => 'text',
  34. // 'search' => 'fulltext',
  35. 'list' => true,
  36. ),
  37. 'color' => array
  38. (
  39. 'type' => 'varchar-10',
  40. 'name' => '颜色',
  41. 'default' => '',
  42. 'desc' => '颜色',
  43. 'match' => 'option',
  44. 'update' => 'color',
  45. ),
  46. 'reorder' => array
  47. (
  48. 'type' => 'int-11',
  49. 'name' => '排序-数值越大越靠前',
  50. 'default' => '1',
  51. 'desc' => '请输入排序',
  52. 'match' => 'option',
  53. 'update' => 'text',
  54. 'search' => 'order',
  55. 'list' => true,
  56. 'order' => 'desc',
  57. 'edit' => 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. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  76. ),
  77. ),
  78. 'manage' => array
  79. (
  80. //'insert' => false,
  81. 'delete' => false,
  82. // 'edit' => false,
  83. ),
  84. 'request' => array
  85. (
  86. 'getAll' => array
  87. (
  88. # 匹配的正则或函数 选填项
  89. 'option' => array
  90. (
  91. // 'id' => array('yes','>'),
  92. 'state' => 1,
  93. ),
  94. 'type' => 'all',
  95. 'order' => array('reorder' => 'desc', 'id' => 'asc'),
  96. 'col' => '*',
  97. ),
  98. ),
  99. );