meeting.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. <?php
  2. $author = function()
  3. {
  4. $array = array();
  5. $author = Dever::load('set/author-state');
  6. if($author)
  7. {
  8. $array += $author;
  9. }
  10. return $array;
  11. };
  12. $info = function()
  13. {
  14. $array = array();
  15. $info = Dever::load('set/info-state');
  16. if($info)
  17. {
  18. $array += $info;
  19. }
  20. return $array;
  21. };
  22. $cate = function()
  23. {
  24. $array = array();
  25. $cate = Dever::load('content/meeting_cate-state');
  26. if($cate)
  27. {
  28. $array += $cate;
  29. }
  30. return $array;
  31. };
  32. return array
  33. (
  34. # 表名
  35. 'name' => 'meeting',
  36. # 显示给用户看的名称
  37. 'lang' => '会议管理',
  38. 'order' => 170,
  39. # 数据结构
  40. 'struct' => array
  41. (
  42. 'id' => array
  43. (
  44. 'type' => 'int-11',
  45. 'name' => 'ID',
  46. 'default' => '',
  47. 'desc' => '',
  48. 'match' => 'is_numeric',
  49. 'search' => 'order',
  50. 'list' => true,
  51. ),
  52. 'name' => array
  53. (
  54. 'type' => 'varchar-80',
  55. 'name' => '标题',
  56. 'default' => '',
  57. 'desc' => '请输入标题',
  58. 'match' => 'is_string',
  59. 'update' => 'text',
  60. 'search' => 'fulltext',
  61. 'list' => true,
  62. ),
  63. 'info_id' => array
  64. (
  65. 'type' => 'int-11',
  66. 'name' => '所属小程序',
  67. 'default' => '1',
  68. 'desc' => '请选择所属小程序',
  69. 'match' => 'is_numeric',
  70. 'update' => 'select',
  71. 'option' => $info,
  72. 'search' => 'select',
  73. 'list' => '{info_id} > 0 ? Dever::load("set/info-one#name", {info_id}) : "未知"',
  74. ),
  75. 'cate_id' => array
  76. (
  77. 'type' => 'int-11',
  78. 'name' => '会议分类',
  79. 'default' => '1',
  80. 'desc' => '请选择会议分类',
  81. 'match' => 'is_numeric',
  82. 'update' => 'select',
  83. 'option' => $cate,
  84. 'search' => 'select',
  85. 'list' => '{cate_id} > 0 ? Dever::load("content/meeting_cate-one#name", {cate_id}) : "未知"',
  86. ),
  87. 'desc' => array
  88. (
  89. 'type' => 'varchar-255',
  90. 'name' => '描述',
  91. 'default' => '',
  92. 'desc' => '请输入描述',
  93. 'match' => 'option',
  94. 'update' => 'textarea',
  95. 'search' => 'fulltext',
  96. //'list' => true,
  97. ),
  98. 'pic' => array
  99. (
  100. 'type' => 'varchar-150',
  101. 'name' => '封面',
  102. 'default' => '',
  103. 'desc' => '请选择封面',
  104. 'match' => 'is_string',
  105. 'update' => 'image',
  106. 'key' => '1',
  107. 'place' => '150',
  108. ),
  109. 'link' => array
  110. (
  111. 'type' => 'varchar-200',
  112. 'name' => '链接-填写此项则直接跳转到该链接',
  113. 'default' => '',
  114. 'desc' => '请输入标题',
  115. 'match' => 'option',
  116. 'update' => 'text',
  117. 'search' => 'fulltext',
  118. //'list' => true,
  119. ),
  120. 'top' => array
  121. (
  122. 'type' => 'varchar-150',
  123. 'name' => '头图',
  124. 'default' => '',
  125. 'desc' => '请选择头图',
  126. 'match' => 'option',
  127. 'update' => 'image',
  128. 'key' => '1',
  129. 'place' => '150',
  130. ),
  131. 'img' => array
  132. (
  133. 'type' => 'varchar-150',
  134. 'name' => '首页轮播图',
  135. 'default' => '',
  136. 'desc' => '首页轮播图',
  137. 'match' => 'option',
  138. 'update' => 'image',
  139. 'key' => '1',
  140. 'place' => '150',
  141. ),
  142. 'sdate' => array
  143. (
  144. 'type' => 'int-11',
  145. 'name' => '开始时间-头部的正在进行的会议按照开始时间和结束时间判定',
  146. 'match' => 'is_numeric',
  147. 'desc' => '开始时间',
  148. 'update' => 'date',
  149. //'list' => 'date("Y-m-d H:i:s", {sdate})',
  150. 'callback' => 'maketime',
  151. ),
  152. 'edate' => array
  153. (
  154. 'type' => 'int-11',
  155. 'name' => '结束时间',
  156. 'match' => 'is_numeric',
  157. 'desc' => '结束时间',
  158. 'update' => 'date',
  159. //'list' => 'date("Y-m-d H:i:s", {edate})',
  160. 'callback' => 'maketime',
  161. ),
  162. 'num' => array
  163. (
  164. 'type' => 'varchar-80',
  165. 'name' => '参会人数',
  166. 'default' => '',
  167. 'desc' => '请输入参会人数',
  168. 'match' => 'option',
  169. 'update' => 'text',
  170. //'search' => 'fulltext',
  171. 'list' => true,
  172. 'edit' => true,
  173. ),
  174. 'num_add_view' => array
  175. (
  176. 'type' => 'int-11',
  177. 'name' => '手动增加浏览量pv',
  178. 'default' => '0',
  179. 'desc' => '请填写手动增加浏览量pv',
  180. 'match' => 'option',
  181. 'update' => 'text',
  182. ),
  183. 'num_up' => array
  184. (
  185. 'type' => 'int-11',
  186. 'name' => '赞数',
  187. 'default' => '0',
  188. 'desc' => '请填写赞数',
  189. 'match' => 'option',
  190. //'search' => 'order',
  191. 'list' => '"赞数:{num_up}<br />浏览量:{num_view}+{num_add_view}<br />回复数:{num_review}<br />"',
  192. 'list_name' => '统计数字',
  193. ),
  194. 'num_view' => array
  195. (
  196. 'type' => 'int-11',
  197. 'name' => '浏览量pv',
  198. 'default' => '0',
  199. 'desc' => '请填写浏览量pv',
  200. 'match' => 'option',
  201. 'search' => 'order',
  202. //'list' => '{num_view}+{num_add_view}',
  203. ),
  204. 'num_review' => array
  205. (
  206. 'type' => 'int-11',
  207. 'name' => '回复数',
  208. 'default' => '0',
  209. 'desc' => '请填写回复数',
  210. 'search' => 'order',
  211. 'match' => 'option',
  212. //'list' => true,
  213. ),
  214. 'content' => array
  215. (
  216. 'type' => 'text-800',
  217. 'name' => '内容',
  218. 'default' => '',
  219. 'desc' => '请输入内容',
  220. 'match' => 'option',
  221. 'update' => 'editor',
  222. 'key' => 1,
  223. ),
  224. 'reorder' => array
  225. (
  226. 'type' => 'int-11',
  227. 'name' => '排序(数值越大越靠前)',
  228. 'default' => '1',
  229. 'desc' => '请输入排序',
  230. 'match' => 'option',
  231. 'update' => 'text',
  232. 'search' => 'order',
  233. 'list_name' => '排序',
  234. 'list' => true,
  235. 'order' => 'desc',
  236. 'edit' => true,
  237. ),
  238. 'state' => array
  239. (
  240. 'type' => 'tinyint-1',
  241. 'name' => '状态',
  242. 'default' => '1',
  243. 'desc' => '请选择状态',
  244. 'match' => 'is_numeric',
  245. ),
  246. 'cdate' => array
  247. (
  248. 'type' => 'int-11',
  249. 'name' => '录入时间',
  250. 'match' => array('is_numeric', time()),
  251. 'desc' => '',
  252. # 只有insert时才生效
  253. 'insert' => true,
  254. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  255. ),
  256. ),
  257. # 管理功能
  258. 'manage' => array
  259. (
  260. ),
  261. # request 请求接口定义
  262. 'request' => array
  263. (
  264. 'getAll' => array
  265. (
  266. # 匹配的正则或函数 选填项
  267. 'option' => array
  268. (
  269. 'info_id' => 'yes',
  270. 'cate_id' => 'yes',
  271. 'ids' => array('yes-id', '!='),
  272. ),
  273. 'type' => 'all',
  274. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  275. 'page' => array(10, 'list'),
  276. 'col' => '*,(num_view+num_add_view) as num_view',
  277. ),
  278. 'getOld' => array
  279. (
  280. # 匹配的正则或函数 选填项
  281. 'option' => array
  282. (
  283. 'info_id' => 'yes',
  284. 'cate_id' => 'yes',
  285. 'end' => array('yes-edate', '<'),
  286. ),
  287. 'type' => 'all',
  288. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  289. 'page' => array(10, 'list'),
  290. 'col' => '*',
  291. ),
  292. 'getCur' => array
  293. (
  294. # 匹配的正则或函数 选填项
  295. 'option' => array
  296. (
  297. 'info_id' => 'yes',
  298. 'start' => array('yes-sdate', '<='),
  299. 'end' => array('yes-edate', '>='),
  300. ),
  301. 'type' => 'all',
  302. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  303. 'col' => '*',
  304. ),
  305. 'getWei' => array
  306. (
  307. # 匹配的正则或函数 选填项
  308. 'option' => array
  309. (
  310. 'info_id' => 'yes',
  311. 'start' => array('yes-sdate', '>'),
  312. ),
  313. 'type' => 'all',
  314. 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  315. 'col' => '*',
  316. ),
  317. # 更新浏览量
  318. 'addView' => array
  319. (
  320. 'type' => 'update',
  321. 'where' => array
  322. (
  323. 'id' => 'yes',
  324. ),
  325. 'set' => array
  326. (
  327. 'num_view' => array('1', '+='),
  328. ),
  329. ),
  330. # 更新回复数
  331. 'addReview' => array
  332. (
  333. 'type' => 'update',
  334. 'where' => array
  335. (
  336. 'id' => 'yes',
  337. ),
  338. 'set' => array
  339. (
  340. 'num_review' => array('1', '+='),
  341. ),
  342. ),
  343. # 更新点赞数
  344. 'addUp' => array
  345. (
  346. 'type' => 'update',
  347. 'where' => array
  348. (
  349. 'id' => 'yes',
  350. ),
  351. 'set' => array
  352. (
  353. 'num_up' => array('1', '+='),
  354. ),
  355. ),
  356. # 更新点赞数
  357. 'desUp' => array
  358. (
  359. 'type' => 'update',
  360. 'where' => array
  361. (
  362. 'id' => 'yes',
  363. ),
  364. 'set' => array
  365. (
  366. 'num_up' => array('1', '-='),
  367. ),
  368. ),
  369. ),
  370. );