follow.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?php
  2. $type = array
  3. (
  4. 1 => '电话',
  5. 2 => '微信',
  6. 3 => 'QQ',
  7. 4 => '短信',
  8. );
  9. $status = array
  10. (
  11. 1 => '显示',
  12. 2 => '不显示',
  13. // 3 => '不显示算次数'
  14. );
  15. return array
  16. (
  17. # 表名
  18. 'name' => 'follow',
  19. # 显示给用户看的名称
  20. 'lang' => '跟进人',
  21. # 后台菜单排序
  22. 'order' => 2,
  23. 'menu' => false,
  24. 'end' => array
  25. (
  26. 'insert' => 'clue/lib/info.updateFollow',
  27. 'update' => 'clue/lib/info.updateFollow',
  28. ),
  29. // 'auto' => 100000,
  30. 'config_type' => $type,
  31. # 数据结构
  32. 'struct' => array
  33. (
  34. 'id' => array
  35. (
  36. 'type' => 'int-11',
  37. 'name' => 'ID',
  38. 'default' => '',
  39. 'desc' => '',
  40. 'match' => 'is_numeric',
  41. 'search' => 'order',
  42. 'list' => true,
  43. 'order' => 'desc',
  44. ),
  45. 'info_id' => array
  46. (
  47. 'type' => 'int-11',
  48. 'name' => '线索来源',
  49. 'default' => '-1',
  50. 'desc' => '线索来源',
  51. 'match' => 'option',
  52. // 'option' => $info_id,
  53. 'update' => 'hidden',
  54. 'value' => Dever::input('search_option_info_id'),
  55. 'list' => true,
  56. ),
  57. 'follow_admin_id' => array
  58. (
  59. 'type' => 'varchar-30',
  60. 'name' => '跟进人',
  61. 'default' => '',
  62. 'desc' => '跟进人',
  63. 'match' => 'option',
  64. // 'search' => 'linkage',
  65. // 'update' => 'linkage',
  66. // 'option' => Dever::url('lib/appoint.get?level_total=2', 'work'),
  67. ),
  68. 'desc' => array
  69. (
  70. 'type' => 'text-255',
  71. 'name' => '跟进详情',
  72. 'default' => '',
  73. 'desc' => '跟进详情',
  74. 'match' => 'is_string',
  75. 'update' => 'textarea',
  76. 'list' => true,
  77. ),
  78. 'pic' => array
  79. (
  80. 'type' => 'varchar-500',
  81. 'name' => '相关截图',
  82. 'default' => '',
  83. 'desc' => '请选择相关截图',
  84. 'match' => 'option',
  85. 'update' => 'images',
  86. 'key' => '1',
  87. //'place' => '150',
  88. ),
  89. 'xdate' => array
  90. (
  91. 'type' => 'int-11',
  92. 'name' => '计划下次跟进时间',
  93. 'default' => '',
  94. 'match' => 'is_numeric',
  95. // 'search' => 'date',
  96. 'desc' => '',
  97. 'update' => 'date',
  98. 'callback' => 'maketime',
  99. ),
  100. 'type' => array
  101. (
  102. 'type' => 'int-11',
  103. 'name' => '跟进方式',
  104. 'default' => '1',
  105. 'desc' => '跟进方式',
  106. 'match' => 'is_string',
  107. 'option' => $type,
  108. 'update' => 'select',
  109. // 'search' => 'select',
  110. // 'list' => true,
  111. ),
  112. 'status' => array
  113. (
  114. 'type' => 'int-11',
  115. 'name' => '是否显示',
  116. 'default' => '1',
  117. 'desc' => '是否显示',
  118. 'match' => 'is_string',
  119. 'option' => $status,
  120. 'update' => 'hidden',
  121. // 'search' => 'select',
  122. // 'list' => true,
  123. ),
  124. 'state' => array
  125. (
  126. 'type' => 'tinyint-1',
  127. 'name' => '状态',
  128. 'default' => '1',
  129. 'desc' => '请选择状态',
  130. 'match' => 'is_numeric',
  131. ),
  132. 'cdate' => array
  133. (
  134. 'type' => 'int-11',
  135. 'name' => '创建时间',
  136. 'match' => array('is_numeric', time()),
  137. 'desc' => '',
  138. # 只有insert时才生效
  139. 'insert' => true,
  140. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  141. ),
  142. ),
  143. 'manage' => array
  144. (
  145. //'insert' => false,
  146. 'delete' => false,
  147. // 'edit' => false,
  148. ),
  149. 'request' => array
  150. (
  151. 'getAll' => array
  152. (
  153. # 匹配的正则或函数 选填项
  154. 'option' => array
  155. (
  156. 'info_id' => 'yes',
  157. 'status' => 1,
  158. 'state' => 1,
  159. ),
  160. 'type' => 'all',
  161. 'order' => array('id' => 'asc'),
  162. 'col' => '*',
  163. ),
  164. 'getOne' => array
  165. (
  166. # 匹配的正则或函数 选填项
  167. 'option' => array
  168. (
  169. 'info_id' => 'yes',
  170. 'status' => 1,
  171. 'state' => 1,
  172. ),
  173. 'type' => 'one',
  174. 'order' => array('cdate' => 'desc'),
  175. 'col' => '*',
  176. ),
  177. 'getCount' => array
  178. (
  179. # 匹配的正则或函数 选填项
  180. 'option' => array
  181. (
  182. 'info_id' => 'yes',
  183. 'status' => 1,
  184. 'state' => 1,
  185. // 'status' => array('yes','in'),
  186. ),
  187. 'type' => 'count',
  188. // 'order' => array('id' => 'asc'),
  189. 'col' => '*',
  190. ),
  191. ),
  192. );