code.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'code',
  6. # 显示给用户看的名称
  7. 'lang' => '小程序码',
  8. 'order' => 100,
  9. 'menu' => false,
  10. # 数据结构
  11. 'struct' => array
  12. (
  13. 'id' => array
  14. (
  15. 'type' => 'int-11',
  16. 'name' => 'ID',
  17. 'default' => '',
  18. 'desc' => '',
  19. 'match' => 'is_numeric',
  20. 'search' => 'order',
  21. //'list' => true,
  22. ),
  23. 'project_id' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '项目ID',
  27. 'default' => '',
  28. 'desc' => '请输入项目',
  29. 'match' => 'is_numeric',
  30. 'list' => 'Dever::load("token/project-one#name", {project_id})',
  31. ),
  32. 'file' => array
  33. (
  34. 'type' => 'varchar-2000',
  35. 'name' => '文件地址',
  36. 'default' => '',
  37. 'desc' => '文件地址',
  38. 'match' => 'is_string',
  39. 'update' => 'text',
  40. 'list' => true,
  41. ),
  42. 'filename' => array
  43. (
  44. 'type' => 'varchar-100',
  45. 'name' => '生成文件名',
  46. 'default' => '',
  47. 'desc' => '生成文件名',
  48. 'match' => 'is_string',
  49. 'update' => 'text',
  50. 'list' => true,
  51. ),
  52. 'path' => array
  53. (
  54. 'type' => 'varchar-2000',
  55. 'name' => '小程序路径',
  56. 'default' => '',
  57. 'desc' => '小程序路径',
  58. 'match' => 'is_string',
  59. 'update' => 'text',
  60. 'list' => true,
  61. ),
  62. 'send' => array
  63. (
  64. 'type' => 'varchar-100',
  65. 'name' => '小程序传参',
  66. 'default' => '',
  67. 'desc' => '小程序传参',
  68. 'match' => 'is_string',
  69. 'update' => 'text',
  70. 'list' => true,
  71. ),
  72. 'width' => array
  73. (
  74. 'type' => 'varchar-100',
  75. 'name' => '宽度',
  76. 'default' => '',
  77. 'desc' => '宽度',
  78. 'match' => 'is_string',
  79. 'update' => 'text',
  80. 'list' => true,
  81. ),
  82. 'env' => array
  83. (
  84. 'type' => 'varchar-100',
  85. 'name' => '环境',
  86. 'default' => '',
  87. 'desc' => '环境',
  88. 'match' => 'is_string',
  89. 'update' => 'text',
  90. 'list' => true,
  91. ),
  92. 'mdate' => array
  93. (
  94. 'type' => 'int-11',
  95. 'name' => '生成时间',
  96. 'default' => '',
  97. 'desc' => '生成时间',
  98. 'match' => 'option',
  99. ),
  100. 'state' => array
  101. (
  102. 'type' => 'tinyint-1',
  103. 'name' => '状态',
  104. 'default' => '1',
  105. 'desc' => '请选择状态',
  106. 'match' => 'is_numeric',
  107. ),
  108. 'cdate' => array
  109. (
  110. 'type' => 'int-11',
  111. 'name' => '更新时间',
  112. 'match' => array('is_numeric', time()),
  113. 'desc' => '',
  114. 'default' => '',
  115. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  116. ),
  117. ),
  118. 'manage' => array
  119. (
  120. ),
  121. );