address.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. $status = array
  3. (
  4. 1 => '是',
  5. 2 => '否',
  6. );
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'address',
  11. # 显示给用户看的名称
  12. 'lang' => '收货地址',
  13. # 后台菜单排序
  14. 'order' => 5,
  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. 'name' => array
  40. (
  41. 'type' => 'varchar-80',
  42. 'name' => '收货姓名',
  43. 'default' => '',
  44. 'desc' => '请输入收货姓名',
  45. 'match' => 'is_string',
  46. 'update' => 'text',
  47. 'search' => 'fulltext',
  48. 'list' => true,
  49. ),
  50. 'mobile' => array
  51. (
  52. 'type' => 'varchar-80',
  53. 'name' => '联系电话',
  54. 'default' => '',
  55. 'desc' => '请输入联系电话',
  56. 'match' => 'is_string',
  57. 'update' => 'text',
  58. 'search' => 'fulltext',
  59. 'list' => true,
  60. ),
  61. 'address' => array
  62. (
  63. 'type' => 'varchar-800',
  64. 'name' => '收货地址',
  65. 'default' => '',
  66. 'desc' => '请输入收货地址',
  67. 'match' => 'is_string',
  68. 'update' => 'text',
  69. 'search' => 'fulltext',
  70. 'list' => true,
  71. ),
  72. 'status' => array
  73. (
  74. 'type' => 'tinyint-1',
  75. 'name' => '是否默认地址',
  76. 'default' => '1',
  77. 'desc' => '是否默认地址',
  78. 'match' => 'is_numeric',
  79. //'update' => 'radio',
  80. //'option' => $status,
  81. //'list' => true,
  82. ),
  83. 'state' => array
  84. (
  85. 'type' => 'tinyint-1',
  86. 'name' => '状态',
  87. 'default' => '1',
  88. 'desc' => '请选择状态',
  89. 'match' => 'is_numeric',
  90. ),
  91. 'cdate' => array
  92. (
  93. 'type' => 'int-11',
  94. 'name' => '录入时间',
  95. 'match' => array('is_numeric', time()),
  96. 'desc' => '',
  97. # 只有insert时才生效
  98. 'insert' => true,
  99. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  100. ),
  101. ),
  102. 'manage' => array
  103. (
  104. 'delete' => false,
  105. 'edit' => false,
  106. 'insert' => false,
  107. ),
  108. );