pic.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <?php
  2. $status = Dever::config('base')->status;
  3. $is_button = array
  4. (
  5. 1 => '显示',
  6. 2 => '不显示',
  7. );
  8. $text = array
  9. (
  10. 1 => '上左',
  11. 2 => '上中',
  12. 3 => '上右',
  13. 4 => '中左',
  14. 5 => '正中',
  15. 6 => '中右',
  16. 7 => '下左',
  17. 8 => '下中',
  18. 9 => '下右',
  19. //10 => '自定义',
  20. );
  21. $type = array
  22. (
  23. 1 => '长屏图',
  24. 2 => '横屏图',
  25. );
  26. $bgcolor_type = array
  27. (
  28. 1 => '设置背景颜色',
  29. 2 => '不设置背景颜色',
  30. );
  31. return array
  32. (
  33. # 表名
  34. 'name' => 'pic',
  35. # 显示给用户看的名称
  36. 'lang' => '图片内容',
  37. 'order' => 100,
  38. 'menu' => false,
  39. 'end' => array
  40. (
  41. 'insert' => 'collection/lib/content.updateTypeId',
  42. 'update' => 'collection/lib/content.updateTypeId',
  43. ),
  44. # 数据结构
  45. 'struct' => array
  46. (
  47. 'id' => array
  48. (
  49. 'type' => 'int-11',
  50. 'name' => 'ID',
  51. 'default' => '',
  52. 'desc' => '',
  53. 'match' => 'is_numeric',
  54. 'order' => 'desc',
  55. //'list' => true,
  56. ),
  57. 'info_id' => array
  58. (
  59. 'type' => 'int-11',
  60. 'name' => '合集',
  61. 'default' => '',
  62. 'desc' => '合集',
  63. 'match' => 'is_numeric',
  64. 'update' => 'hidden',
  65. 'value' => Dever::input('search_option_info_id')
  66. ),
  67. 'content_id' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '合集内容id',
  71. 'default' => '',
  72. 'desc' => '合集内容id',
  73. 'match' => 'is_numeric',
  74. 'update' => 'hidden',
  75. 'value' => Dever::input('search_option_content_id')
  76. ),
  77. 'type' => array
  78. (
  79. 'type' => 'tinyint-1',
  80. 'name' => '展示类型',
  81. 'default' => '1',
  82. 'desc' => '展示类型',
  83. 'match' => 'is_numeric',
  84. 'update' => 'radio',
  85. 'option' => $type,
  86. ),
  87. 'pic_key' => array
  88. (
  89. 'type' => 'varchar-80',
  90. 'name' => '图片md5信息',
  91. 'default' => '',
  92. 'desc' => '图片md5信息',
  93. 'match' => 'is_string',
  94. ),
  95. 'pic' => array
  96. (
  97. 'type' => 'varchar-150',
  98. 'name' => '图片-长屏图图片尺寸750*高度不限或等比尺寸,横屏图图片尺寸宽度不限*1386px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  99. 'default' => '',
  100. 'desc' => '图片',
  101. 'match' => 'option',
  102. 'update' => 'image',
  103. 'key' => '1',
  104. 'place' => '750*1386',
  105. 'list' => 'Dever::load("content/lib/manage.pic", "{pic}")',
  106. ),
  107. 'pic_info' => array
  108. (
  109. 'type' => 'varchar-500',
  110. 'name' => '图片信息',
  111. 'default' => '',
  112. 'desc' => '图片信息',
  113. 'match' => 'is_string',
  114. 'update' => 'hidden',
  115. ),
  116. 'text' => array
  117. (
  118. 'type' => 'text-1000',
  119. 'name' => '文字设置',
  120. 'default' => '',
  121. 'desc' => '文字设置',
  122. 'match' => 'is_string',
  123. 'option' => $text,
  124. 'update' => array
  125. (
  126. array
  127. (
  128. 'col' => 'name',
  129. 'name' => '文字内容',
  130. 'default' => '',
  131. 'desc' => '文字内容',
  132. 'match' => 'is_string',
  133. 'update' => 'textarea',
  134. ),
  135. array
  136. (
  137. 'col' => 'color',
  138. 'name' => '文字颜色',
  139. 'default' => '#000000',
  140. 'desc' => '文字颜色',
  141. 'match' => 'is_string',
  142. 'update' => 'color',
  143. ),
  144. array
  145. (
  146. 'col' => 'bgcolor_type',
  147. 'name' => '是否设置背景颜色',
  148. 'default' => '2',
  149. 'desc' => '是否设置背景颜色',
  150. 'match' => 'is_string',
  151. 'update' => 'radio',
  152. 'option' => $bgcolor_type,
  153. 'control' => 'bgcolor_type',
  154. ),
  155. array
  156. (
  157. 'col' => 'bgcolor',
  158. 'name' => '背景颜色',
  159. 'default' => '#000000',
  160. 'desc' => '背景颜色',
  161. 'match' => 'is_string',
  162. 'update' => 'color',
  163. 'show' => 'bgcolor_type=1'
  164. ),
  165. array
  166. (
  167. 'col' => 'size',
  168. 'name' => '文字大小-直接输入像素数字',
  169. 'default' => '16',
  170. 'desc' => '结果描述',
  171. 'match' => 'is_numeric',
  172. 'update' => 'text',
  173. ),
  174. array
  175. (
  176. 'col' => 'goods_id',
  177. 'name' => '选择商品',
  178. 'default' => '',
  179. 'desc' => '选择商品',
  180. 'match' => 'option',
  181. 'update' => 'select',
  182. 'update_search' => 'goods/lib/manage.search',
  183. ),
  184. ),
  185. ),
  186. 'is_button' => array
  187. (
  188. 'type' => 'int-11',
  189. 'name' => '是否显示保存按钮',
  190. 'default' => '2',
  191. 'desc' => '是否显示保存按钮',
  192. 'match' => 'is_numeric',
  193. 'update' => 'radio',
  194. 'option' => $is_button,
  195. 'control' => 'is_button',
  196. ),
  197. 'button_name' => array
  198. (
  199. 'type' => 'varchar-80',
  200. 'name' => '保存按钮文字内容',
  201. 'default' => '保存图片',
  202. 'desc' => '保存按钮文字内容',
  203. 'match' => 'option',
  204. 'update' => 'textarea',
  205. 'show' => 'is_button=1',
  206. ),
  207. 'button_color' => array
  208. (
  209. 'type' => 'varchar-10',
  210. 'name' => '保存按钮文字颜色',
  211. 'default' => '#000000',
  212. 'desc' => '保存按钮文字颜色',
  213. 'match' => 'option',
  214. 'update' => 'color',
  215. 'show' => 'is_button=1',
  216. ),
  217. 'udate' => array
  218. (
  219. 'type' => 'int-11',
  220. 'name' => '更新时间',
  221. 'match' => array('is_numeric', time()),
  222. 'desc' => '',
  223. ),
  224. 'status' => array
  225. (
  226. 'type' => 'int-11',
  227. 'name' => '发布状态',
  228. 'default' => '1',
  229. 'desc' => '发布状态',
  230. 'match' => 'is_numeric',
  231. //'update' => 'select',
  232. 'option' => $status,
  233. //'search' => 'select',
  234. //'list' => true,
  235. //'edit' => true,
  236. ),
  237. 'reorder' => array
  238. (
  239. 'type' => 'int-11',
  240. 'name' => '排序(数值越大越靠前)',
  241. 'default' => '1',
  242. 'desc' => '请输入排序',
  243. 'match' => 'option',
  244. //'update' => 'text',
  245. 'search' => 'order',
  246. 'list' => true,
  247. 'order' => 'desc',
  248. 'edit' => true,
  249. ),
  250. 'state' => array
  251. (
  252. 'type' => 'tinyint-1',
  253. 'name' => '状态',
  254. 'default' => '1',
  255. 'desc' => '请选择状态',
  256. 'match' => 'is_numeric',
  257. ),
  258. 'cdate' => array
  259. (
  260. 'type' => 'int-11',
  261. 'name' => '录入时间',
  262. 'match' => array('is_numeric', time()),
  263. 'desc' => '',
  264. # 只有insert时才生效
  265. 'insert' => true,
  266. ),
  267. ),
  268. # 管理功能
  269. 'manage' => array
  270. (
  271. ),
  272. # request 请求接口定义
  273. 'request' => array
  274. (
  275. 'getAll' => array
  276. (
  277. # 匹配的正则或函数 选填项
  278. 'option' => array
  279. (
  280. 'info_id' => 'yes',
  281. 'content_id' => 'yes',
  282. 'state' => 1,
  283. ),
  284. 'type' => 'all',
  285. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  286. 'col' => '*',
  287. ),
  288. ),
  289. );