template.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. /**
  3. * 小程序模板
  4. */
  5. return array
  6. (
  7. # 表名
  8. 'name' => 'template',
  9. # 显示给用户看的名称
  10. 'lang' => '小程序模板',
  11. 'order' => 98,
  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. ),
  25. 'project_id' => array
  26. (
  27. 'type' => 'int-11',
  28. 'name' => '项目',
  29. 'default' => '',
  30. 'desc' => '请输入项目',
  31. 'match' => 'is_numeric',
  32. ),
  33. 'name' => array
  34. (
  35. 'type' => 'varchar-60',
  36. 'name' => '模板名',
  37. 'default' => '',
  38. 'desc' => '模板名',
  39. 'match' => 'is_string',
  40. 'update' => 'text',
  41. 'list' => true,
  42. ),
  43. 'template' => array
  44. (
  45. 'type' => 'varchar-60',
  46. 'name' => '模板id-暂时手动填写,小程序模板id+1就是这个模板id',
  47. 'default' => '',
  48. 'desc' => '模板id',
  49. 'match' => 'is_string',
  50. 'update' => 'text',
  51. 'list' => true,
  52. 'edit' => true,
  53. ),
  54. 'desc' => array
  55. (
  56. 'type' => 'varchar-255',
  57. 'name' => '描述',
  58. 'default' => '',
  59. 'desc' => '描述',
  60. 'match' => 'option',
  61. 'update' => 'textarea',
  62. 'list' => true,
  63. ),
  64. 'state' => array
  65. (
  66. 'type' => 'tinyint-1',
  67. 'name' => '状态',
  68. 'default' => '1',
  69. 'desc' => '请选择状态',
  70. 'match' => 'is_numeric',
  71. ),
  72. 'cdate' => array
  73. (
  74. 'type' => 'int-11',
  75. 'name' => '录入时间',
  76. 'match' => array('is_numeric', time()),
  77. 'desc' => '',
  78. # 只有insert时才生效
  79. 'insert' => true,
  80. ),
  81. ),
  82. 'top' => Dever::config('base', 'component')->top,
  83. 'manage' => array
  84. (
  85. ),
  86. );