info.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. <?php
  2. $type = array
  3. (
  4. # 小于10无需选项
  5. 1 => '单行输入框',
  6. 2 => '多行输入框',
  7. 3 => '单图片上传',
  8. 4 => '多图片上传',
  9. # 大于10需要选项
  10. 11 => '城市选择框',
  11. 12 => '单选框',
  12. 13 => '多选框',
  13. );
  14. $must = array
  15. (
  16. 1 => '必填',
  17. 2 => '选填',
  18. );
  19. $content_type = array
  20. (
  21. 1 => '需要用户选择',
  22. 2 => '需要用户输入',
  23. );
  24. $match = array
  25. (
  26. 1 => '所有字符',
  27. 2 => '中文',
  28. 3 => '中文+英文',
  29. 4 => '中文+英文+数字',
  30. 5 => '英文',
  31. 6 => '英文+数字',
  32. 7 => '手机',
  33. 8 => '邮箱',
  34. );
  35. $id = Dever::input('search_option_product_id');
  36. $name = '';
  37. if ($id > 0) {
  38. $info = Dever::db('service/product')->one($id);
  39. $name = $info['name'] . '-';
  40. }
  41. return array
  42. (
  43. # 表名
  44. 'name' => 'info',
  45. # 显示给用户看的名称
  46. 'lang' => $name . '问卷管理',
  47. 'order' => 100,
  48. 'menu' => false,
  49. # 数据结构
  50. 'struct' => array
  51. (
  52. 'id' => array
  53. (
  54. 'type' => 'int-11',
  55. 'name' => 'ID',
  56. 'default' => '',
  57. 'desc' => '',
  58. 'match' => 'is_numeric',
  59. //'search' => 'order',
  60. //'list' => true,
  61. ),
  62. 'page_number' => array
  63. (
  64. 'type' => 'int-11',
  65. 'name' => '页号',
  66. 'default' => '1',
  67. 'desc' => '请输入页号',
  68. 'match' => 'option',
  69. 'update' => 'text',
  70. 'list' => true,
  71. 'order' => 'asc',
  72. 'edit' => true,
  73. ),
  74. 'reorder' => array
  75. (
  76. 'type' => 'int-11',
  77. 'name' => '序号',
  78. 'default' => '1',
  79. 'desc' => '请输入序号',
  80. 'match' => 'option',
  81. 'update' => 'text',
  82. 'list' => true,
  83. 'order' => 'asc',
  84. 'edit' => true,
  85. ),
  86. 'name' => array
  87. (
  88. 'type' => 'varchar-200',
  89. 'name' => '标题',
  90. 'default' => '',
  91. 'desc' => '标题',
  92. 'match' => 'is_string',
  93. 'update' => 'text',
  94. 'search' => 'fulltext',
  95. 'list' => true,
  96. ),
  97. 'info' => array
  98. (
  99. 'type' => 'varchar-800',
  100. 'name' => '描述',
  101. 'default' => '',
  102. 'desc' => '描述',
  103. 'match' => 'option',
  104. 'update' => 'textarea',
  105. ),
  106. 'product_id' => array
  107. (
  108. 'type' => 'int-11',
  109. 'name' => '产品',
  110. 'default' => '',
  111. 'desc' => '产品',
  112. 'match' => 'is_numeric',
  113. 'update' => 'hidden',
  114. 'value' => Dever::input('search_option_product_id')
  115. ),
  116. 'type' => array
  117. (
  118. 'type' => 'int-11',
  119. 'name' => '问卷类型',
  120. 'default' => '1',
  121. 'desc' => '问卷类型',
  122. 'match' => 'is_numeric',
  123. 'option' => $type,
  124. 'search' => 'select',
  125. 'update' => 'radio',
  126. 'list' => true,
  127. 'control' => 'type',
  128. ),
  129. 'must' => array
  130. (
  131. 'type' => 'tinyint-1',
  132. 'name' => '是否必填',
  133. 'default' => '1',
  134. 'desc' => '是否必填',
  135. 'match' => 'is_numeric',
  136. 'option' => $must,
  137. 'update' => 'select',
  138. 'list' => true,
  139. 'edit' => true,
  140. ),
  141. 'match' => array
  142. (
  143. 'type' => 'tinyint-1',
  144. 'name' => '验证规则',
  145. 'default' => '1',
  146. 'desc' => '验证规则',
  147. 'match' => 'is_numeric',
  148. 'option' => $match,
  149. //'update' => 'select',
  150. 'show' => 'type=1,2',
  151. ),
  152. 'content' => array
  153. (
  154. 'type' => 'text-255',
  155. 'name' => '选项设置',
  156. 'default' => '',
  157. 'desc' => '选项设置',
  158. 'match' => 'is_string',
  159. 'show' => 'type=12,13',
  160. 'update' => array
  161. (
  162. array
  163. (
  164. 'col' => 'score',
  165. 'name' => '选项分数-用于计算最终结果,暂时可以不填',
  166. 'default' => '0',
  167. 'desc' => '选项分数',
  168. 'match' => 'is_string',
  169. 'update' => 'text',
  170. ),
  171. array
  172. (
  173. 'col' => 'ctype',
  174. 'name' => '选项类型',
  175. 'default' => '1',
  176. 'desc' => '选项类型',
  177. 'match' => 'is_numeric',
  178. 'option' => $content_type,
  179. 'update' => 'radio',
  180. 'control' => 'ctype',
  181. ),
  182. array
  183. (
  184. 'col' => 'title',
  185. 'name' => '选项标题',
  186. 'default' => '',
  187. 'desc' => '请输入选项标题',
  188. 'match' => 'option',
  189. 'update' => 'text',
  190. ),
  191. array
  192. (
  193. 'col' => 'pic',
  194. 'name' => '选项图片',
  195. 'default' => '',
  196. 'desc' => '选项图片',
  197. 'match' => 'option',
  198. 'update' => 'image',
  199. 'key' => '1',
  200. 'show' => 'ctype=1',
  201. ),
  202. array
  203. (
  204. 'col' => 'desc',
  205. 'name' => '导出备注',
  206. 'default' => '',
  207. 'desc' => '导出备注',
  208. 'match' => 'option',
  209. 'update' => 'text',
  210. ),
  211. ),
  212. ),
  213. 'state' => array
  214. (
  215. 'type' => 'tinyint-1',
  216. 'name' => '状态',
  217. 'default' => '1',
  218. 'desc' => '请选择状态',
  219. 'match' => 'is_numeric',
  220. ),
  221. 'cdate' => array
  222. (
  223. 'type' => 'int-11',
  224. 'name' => '申请时间',
  225. 'match' => array('is_numeric', time()),
  226. 'desc' => '',
  227. # 只有insert时才生效
  228. 'insert' => true,
  229. 'search' => 'date',
  230. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  231. ),
  232. ),
  233. 'request' => array
  234. (
  235. # 获取最新一条的用户信息
  236. 'getOne' => array
  237. (
  238. # 匹配的正则或函数 选填项
  239. 'option' => array
  240. (
  241. 'product_id' => 'yes',
  242. 'state' => 1,
  243. ),
  244. 'type' => 'one',
  245. 'order' => array('page_number' => 'desc'),
  246. 'col' => 'page_number',
  247. ),
  248. 'getData' => array
  249. (
  250. # 匹配的正则或函数 选填项
  251. 'option' => array
  252. (
  253. 'product_id' => 'yes',
  254. 'state' => 1,
  255. ),
  256. 'type' => 'all',
  257. 'order' => array('page_number' => 'asc', 'reorder' => 'asc', 'id' => 'desc'),
  258. 'col' => '*|id',
  259. ),
  260. )
  261. );