cart.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. $status = array
  3. (
  4. 1 => '是',
  5. 2 => '否',
  6. );
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'cart',
  11. # 显示给用户看的名称
  12. 'lang' => '购物车',
  13. # 后台菜单排序
  14. 'order' => 1,
  15. # 数据结构
  16. 'struct' => array
  17. (
  18. 'id' => array
  19. (
  20. 'type' => 'int-11',
  21. 'name' => 'ID',
  22. 'default' => '',
  23. 'desc' => '',
  24. 'match' => 'is_numeric',
  25. 'search' => 'order',
  26. //'list' => true,
  27. 'order' => 'desc',
  28. ),
  29. 'uid' => array
  30. (
  31. 'type' => 'int-11',
  32. 'name' => '用户名',
  33. 'default' => '',
  34. 'desc' => '用户名',
  35. 'match' => 'is_numeric',
  36. 'update' => 'text',
  37. 'list' => 'Dever::load("passport/user-one#username", "{uid}")',
  38. ),
  39. 'product_id' => array
  40. (
  41. 'type' => 'int-11',
  42. 'name' => '产品id',
  43. 'default' => '',
  44. 'desc' => '产品id',
  45. 'match' => 'is_numeric',
  46. 'update' => 'text',
  47. 'list' => 'Dever::load("product/info-one#name", "{product_id}")',
  48. ),
  49. 'num' => array
  50. (
  51. 'type' => 'int-11',
  52. 'name' => '数量',
  53. 'default' => '',
  54. 'desc' => '数量',
  55. 'match' => 'is_numeric',
  56. 'update' => 'text',
  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. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  76. ),
  77. ),
  78. 'manage' => array
  79. (
  80. 'delete' => false,
  81. 'edit' => false,
  82. 'insert' => false,
  83. ),
  84. 'request' => array
  85. (
  86. 'getAll' => array
  87. (
  88. # 匹配的正则或函数 选填项
  89. 'option' => array
  90. (
  91. 'state' => 1,
  92. 'uid' => 'yes',
  93. ),
  94. 'type' => 'all',
  95. 'order' => array('cdate' => 'desc'),
  96. 'col' => '*',
  97. ),
  98. ),
  99. );