content.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. <?php
  2. $id = Dever::input('search_option_info_id');
  3. $cate = array();
  4. if ($id) {
  5. $journal = Dever::db('journal/info')->one($id);
  6. $cate = Dever::db('journal/cate')->one($journal['cate_id']);
  7. }
  8. /*
  9. $type_config = array
  10. (
  11. # 默认类型
  12. 3 => '图文内容',
  13. 1 => '全屏图',
  14. # 2019-03-27 增加两个类型
  15. 7 => '长图(文字)',
  16. 8 => '横屏图',
  17. 2 => '长图',
  18. 9 => '无边框图片',
  19. 10 => '四宫格图片',
  20. # 2018-12-11 增加3个类型
  21. 4 => '全屏视频',
  22. 5 => '留言视频',
  23. 6 => '留言音频',
  24. # 2019-03-27 增加三个类型
  25. 21 => '对话模板',
  26. # 关联类型 > 10
  27. 11 => '关联图文',
  28. 12 => '关联视频',
  29. 13 => '关联直播',
  30. );
  31. */
  32. $type_default = 3;
  33. $type_config = Dever::db('journal/cate')->config['gettype'];
  34. if ($cate) {
  35. $type = array();
  36. $cate_type = explode(',', $cate['type']);
  37. $i = 0;
  38. foreach ($cate_type as $k => $v) {
  39. if (isset($type_config[$v])) {
  40. if ($i == 0) {
  41. $type_default = $v;
  42. }
  43. $type[$v] = $type_config[$v];
  44. $i++;
  45. }
  46. }
  47. } else {
  48. $type = $type_config;
  49. }
  50. $product = function()
  51. {
  52. $array = array();
  53. $info = Dever::db('product/info')->state();
  54. if($info)
  55. {
  56. $array += $info;
  57. }
  58. return $array;
  59. };
  60. $is_button = array
  61. (
  62. 1 => '显示',
  63. 2 => '不显示',
  64. );
  65. $text = array
  66. (
  67. 1 => '上左',
  68. 2 => '上中',
  69. 3 => '上右',
  70. 4 => '中左',
  71. 5 => '正中',
  72. 6 => '中右',
  73. 7 => '下左',
  74. 8 => '下中',
  75. 9 => '下右',
  76. //10 => '自定义',
  77. );
  78. $palaces = array
  79. (
  80. 1 => '上左',
  81. 2 => '上右',
  82. 3 => '下左',
  83. 4 => '下右',
  84. );
  85. $bgcolor_type = array
  86. (
  87. 1 => '设置背景颜色',
  88. 2 => '不设置背景颜色',
  89. );
  90. $talk_type = array
  91. (
  92. 1 => '文字',
  93. 2 => '图片',
  94. 3 => '音频',
  95. );
  96. $talk_location = array
  97. (
  98. 1 => '显示在左侧',
  99. 2 => '显示在右侧',
  100. );
  101. $author = function()
  102. {
  103. $array = array();
  104. $info = Dever::db('content/author')->state();
  105. if($info)
  106. {
  107. $array += $info;
  108. }
  109. return $array;
  110. };
  111. return array
  112. (
  113. # 表名
  114. 'name' => 'content',
  115. # 显示给用户看的名称
  116. 'lang' => '内页管理',
  117. 'menu' => false,
  118. 'gettype' => $type,
  119. 'text' => $text,
  120. 'end' => array
  121. (
  122. 'insert' => 'journal/lib/manage.addContent',
  123. ),
  124. # 数据结构
  125. 'struct' => array
  126. (
  127. 'id' => array
  128. (
  129. 'type' => 'int-11',
  130. 'name' => 'ID',
  131. 'default' => '',
  132. 'desc' => '',
  133. 'match' => 'is_numeric',
  134. //'search' => 'order',
  135. //'list' => true,
  136. ),
  137. 'info_id' => array
  138. (
  139. 'type' => 'int-11',
  140. 'name' => '小刊',
  141. 'default' => '',
  142. 'desc' => '小刊',
  143. 'match' => 'is_numeric',
  144. 'update' => 'hidden',
  145. 'value' => Dever::input('search_option_info_id')
  146. ),
  147. 'type' => array
  148. (
  149. 'type' => 'int-11',
  150. 'name' => '类型',
  151. 'default' => $type_default,
  152. 'desc' => '类型',
  153. 'match' => 'is_numeric',
  154. 'update' => 'radio',
  155. 'option' => $type,
  156. 'control' => 'type',
  157. ),
  158. 'name' => array
  159. (
  160. 'type' => 'varchar-80',
  161. 'name' => '标题',
  162. 'default' => '',
  163. 'desc' => '标题',
  164. 'match' => 'is_string',
  165. 'update' => 'text',
  166. 'list' => true,
  167. //增加预览
  168. 'preview' => true,
  169. 'show' => 'type=3,5,6,32',
  170. ),
  171. 'url' => array
  172. (
  173. 'type' => 'varchar-800',
  174. 'name' => '链接地址',
  175. 'default' => '',
  176. 'desc' => '链接地址',
  177. 'match' => 'is_string',
  178. 'update' => 'text',
  179. 'list' => true,
  180. //增加预览
  181. 'preview' => true,
  182. 'show' => 'type=32',
  183. ),
  184. 'video' => array
  185. (
  186. 'type' => 'varchar-800',
  187. 'name' => '上传视频-视频格式mp4,上传大小不能超过4G',
  188. 'default' => '',
  189. 'desc' => '上传点播视频',
  190. 'match' => 'is_string',
  191. 'update' => 'upload',
  192. 'key' => '3',
  193. 'place' => '150',
  194. 'upload' => 'qiniu',
  195. 'large' => true,
  196. //不覆盖原文件,生成新文件
  197. 'cover' => 2,
  198. 'show' => 'type=4,5',
  199. ),
  200. 'video_info' => array
  201. (
  202. 'type' => 'text-255',
  203. 'name' => '视频信息',
  204. 'default' => '',
  205. 'desc' => '视频信息',
  206. 'match' => 'is_string',
  207. ),
  208. 'music' => array
  209. (
  210. 'type' => 'varchar-800',
  211. 'name' => '上传音频-视频格式mp3,上传大小不能超过100M',
  212. 'default' => '',
  213. 'desc' => '上传音频',
  214. 'match' => 'is_string',
  215. 'update' => 'upload',
  216. 'key' => '2',
  217. 'place' => '150',
  218. 'upload' => 'qiniu',
  219. 'large' => true,
  220. //不覆盖原文件,生成新文件
  221. 'cover' => 2,
  222. 'show' => 'type=6',
  223. ),
  224. 'cover' => array
  225. (
  226. 'type' => 'varchar-150',
  227. 'name' => '封面图-全屏视频的封面图图片尺寸750*1386px或等比尺寸,留言视频的封面图图片尺寸750*422px或等比尺寸,留言音频的封面图图片尺寸750*422px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  228. 'default' => '',
  229. 'desc' => '封面图',
  230. 'match' => 'option',
  231. 'update' => 'image',
  232. 'key' => '1',
  233. 'place' => '150',
  234. 'show' => 'type=4,5,6',
  235. ),
  236. 'focus' => array
  237. (
  238. 'type' => 'text-255',
  239. 'name' => '焦点图',
  240. 'default' => '',
  241. 'desc' => '焦点图',
  242. 'match' => 'option',
  243. 'update' => 'image',
  244. 'key' => '1',
  245. 'place' => '150',
  246. 'show' => 'type=3',
  247. ),
  248. 'author_id' => array
  249. (
  250. 'type' => 'int-11',
  251. 'name' => '作者',
  252. 'default' => '1',
  253. 'desc' => '作者',
  254. 'match' => 'is_numeric',
  255. 'update' => 'select',
  256. 'option' => $author,
  257. //'search' => 'select',
  258. 'show' => 'type=3',
  259. ),
  260. 'content' => array
  261. (
  262. 'type' => 'text-255',
  263. 'name' => '内容',
  264. 'default' => '',
  265. 'desc' => '请输入内容',
  266. 'match' => 'is_string',
  267. 'update' => 'editor',
  268. 'show' => 'type=3',
  269. //自定义编辑器右侧按钮
  270. 'editor' => array
  271. (
  272. 'name' => '选择插入模块',
  273. 'button' => array
  274. (
  275. array
  276. (
  277. # 名称
  278. 'name' => '图片',
  279. # 资源库id
  280. 'key' => 1,
  281. # 类型
  282. 'type' => 'image',
  283. ),
  284. array
  285. (
  286. 'name' => '音频',
  287. 'key' => 2,
  288. 'type' => 'media',
  289. ),
  290. array
  291. (
  292. 'name' => '视频',
  293. 'key' => 'video/lib/core.vod',
  294. ),
  295. array
  296. (
  297. 'name' => '直播',
  298. 'key' => 'video/lib/core.live',
  299. ),
  300. array
  301. (
  302. 'name' => '小程序',
  303. 'key' => 'content/lib/applet.update',
  304. 'type' => 'update',
  305. ),
  306. ),
  307. ),
  308. ),
  309. 'pic' => array
  310. (
  311. 'type' => 'varchar-150',
  312. 'name' => '图片-全屏图图片尺寸750*1386px或等比尺寸,长屏图图片尺寸750*高度不限或等比尺寸,横屏图图片尺寸宽度不限*1386px或等比尺寸,长图图片尺寸750*高度不限或等比尺寸,无边框图片尺寸长和宽均没有限制,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  313. 'default' => '',
  314. 'desc' => '图片',
  315. 'match' => 'option',
  316. 'update' => 'image',
  317. 'key' => '1',
  318. 'place' => '150',
  319. 'show' => 'type=1,2,7,8,9',
  320. ),
  321. 'pic_info' => array
  322. (
  323. 'type' => 'varchar-500',
  324. 'name' => '图片信息',
  325. 'default' => '',
  326. 'desc' => '图片信息',
  327. 'match' => 'is_string',
  328. 'update' => 'hidden',
  329. ),
  330. 'is_button' => array
  331. (
  332. 'type' => 'int-11',
  333. 'name' => '是否显示保存按钮',
  334. 'default' => '1',
  335. 'desc' => '是否显示保存按钮',
  336. 'match' => 'is_numeric',
  337. 'update' => 'radio',
  338. 'option' => $is_button,
  339. // 'search' => 'select',
  340. 'show' => 'type=1,7,8',
  341. 'control' => 'is_button',
  342. ),
  343. 'button_name' => array
  344. (
  345. 'type' => 'varchar-80',
  346. 'name' => '保存按钮文字内容',
  347. 'default' => '保存图片',
  348. 'desc' => '保存按钮文字内容',
  349. 'match' => 'option',
  350. 'update' => 'textarea',
  351. 'show' => 'type=1,7,8',
  352. ),
  353. 'button_color' => array
  354. (
  355. 'type' => 'varchar-10',
  356. 'name' => '保存按钮文字颜色',
  357. 'default' => '#000000',
  358. 'desc' => '保存按钮文字颜色',
  359. 'match' => 'option',
  360. 'update' => 'color',
  361. 'show' => 'type=1,7,8',
  362. ),
  363. 'product_id' => array
  364. (
  365. 'type' => 'varchar-800',
  366. 'name' => '关联商品',
  367. 'default' => '',
  368. 'desc' => '关联商品',
  369. 'match' => 'option',
  370. 'update' => 'checkbox',
  371. 'show' => 'type=31',
  372. //'option' => $product,
  373. ),
  374. 'article_id' => array
  375. (
  376. 'type' => 'int-11',
  377. 'name' => '关联图文',
  378. 'default' => '',
  379. 'desc' => '关联图文',
  380. 'match' => 'option',
  381. 'update' => 'select',
  382. 'show' => 'type=11',
  383. 'update_search' => 'journal/lib/manage.search_article',
  384. ),
  385. 'vod_id' => array
  386. (
  387. 'type' => 'int-11',
  388. 'name' => '关联视频',
  389. 'default' => '',
  390. 'desc' => '关联视频',
  391. 'match' => 'option',
  392. 'update' => 'select',
  393. 'show' => 'type=12',
  394. 'update_search' => 'journal/lib/manage.search_vod',
  395. ),
  396. 'live_id' => array
  397. (
  398. 'type' => 'int-11',
  399. 'name' => '关联直播',
  400. 'default' => '',
  401. 'desc' => '关联直播',
  402. 'match' => 'option',
  403. 'update' => 'select',
  404. 'show' => 'type=13',
  405. 'update_search' => 'journal/lib/manage.search_live',
  406. ),
  407. 'text' => array
  408. (
  409. 'type' => 'text-1000',
  410. 'name' => '文字设置',
  411. 'default' => '',
  412. 'desc' => '文字设置',
  413. 'match' => 'is_string',
  414. 'option' => $text,
  415. 'show' => 'type=1,7,8',
  416. 'update' => array
  417. (
  418. array
  419. (
  420. 'col' => 'name',
  421. 'name' => '文字内容',
  422. 'default' => '',
  423. 'desc' => '文字内容',
  424. 'match' => 'is_string',
  425. 'update' => 'textarea',
  426. ),
  427. array
  428. (
  429. 'col' => 'color',
  430. 'name' => '文字颜色',
  431. 'default' => '#000000',
  432. 'desc' => '文字颜色',
  433. 'match' => 'is_string',
  434. 'update' => 'color',
  435. ),
  436. array
  437. (
  438. 'col' => 'bgcolor_type',
  439. 'name' => '是否设置背景颜色',
  440. 'default' => '2',
  441. 'desc' => '是否设置背景颜色',
  442. 'match' => 'is_string',
  443. 'update' => 'radio',
  444. 'option' => $bgcolor_type,
  445. 'control' => 'bgcolor_type',
  446. ),
  447. array
  448. (
  449. 'col' => 'bgcolor',
  450. 'name' => '背景颜色',
  451. 'default' => '#000000',
  452. 'desc' => '背景颜色',
  453. 'match' => 'is_string',
  454. 'update' => 'color',
  455. 'show' => 'bgcolor_type=1'
  456. ),
  457. array
  458. (
  459. 'col' => 'size',
  460. 'name' => '文字大小-直接输入像素数字',
  461. 'default' => '16',
  462. 'desc' => '结果描述',
  463. 'match' => 'is_numeric',
  464. 'update' => 'text',
  465. ),
  466. ),
  467. ),
  468. 'palaces' => array
  469. (
  470. 'type' => 'text-1000',
  471. 'name' => '四宫格图片',
  472. 'default' => '',
  473. 'desc' => '四宫格图片',
  474. 'match' => 'is_string',
  475. 'option' => $palaces,
  476. 'show' => 'type=10',
  477. 'update' => array
  478. (
  479. array
  480. (
  481. 'col' => 'pic',
  482. 'name' => '图片',
  483. 'default' => '',
  484. 'desc' => '图片',
  485. 'match' => 'is_string',
  486. 'update' => 'image',
  487. 'key' => 1,
  488. ),
  489. ),
  490. ),
  491. 'talk_pic' => array
  492. (
  493. 'type' => 'varchar-150',
  494. 'name' => '置顶图片-图片尺寸750*1386px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式。为空则不显示',
  495. 'default' => '',
  496. 'desc' => '图片',
  497. 'match' => 'option',
  498. 'update' => 'image',
  499. 'key' => '1',
  500. 'place' => '150',
  501. 'show' => 'type=21',
  502. ),
  503. 'talk' => array
  504. (
  505. 'type' => 'text-1000',
  506. 'name' => '对话设置',
  507. 'default' => '',
  508. 'desc' => '对话设置',
  509. 'match' => 'is_string',
  510. 'show' => 'type=21',
  511. 'update' => array
  512. (
  513. array
  514. (
  515. 'col' => 'talk_location',
  516. 'name' => '对话位置',
  517. 'default' => '1',
  518. 'desc' => '对话位置',
  519. 'match' => 'is_string',
  520. 'update' => 'radio',
  521. 'option' => $talk_location,
  522. ),
  523. array
  524. (
  525. 'col' => 'avatar',
  526. 'name' => '头像-图片尺寸120*120px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式。',
  527. 'default' => '',
  528. 'desc' => '头像',
  529. 'match' => 'option',
  530. 'update' => 'image',
  531. 'key' => 1,
  532. ),
  533. array
  534. (
  535. 'col' => 'talk_type',
  536. 'name' => '对话类型',
  537. 'default' => '1',
  538. 'desc' => '对话类型',
  539. 'match' => 'is_string',
  540. 'update' => 'radio',
  541. 'option' => $talk_type,
  542. 'control' => 'talk_type',
  543. ),
  544. array
  545. (
  546. 'col' => 'text',
  547. 'name' => '文字内容-为空则不显示',
  548. 'default' => '',
  549. 'desc' => '文字内容',
  550. 'match' => 'option',
  551. 'update' => 'textarea',
  552. 'show' => 'talk_type=1'
  553. ),
  554. array
  555. (
  556. 'col' => 'pic',
  557. 'name' => '图片-图片尺寸750*1386px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式,可以上传GIF格式。为空则不显示',
  558. 'default' => '',
  559. 'desc' => '图片',
  560. 'match' => 'option',
  561. 'update' => 'image',
  562. 'key' => 1,
  563. 'show' => 'talk_type=2'
  564. ),
  565. array
  566. (
  567. 'col' => 'audio',
  568. 'name' => '音频-音频格式mp3,上传大小不能超过100M,为空则不显示',
  569. 'default' => '',
  570. 'desc' => '音频',
  571. 'match' => 'option',
  572. 'update' => 'upload',
  573. 'key' => 2,
  574. 'show' => 'talk_type=3'
  575. ),
  576. ),
  577. ),
  578. 'reorder' => array
  579. (
  580. 'type' => 'int-11',
  581. 'name' => '页号',
  582. 'default' => '1',
  583. 'desc' => '请输入排序',
  584. 'match' => 'option',
  585. //'update' => 'text',
  586. 'search' => 'order',
  587. 'list' => true,
  588. 'order' => 'asc',
  589. 'edit' => true,
  590. ),
  591. 'state' => array
  592. (
  593. 'type' => 'tinyint-1',
  594. 'name' => '状态',
  595. 'default' => '1',
  596. 'desc' => '请选择状态',
  597. 'match' => 'is_numeric',
  598. ),
  599. 'cdate' => array
  600. (
  601. 'type' => 'int-11',
  602. 'name' => '创建时间',
  603. 'match' => array('is_numeric', time()),
  604. 'desc' => '',
  605. # 只有insert时才生效
  606. 'insert' => true,
  607. //'search' => 'date',
  608. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  609. ),
  610. ),
  611. 'manage' => array
  612. (
  613. 'insert' => false,
  614. 'edit' => false,
  615. //'delete' => false,
  616. 'num' => false,
  617. 'page_list_table' => 'journal',
  618. # 自定义快捷新增和编辑
  619. 'button' => array
  620. (
  621. '新增内页' => array('location', 'add'),
  622. '预览' => array('fast', 'main/preview.get?type=4&id=' . Dever::input('search_option_info_id')),
  623. ),
  624. ),
  625. # request 请求接口定义
  626. 'request' => array
  627. (
  628. 'getAll' => array
  629. (
  630. # 匹配的正则或函数 选填项
  631. 'option' => array
  632. (
  633. 'info_id' => 'yes',
  634. 'state' => 1,
  635. ),
  636. 'type' => 'all',
  637. 'order' => array('reorder' => 'asc', 'id' => 'desc'),
  638. 'page' => array(10, 'list'),
  639. 'col' => '*',
  640. ),
  641. 'getAllByReorder' => array
  642. (
  643. # 匹配的正则或函数 选填项
  644. 'option' => array
  645. (
  646. 'info_id' => 'yes',
  647. 'state' => 1,
  648. ),
  649. 'type' => 'one',
  650. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  651. 'col' => '*',
  652. ),
  653. )
  654. );