config.php 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. <?php
  2. $home_top_type = array
  3. (
  4. 1 => '显示',
  5. 2 => '不显示',
  6. );
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'config',
  11. # 显示给用户看的名称
  12. 'lang' => '网站基础信息',
  13. 'order' => 1,
  14. # 数据结构
  15. 'struct' => array
  16. (
  17. 'id' => array
  18. (
  19. 'type' => 'int-11',
  20. 'name' => '平台ID',
  21. 'default' => '',
  22. 'desc' => '',
  23. 'match' => 'is_numeric',
  24. ),
  25. 'hr1' => array
  26. (
  27. 'name' => '网站基本信息',
  28. 'class' => '',//本项必须填写
  29. 'attr' => '',
  30. ),
  31. 'name' => array
  32. (
  33. 'type' => 'varchar-32',
  34. 'name' => '网站名称',
  35. 'default' => '',
  36. 'desc' => '请输入网站名称',
  37. 'match' => 'is_string',
  38. 'update' => 'text',
  39. ),
  40. 'site' => array
  41. (
  42. 'type' => 'varchar-200',
  43. 'name' => '网站地址',
  44. 'default' => '',
  45. 'desc' => '网站地址',
  46. 'match' => 'is_string',
  47. 'update' => 'text',
  48. ),
  49. 'logo' => array
  50. (
  51. 'type' => 'varchar-150',
  52. 'name' => '网站LOGO',
  53. 'default' => '',
  54. 'desc' => '平台LOGO',
  55. 'match' => 'option',
  56. 'update' => 'image',
  57. 'key' => '1',
  58. 'place' => '179*48',
  59. ),
  60. 'citys' => array
  61. (
  62. 'type' => 'varchar-1000',
  63. 'name' => '开通城市-直接填写城市名称,多个用换行隔开',
  64. 'default' => '',
  65. 'desc' => '开通城市',
  66. 'match' => 'option',
  67. 'update' => 'textarea',
  68. ),
  69. 'hr5' => array
  70. (
  71. 'name' => '首页视频信息',
  72. 'class' => '',//本项必须填写
  73. 'attr' => '',
  74. ),
  75. 'video_name' => array
  76. (
  77. 'type' => 'varchar-32',
  78. 'name' => '视频名称',
  79. 'default' => '',
  80. 'desc' => '请输入视频名称',
  81. 'match' => 'is_string',
  82. 'update' => 'text',
  83. ),
  84. 'video_desc' => array
  85. (
  86. 'type' => 'varchar-800',
  87. 'name' => '视频介绍',
  88. 'default' => '',
  89. 'desc' => '请输入视频介绍',
  90. 'match' => 'is_string',
  91. 'update' => 'text',
  92. ),
  93. 'video' => array
  94. (
  95. 'type' => 'varchar-800',
  96. 'name' => '上传视频-视频格式mp4,上传大小不能超过4G',
  97. 'default' => '',
  98. 'desc' => '上传视频',
  99. 'match' => 'is_string',
  100. 'update' => 'video',
  101. 'key' => '3',
  102. 'place' => '150',
  103. 'upload' => 'yun',
  104. 'large' => true,
  105. 'cover' => 'pic',//封面图字段名
  106. ),
  107. 'video_pic' => array
  108. (
  109. 'type' => 'varchar-150',
  110. 'name' => '封面图-封面图自动生成,也可以直接上传,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  111. 'default' => '',
  112. 'desc' => '封面图',
  113. 'match' => 'option',
  114. 'update' => 'image',
  115. 'key' => '1',
  116. 'place' => '1200*675',
  117. ),
  118. 'hr21' => array
  119. (
  120. 'name' => '企业动态',
  121. 'class' => '',//本项必须填写
  122. 'attr' => '',
  123. ),
  124. 'news_name' => array
  125. (
  126. 'type' => 'varchar-100',
  127. 'name' => '企业动态标题',
  128. 'default' => '',
  129. 'desc' => '企业动态标题',
  130. 'match' => 'is_string',
  131. 'update' => 'text',
  132. ),
  133. 'news_desc' => array
  134. (
  135. 'type' => 'varchar-500',
  136. 'name' => '企业动态介绍',
  137. 'default' => '',
  138. 'desc' => '企业动态介绍',
  139. 'match' => 'is_string',
  140. 'update' => 'text',
  141. ),
  142. 'news_pic' => array
  143. (
  144. 'type' => 'varchar-150',
  145. 'name' => '企业动态图片',
  146. 'default' => '',
  147. 'desc' => '企业动态图片',
  148. 'match' => 'option',
  149. 'update' => 'image',
  150. 'key' => '1',
  151. 'place' => '1920*630',
  152. ),
  153. 'hr20' => array
  154. (
  155. 'name' => '联系我们',
  156. 'class' => '',//本项必须填写
  157. 'attr' => '',
  158. ),
  159. 'contact_desc' => array
  160. (
  161. 'type' => 'varchar-800',
  162. 'name' => '联系我们介绍',
  163. 'default' => '',
  164. 'desc' => '联系我们介绍',
  165. 'match' => 'is_string',
  166. 'update' => 'textarea',
  167. ),
  168. 'contact' => array
  169. (
  170. 'type' => 'text-1000',
  171. 'name' => '联系我们配置',
  172. 'default' => '',
  173. 'desc' => '联系我们配置',
  174. 'match' => 'is_string',
  175. 'update' => array
  176. (
  177. array
  178. (
  179. 'col' => 'avatar',
  180. 'name' => '头像',
  181. 'default' => '',
  182. 'desc' => '头像',
  183. 'match' => 'option',
  184. 'update' => 'image',
  185. 'key' => '1',
  186. 'place' => '300*300',
  187. ),
  188. array
  189. (
  190. 'col' => 'info',
  191. 'name' => '职务',
  192. 'default' => '',
  193. 'desc' => '职务',
  194. 'match' => 'is_string',
  195. 'update' => 'text',
  196. ),
  197. array
  198. (
  199. 'col' => 'name',
  200. 'name' => '名称',
  201. 'default' => '',
  202. 'desc' => '名称',
  203. 'match' => 'is_string',
  204. 'update' => 'text',
  205. ),
  206. array
  207. (
  208. 'col' => 'contact',
  209. 'name' => '联系方式-填写手机号或者邮箱',
  210. 'default' => '',
  211. 'desc' => '联系方式',
  212. 'match' => 'is_string',
  213. 'update' => 'text',
  214. ),
  215. ),
  216. ),
  217. 'contact_address' => array
  218. (
  219. 'type' => 'varchar-500',
  220. 'name' => '公司地址',
  221. 'default' => '',
  222. 'desc' => '公司地址',
  223. 'match' => 'is_string',
  224. 'update' => 'text',
  225. ),
  226. 'contact_address_map' => array
  227. (
  228. 'type' => 'varchar-800',
  229. 'name' => '地址地图链接',
  230. 'default' => '',
  231. 'desc' => '地址地图链接',
  232. 'match' => 'is_string',
  233. 'update' => 'textarea',
  234. ),
  235. 'hr2' => array
  236. (
  237. 'name' => '网站SEO信息',
  238. 'class' => '',//本项必须填写
  239. 'attr' => '',
  240. ),
  241. 'seo_keyword' => array
  242. (
  243. 'type' => 'varchar-1000',
  244. 'name' => 'SEO关键词',
  245. 'default' => '',
  246. 'desc' => 'SEO关键词',
  247. 'match' => 'option',
  248. 'update' => 'textarea',
  249. ),
  250. 'seo_desc' => array
  251. (
  252. 'type' => 'varchar-1000',
  253. 'name' => 'SEO描述',
  254. 'default' => '',
  255. 'desc' => 'SEO描述',
  256. 'match' => 'option',
  257. 'update' => 'textarea',
  258. ),
  259. 'hr3' => array
  260. (
  261. 'name' => '联系信息',
  262. 'class' => '',//本项必须填写
  263. 'attr' => '',
  264. ),
  265. 'phone' => array
  266. (
  267. 'type' => 'varchar-100',
  268. 'name' => '客服电话',
  269. 'default' => '',
  270. 'desc' => '请输入客服电话',
  271. 'match' => 'option',
  272. 'update' => 'text',
  273. ),
  274. 'worktime' => array
  275. (
  276. 'type' => 'varchar-100',
  277. 'name' => '工作时间',
  278. 'default' => '',
  279. 'desc' => '请输入工作时间',
  280. 'match' => 'option',
  281. 'update' => 'textarea',
  282. ),
  283. 'wechat' => array
  284. (
  285. 'type' => 'varchar-150',
  286. 'name' => '公众号',
  287. 'default' => '',
  288. 'desc' => '公众号',
  289. 'match' => 'option',
  290. 'update' => 'image',
  291. 'key' => '1',
  292. 'place' => '150*150',
  293. ),
  294. 'douyin' => array
  295. (
  296. 'type' => 'varchar-150',
  297. 'name' => '抖音',
  298. 'default' => '',
  299. 'desc' => '抖音',
  300. 'match' => 'option',
  301. 'update' => 'image',
  302. 'key' => '1',
  303. 'place' => '150*150',
  304. ),
  305. 'weibo' => array
  306. (
  307. 'type' => 'varchar-150',
  308. 'name' => '微博',
  309. 'default' => '',
  310. 'desc' => '微博',
  311. 'match' => 'option',
  312. 'update' => 'image',
  313. 'key' => '1',
  314. 'place' => '150*150',
  315. ),
  316. 'foot' => array
  317. (
  318. 'type' => 'text-255',
  319. 'name' => '底部信息',
  320. 'default' => '',
  321. 'desc' => '底部信息',
  322. 'match' => 'option',
  323. 'update' => 'editor',
  324. 'key' => '1',
  325. ),
  326. 'state' => array
  327. (
  328. 'type' => 'tinyint-1',
  329. 'name' => '状态',
  330. 'default' => '1',
  331. 'desc' => '请选择状态',
  332. 'match' => 'is_numeric',
  333. ),
  334. 'cdate' => array
  335. (
  336. 'type' => 'int-11',
  337. 'name' => '录入时间',
  338. 'match' => array('is_numeric', time()),
  339. 'desc' => '',
  340. # 只有insert时才生效
  341. 'insert' => true,
  342. ),
  343. ),
  344. 'default' => array
  345. (
  346. 'col' => 'name,cdate',
  347. 'value' => array
  348. (
  349. '"厨人易料",' . time(),
  350. ),
  351. ),
  352. 'manage' => array
  353. (
  354. # 后台管理不要列表页
  355. 'list' => 'update',
  356. ),
  357. );